Hello,
What I’d like to do is have a flat, de-normalized file of, say, MainTopic and Reviewer1, Reviewer2 … Reviewer(N), when the data exists in two tables — the Main Topic table that is unique, and the Reviewer table that are the “many” to that.
On the SQL Server, I usually gerry-rig it by calling a min(Reviewer), and then call out for a sub-select for the max(Reviewer) etc., w/ comparisons in a where clause to not pick it if the two Reviewers are the same, or outer-join the Reviewer table several times over, and, well, that isn’t ideal.
I’ve tried crosstabs, but .. the Reviewers are many — anyway, I got myself in a pickle. I can use code or a nested report to get myself out of trouble, but … does anyone out there know of a brilliant way to “pretend” de-normalize my two tables?
thx
Pat