Viewing 3 posts - 1 through 3 (of 3 total)
A much more elegant way of doing this without tens of lines of code:
declare @col1 varchar(4096), @col2 varchar(4096)
select @col1 = '', @col2=''
select @col1=@col1 + code + ',',@row2=@row2 + convert(varchar,amount) + ','...
July 27, 2004 at 12:13 am
#516221
Depending on the number of tables from your Oracle database, this can be really easy or a real chore.
1. At the end of the DTS GUI, you can save your...
July 26, 2004 at 11:53 pm
#516220
Query Analyzer has by default a max limit on the column size at 255. If you go to Tools -> Options -> Results Tab you'll see a text box for...
June 29, 2004 at 9:22 pm
#512563