Tagged Questions
9
votes
9answers
4k views
Should I get rid of clustered indexes on Guid columns
I am working on a database that usually uses GUIDs as primary keys.
By default SQL Server places a clustered index on primary key columns. I understand that this is a silly idea for GUID columns, and ...
2
votes
5answers
230 views
Where clause on non-clustered index Vs extra join and where clause on clustered index
I am trying to eak out a bit extra performance from some sql queries which have a where clause on a field which is a non-unique non-clustered index, it is also a foreign key in table A. That foreign ...
2
votes
2answers
146 views
How to drop clustered property but retain primary key in a table. SQL Server 2005
i have the following key:
ALTER TABLE dbo.Table ADD CONSTRAINT PK_ID PRIMARY KEY CLUSTERED
(
ID ASC
)
so i have clustered index and primary key on ID column.
Now i need to drop clustered index (i ...
0
votes
1answer
62 views
Generic error when trying to save data
we have just experienced a weird error on our applications connecting to a clustered Sql Server 2000: both our .NET applications (ADO.NET) and C++ (ADO) application get an error which we cannot ...