The nonclustered tag has no wiki summary.
4
votes
4answers
5k views
Difference between clustered and nonclustered index
Ok, I'm in the middle of developing a project on my own (first time for me for this scale) and it started in a rush so my tables are kind of miserable. I need to add proper index' and need some help.
...
3
votes
6answers
570 views
Reason for the count of non clustered index in Sql Server
Why we have 249 non clustered index in sql server 2005? why not 240 or 300?
and the same question for sql server 2008, why 999 ? Why not 800 or 1000?
3
votes
5answers
203 views
Improve SQL Server 2005 Query Performance
I have a course search engine and when I try to do a search, it takes too long to show search results. You can try to do a search here
http://76.12.87.164/cpd/testperformance.cfm
At that page you ...
2
votes
2answers
376 views
Filtered index vs normal non clustered index
I have 270 million records in a table. Currently I have a non clustered index in it on a date column. 99% of time I use rows with date > 1/1/2008..that means 140 million out of it.
I am using SQL ...
2
votes
5answers
243 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 ...
1
vote
4answers
167 views
tsql query and index question
I have a table that stores photo information with id as Primary key:
id(PK), title, album_id, posted_by,
published, filename, tags, ratings,
date_posted
This table will hold infor of 100+ ...
1
vote
2answers
152 views
How to set index on the column which have datatype varchar(4096) in SQL Server 2005?
This is the query for creating index
create index idx_ncl_2 on BFPRODATTRASSOCIATION (value,attributeid) include (productid)
Table structure of BFPRODATTRASSOCIATION
ProdAttrAssociationId bigint no ...
1
vote
3answers
155 views
Which non-clustered index should I use?
Here I am studying nonclustered indexes on SQL Server Management Studio.
I've created a table with more than 1 million records. This table has a primary key.
CREATE TABLE [dbo].[Customers](
...
0
votes
0answers
18 views
Simulate Clustered and Non clustered Tables in a Database
When a relation in a database is clustered, then the No of Disk Accesses required to fetch the table from Disk to Main memory is proportional to the number of blocks B that the table resides in.
On ...
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
2answers
209 views
Is the creating nonclustered PK syntax inconsistent?
SQL Server 2008 R2
Why
create table A
(
id int,
primary key nonclustered (id)
)
is correct and executed without errors?
But
create table A
(
id int,
primary key nonclustered id
...