tags:

views:

37

answers:

2

Hi, In SQL Server 2005, which system table holds the information as to whether a column is nullable or not, whether a index is unique or not asc or dec.

Thanks, Jude

A: 

hi,

SELECT * FROM INFORMATION_SCHEMA.COLUMNS -- gives column info
SELECT * FROM sys.indexes --gives info for indexes
IordanTanev
+2  A: 
Remus Rusanu