Viewing 5 posts - 331 through 335 (of 335 total)
use the self join as shown to create a view of the imported table which has each row as a separate column.
This self join view will look like this (3...
March 11, 2004 at 12:12 pm
1) select columnlist into #temp from sampletable where 1=2
(temp tables are kept unique to the connection by the server)
2) Look up SET ROWCOUNT and/or usage of TOP w/ORDER BY in...
March 10, 2004 at 7:36 pm
Do it another way using case statements.
Join your tables to select statements which retrieve the other info you want to use for comparison/manipulation. Then build case statement to translate the...
March 10, 2004 at 7:33 pm
You could always do it the old fashioned way: kluge
Like, BCP the thing as each row being separate row into a work table with an identity column to sequentially number...
March 10, 2004 at 7:17 pm
Not much help but, off the top of my head...
You probably don't need to get rid of the column, just null the values. The image datatype is a pointer to...
March 10, 2004 at 6:41 pm
Viewing 5 posts - 331 through 335 (of 335 total)