Viewing 6 posts - 16 through 21 (of 21 total)
Thanks for the explanation .
Does below variable data type consider BOL data type in sql 2005 ? Will this column data transfered to the new filegroup when running create unique...
February 14, 2012 at 3:58 am
I just check on my MSSQL table and found out the cluster index is build with multiple column .
UNIQUE CLUSTERED INDEX [fileidx1] ON [dbo].[FileList]
[Account] ASC,
[PathId] ASC,
[FileName] ASC,
[FileNameLength] ASC,
[Tdate] ASC
ON...
February 13, 2012 at 9:34 pm
rows5303873667
reserved 971,053,408 KB
data_size 960,138,384 KB
index_size 10,818,096 KB
February 13, 2012 at 8:18 pm
Does DBCC DBREINDEX (dbo.YourTableName, PK_YourTableName ) similar to CREATE UNIQUE CLUSTERED INDEX PK_YourTableName ON dbo.YourTableName(YourPKFields) WITH (DROP_EXISTING = ON) ON [NewFilegroup]...
February 13, 2012 at 8:18 pm
The table have only one index which is a cluster index.
So, if i reindex these table using DBCC DBREINDEX, Is the size of the index equal the size of...
February 13, 2012 at 2:12 am
the reason to create this policy is to ensure the sql service account is not the local admin group members.
I do some research and found WMi can use to retrieve...
November 28, 2011 at 2:48 am
Viewing 6 posts - 16 through 21 (of 21 total)