Browse by Tags

SQL Server data and log files initialization, think multiple files, backup & restore performance!
Published 25 July 8 6:1 AM | SSQA.net
Whenever you perform a database creation, add a data or log file to database, AUTOGROW process is intiated or restore of database will trigger the file initialization if that is created afresh. In addition to this when you talk about files intialization...
SQL Server- TSQL to see which object reside under which file groups?
Published 24 December 7 4:40 AM | SSQA.net
To continue the FIND-FilegroupFull post on the filegroups, here is the most common question on the forums to get which object reside under which filegroup if there are multiple ones associated: select si.rows as 'Rows', SO.Name as Table, SI.name...
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'...