Viewing 9 posts - 1 through 9 (of 9 total)
Cool - I'll try UNPIVOT - do you have a very simple example of this?
select * FROM table
UNPIVOT xxxx...
I tried getting PIVOT to work and never could get the syntax...
January 16, 2008 at 8:05 am
I'll try dynamically generating the SQL in a proc with the select commands that were proposed - Thanks!
January 16, 2008 at 7:58 am
Yup..data looks like this
- standard table format
col1 |col2 |col3
Row1 val1 |val2 |val3
Row2 val1 |val2 |val3
Row3 val1 |val2...
January 16, 2008 at 7:57 am
Guess this was tougher than I thought - no posts....
January 16, 2008 at 7:07 am
FYI - you can also execute any saved DTS or SSIS packages from the command line using DTSRUN.EXE
January 16, 2008 at 7:05 am
I forgot to add...if you use DTS/SSIS then you can save the job and just have it run on demand or at regular times...
Try going through the DTs import wizard...
January 15, 2008 at 12:23 pm
FYI - your approach works in both DTS and SSIS and it is far easier to setup using these utilities than using a query however, you can use a query...
January 15, 2008 at 12:21 pm
Does anyone know how to bring back the data in relational table format? (new report requirment)
Currently (with the above solution) I get:
name1 value1
...
namen valuen
How...
January 3, 2008 at 8:44 am
Excellent - you rock!!! That was exactly what I needed. I can now spend the next several days trying to figure out how it works....:)
January 2, 2008 at 1:09 pm
Viewing 9 posts - 1 through 9 (of 9 total)