Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
130 views

SQL Server 2008 - Too much denormalization and over Indexing: What use is there for the Matrix?

I have a budding developer who is very enthusiastic about something he is calling “the matrix” I am looking for peer insight In a nutshell this is what we have: - 1 highly denormalized table ...
3
votes
4answers
118 views

Why does SQL Server use a non-clustered index over the clustered PK in a “select *” operation?

I've got a very simple table which stores Titles for people ("Mr", "Mrs", etc). Here's a brief version of what I'm doing (using a temporary table in this example, but the results are the same): ...
2
votes
3answers
95 views

Table index design

I would like to add index(s) to my table. I am looking for general ideas how to add more indexes to a table. Other than the PK clustered. I would like to know what to look for when I am doing this. ...
2
votes
2answers
454 views

converting clustered index into non-clustered index?

Is it possible to convert a clustered index to non clustered index or non clustered index to clustered index in sql server 2005. Please convert this query into clustered index: create index index1 ...
1
vote
1answer
90 views

Filtered non-clustered Index abnormal behaivior

I have a table that created some filtered non-clustered on some columns such: CREATE UNIQUE NONCLUSTERED INDEX [IX_Sh_Esh] ON [dbo].[My_Tbl] ( [City_Code] ASC, [Sh_Esh] ASC ) WHERE ([Sh_Bod]=(0) ...
1
vote
2answers
127 views

Primary key is bigint and identity, any reasons for prefering non clustered index over clustered index

I've a table which is defined like this CREATE TABLE [dbo].[MyTable]( [MyTableId] [bigint] IDENTITY(1,1) NOT NULL, [SomeTable2Id] [bigint] NOT NULL, [SomeTable3Id] [bigint] NOT NULL, ...
0
votes
0answers
21 views

SQL Server 2000: Change Index from Clustered to NonClustered Index

in our database we have about 500 Clustered indices. Now I need to change them to NonClustered Indices. - I don't want to remove and create each index manually, so I need a way to change all of them. ...
0
votes
0answers
35 views

Clustered index always better than Non-Clustered index? [migrated]

When I have a clustered index on 'A', is it better to use this clustered index even if I have selection of 'A=constant'? If not, why? Thank you!
0
votes
1answer
49 views

Adding a non clustered index to a table with less than 1000 rows but accessed frequently will increase performance?

I have a table with just 400-500 rows but this table is being accessed very often so I was wondering if should add a non clustered index on one of its columns to see any improvement? This table keeps ...
0
votes
3answers
789 views

How to drop a unique constraint from table column?

I have a table 'users' with 'login' column defined as: [login] VARCHAR(50) UNIQUE NOT NULL Now I want to remove this unique constraint/index using SQL script. I found its name UQ_users_7D78A4E7 in ...
0
votes
1answer
59 views

Lost NCIndex (NDF) file to one of my DBs. Can anything be done with just the MDF? Any reads possible at all?

Lost NCIndex (NDF) file to one of my DBs. Can anything be done with just the MDF? Any reads possible at all? I assume not, but figured I'd ask anyways.
0
votes
8answers
152 views

Why can't I simply add an index that includes all columns?

I have a table in SQL Server database which I want to be able to search and retrieve data from as fast as possible. I don't care about how long time it takes to insert into the table, I am only ...
0
votes
2answers
263 views

Non Clustered Index not working sql server

I have a table that doesn't have any primary key. data is already there. I have made a non clustered index. but when i run query, actual execution plan is not showing index scanning. I think non ...
0
votes
2answers
52 views

Selecting a Function Value Shows nvarchar(4000) on an Index

I have a view that I'm trying to setup an Index for. One of the select columns for the view executes a user-defined function that has a return value of varchar(250). However, when I try to setup an ...