vote up 0 vote down star

I'm using reporting services to make a report graph. However my data looks like this:

Table1
    C01    C02   C03   C04
    1      2     3     4

I need to do a sql query to return data that looks like this:
    Any_Col_name
    1
    2
    3
    4

I'm using MS Reporting Services with a Oracle DB. I cannot restructure the table.

flag

57% accept rate
Can't change the table? Then suffer the consequences of your short-sightedness. If it'd been done right the first time, you wouldn't have to suffer with hideous SQL acrobatics to get the result you need. MS Access has resulted in a swarm of wanna-be DBAs who don't know jack about relational algebra. – paxdiablo Feb 19 at 23:08
Any table that has C01..C04 is almost certainly not normalized. – paxdiablo Feb 19 at 23:09
Pax, you're an idiot. He never said he designed the table, just that he's querying it? Go flame somewhere else. – Mark Brady Feb 19 at 23:11
And how do you know those are the actual column names? More than likely he's just using C## for an example. What crawled up your ass and died? – Mark Brady Feb 19 at 23:14
@Mark, in a word, no! I have as much right here as you. I just tire of seeing questions about tables that, if they'd been done right, wouldn't have to be asked. If you can't see the problem with that table, then you're NOT a database designer as you state. – paxdiablo Feb 19 at 23:15
show 15 more comments

4 Answers

vote up 3 vote down check
select c01 from table
union all
select c02 from table
union all
select c03 from table
union all
select c04 from table
link|flag
Why was this voted down? – Sam Saffron Feb 19 at 23:21
Why is Mark being downvoted? A union is the correct way to handle this with generic ANSI SQL. – cdonner Feb 19 at 23:23
I think Pax did it out of rage ... – Sam Saffron Feb 19 at 23:24
This was probably voted down due to the comment flame war. – chilltemp Feb 19 at 23:24
And flagged as offensive... what a dick – Mark Brady Feb 19 at 23:26
show 4 more comments
vote up 0 vote down

Have a look here.

http://support.microsoft.com/kb/175574

It describes how to "rotate" a table in SQL Server. I know you said Oracle buy you might glean something from it.

link|flag
That's the wrong direction. it's already flat and he wants it vertical. – Mark Brady Feb 19 at 23:07
@MB righto :) Ta. – teknohippy Feb 19 at 23:09
I found another answer of yours to mod +1... no hard feelings. – Mark Brady Feb 19 at 23:29
vote up 2 vote down

If you are using Oracle 11G and above, you can also use unpivot for this, it should be more efficient than the union all (haven't tested this cause I do not have oracle around)

SELECT Any_Col_name  FROM table   
    UNPIVOT INCLUDE NULLS (Any_Col_name FOR Col IN (C01,C02,C03,C04))
link|flag
He didn't say the Oracle was 11g. Unpivot isn't available until then, unless MSRS will just restructure the query sent to Oracle to gather every row and then apply the SQL Server syntax to that result set. Not sure how that will work. – Mark Brady Feb 19 at 23:47
@Mark, I edited the answer to reflect. MSRS will not do anything funky to the queries. – Sam Saffron Feb 19 at 23:49
Kewl... Always a good idea to give the latest and greatest as an option... tease people with what they could have if only. – Mark Brady Feb 20 at 0:20
This is the best answer as long as UNPIVOT is supported. – achinda99 Feb 20 at 0:34
vote up 0 vote down

We have solved this problem many times. Your best plan of action is to write appropriate PL/SQL functions that will iterate through all of the columns, outputting them as rows. I say to do it this way, because this will probably not be the last time you use this functionality.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.