Browse by Tags

SQL 2005 TSQL Script to list tables, indexes, file groups along with file names
Published 25 June 7 7:39 AM | SSQA.net
Here is the script I have used to list the information regarding database objects such as tables, indexes and file groups along with their file names : ( extracted from Technet ) select 'table_name'=object_name(i.id) ,i.indid ,'index_name'...