Question : filter on tables on Column table

how can i filter out tables like 'dtproperties' from INFORMATION_SCHEMA.COLUMNS?

thanks

Answer : filter on tables on Column table

Apparently dtproperties showing as a user table in SQL Server 2000 is a known bug: http://support.microsoft.com/kb/832955

Are there other system tables you are trying to eliminate?

Does this work for you?


1:
2:
3:
4:
SELECT C.* 
FROM INFORMATION_SCHEMA.COLUMNS C 
INNER JOIN sysobjects so 
ON (C.TABLE_NAME = so.NAME and type='U' and C.TABLE_NAME <> 'dtproperties')
Random Solutions  
 
programming4us programming4us