Viewing 8 posts - 1 through 8 (of 8 total)
I think, Full Text Indexes are created on default file group, if you don't specify any filegroup.
CREATE FULLTEXT INDEX ON Table(Column) KEY INDEX PK_Name on [Cat_Name]; -- creates...
February 9, 2011 at 7:13 pm
Thanks for all your help. It works now.
I did the example at home on my home PC (didn't work at home). Tested the same copy at my office PC and...
December 10, 2008 at 2:57 pm
Thanks for the URL... good one.
My example still doesn't work.
I declared user variable as GetName String
and contactName in the table is varchar and selecting only top 1 values which is...
December 9, 2008 at 10:05 pm
Thanks... but doesn't work
I get the error--> The type of the value being assigned to variable "User::GetName" differs from the current variable type
I have declared user::GetName as string (under...
December 8, 2008 at 4:01 pm
That might be a hobt_id. You find it through sys.partitions:
SELECT o.name, i.name
FROM sys.partitions p
JOIN sys.objects o ON p.object_id = o.object_id
JOIN sys.indexes i ON p.object_id = i.object_id...
December 1, 2008 at 4:55 pm
Adam Haines (2/27/2008)
hi i have a question, i just got told by the senior DBA that to consider that query i have to put at least the page count >...
August 28, 2008 at 5:10 pm
Ola Hallengren (8/28/2008)
You can check the page_count column in the DMV sys.dm_db_index_physical_stats.If you use my index optimization stored procedure it is logged in the output file.
http://blog.ola.hallengren.com/blog/_archives/2008/1/1/3440068.html
Ola Hallengren
August 28, 2008 at 5:02 pm
How can I tell what is Table page Count
August 28, 2008 at 12:28 am
Viewing 8 posts - 1 through 8 (of 8 total)