|
|
Browse by Tags
All Tags » filegroup » sql server (RSS)
-
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 you must consider the hardware such as RAID, as the software data block ...
-
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 as 'Index', SFG.groupname as 'Filegroup' from sysobjects as SO join ...
-
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'=i.name ,i.groupid,'filegroup'=f.name ...
|
|
|