Viewing 6 posts - 1 through 6 (of 6 total)
The "Or try this" code worked great.
Thanks ALL for the input, much obliged.
February 10, 2006 at 10:49 am
here is where my heads at....
select * from syscolumns where id = (select id from sysobjects where name = <tablename>
This will provide a list of...
February 9, 2006 at 4:25 pm
the WHERE .. IS NOT NULL option is my problem.
I don't want to type WHERE col1 IS NOT NULL and col2 IS NOT NULL and col3 IS NOT NULL.......and col100...
February 9, 2006 at 3:55 pm
i want to remove records where all fields are NULL
February 9, 2006 at 3:54 pm
I am intending on posting the contents of staging table 1 into final table 1 w/out the NULL rows.
February 9, 2006 at 3:48 pm
The WHERE clause would have to inspect col1 is null, col2 is null, col3 is null etc...
I could have 100 columns. This is why i'm trying to you colid 1-whatever...
February 9, 2006 at 3:22 pm
Viewing 6 posts - 1 through 6 (of 6 total)