Tagged Questions
The clustered-index tag has no wiki summary.
35
votes
8answers
11k views
What are the differences between a clustered and a non-clustered index?
What are the differences between a clustered and a non-clustered index?
12
votes
5answers
2k views
How can I tell if a database table is being accessed anymore? Want something like a “SELECT trigger”
I have a very large database with hundreds of tables, and after many, many product upgrades, I'm sure half of them aren't being used anymore. How can I tell if a table is is actively being selected ...
8
votes
3answers
388 views
Does the SQL Server clustered index replace the RID lookup “index”
When a table has a clustered index in SQL Server does that mean that all indexed queries will go via the clustered index?
For example if I have a table with a single non-clustered index (indexing one ...
6
votes
3answers
68 views
Should Join Tables typically be created as Index Organized Tables (Clustered Indexes)?
Generally speaking ... should join tables (i.e. associative tables) be created as Index Organized Tables (Oracle) , Clustered Indexes (SQL Server) .... or plain old heap tables (with separate indexes ...
6
votes
3answers
221 views
B-trees, databases, sequential vs. random inserts, and speed. Random is winning
EDIT
@Remus corrected my test pattern. You can see the corrected version on his answer below.
I took the suggestion of replacing the INT with DECIMAL(29,0) and the results were:
Decimal: 2133
...
6
votes
5answers
302 views
Reasons not to have a clustered index in SQL Server 2005
I've inherited some database creation scripts for a SQL SERVER 2005 database.
One thing I've noticed is that all primary keys are created as NON CLUSTERED indexes as opposed to clustured.
I know ...
6
votes
6answers
1k views
Clustered indexes on non-identity columns to speed up bulk inserts?
My two questions are:
Can I use clustered indexes to speed
up bulk inserts in big tables?
Can I then still efficiently use
foreign key relationships if my
IDENTITY column is not the clustered
index ...
6
votes
4answers
159 views
Sql Server Legacy Database To Clustered index or not
We have a legacy database which is a sql server db (2005, and 2008).
All of the primary keys in the tables are UniqueIdentifiers.
The tables currently have no clustered index created on them and ...
6
votes
3answers
181 views
Clustered index - multi-part vs single-part index and effects of inserts/deletes
This question is about what happens with the reorganizing of data in a clustered index when an insert is done. I assume that it should be more expensive to do inserts on a table which has a clustered ...
6
votes
3answers
806 views
How to choose the clustered index in SQL Server?
Usually the clustered index is created in SQL Server Management Studio by setting the primary key, however my recent question about PK <-> clustered index ...
6
votes
5answers
1k views
What does this sentence mean: Clustered indexes are stored physically on the table?
How are clustered indexes stored on a hard disk? What is the logical order?
How do non-clustered indexes work?
5
votes
1answer
241 views
Solr approaches to re-indexing large document corpus
We are looking for some recommendations around systematically re-indexing in Solr an ever growing corpus of documents (tens of millions now, hundreds of millions in than a year) without taking the ...
5
votes
3answers
907 views
About clustered index in postgres
I'm using psql to access a postgres database. When viewing the metadata of a table, is there any way to see whether an index of a table is a clustered index?
I heard that the PRIMARY KEY of a table ...
5
votes
4answers
668 views
Do clustered indexes have to be unique?
What happens if a clustered index is not unique? Can it lead to bad performance because inserted rows flow to an "overflow" page of some sorts?
Is it "made" unique and if so how? What is the best way ...
5
votes
3answers
215 views
How does the `primary key` keyword relate to clustered indexes in SQL Server?
How does the PRIMARY KEY keyword relate to clustered indexes in SQL Server?
(Some people seem to want to answer this question instead of a different question I asked, so I am giving them a better ...
5
votes
2answers
3k views
SQL Server: Clustered index on datetime, ASC or DESC
If I have an SQL Server table with a clustered index on a datetime field, that is set to DateTime.Now (from C#) before inserts, should the index be ascending or descending to avoid reorganization of ...
4
votes
4answers
251 views
Removing a Primary Key (Clustered Index) to increase Insert performance
We've been experiencing SQL timeouts and have identified that bottleneck to be an audit table - all tables in our system contain insert, update and delete triggers which cause a new audit record.
...
4
votes
4answers
4k 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.
...
4
votes
5answers
355 views
Should primary keys be always assigned as clustered index
I have a SQLServer table that stores employee details, the column ID is of GUID type while the column EmployeeNumber of INT type. Most of the time I will be dealing with EmployeeNumber while doing ...
4
votes
4answers
1k views
Does SQL Server 2008 Non-Clustered Index Contain the Clustered Index Fields?
OK, I need this spelled out one more time. I've read the articles on-line, and I still haven't found a definitive answer.
In SQL Server 2008, I have a "core" table with about 50k records and lots of ...
4
votes
1answer
105 views
Why isn't index likely to do much if it's DATETIME or DATETIME2 because they include the time portion?
Comments to question "How to decrease response time of a simple select querry?" tell:
"What is the data type on LaunchDate? An index isn't likely to do much if it's DATETIME or DATETIME2 because ...
4
votes
3answers
497 views
Add Primary Key to a table with existing clustered index
I have to work with a database to do reporting
The DB is quite big : 416 055 104 rows
Each row is very light though, just booleans and int ids.
Each row is identify by 3 columns, but at my surprise, ...
4
votes
5answers
2k views
Does clustered index on foreign key column increase join performance vs non-clustered?
In many places it's recommended that clustered indexes are better utilized when used to select range of rows using BETWEEN statement. When I select joining by foreign key field in such a way that this ...
4
votes
4answers
655 views
Primary Key / Clustered key for Junction Tables
Let's say we have a Product table, and Order table and a (junction table) ProductOrder.
ProductOrder will have an ProductID and an OrderID.
In most of our systems these tables also have an autonumber ...
4
votes
1answer
241 views
How to convert clustered primary key to non-clustered without dropping referring foreign keys in SQL Server 2005
I've made mistake creating clustered primary key on GUID column.
There are many tables that reference that table with defined foreign keys.
Table size is not significant.
I would like to convert it ...
4
votes
3answers
1k views
What should I do to get an Clustered Index Seek instead of Clustered Index Scan?
I've got a Stored Procedure in SQL Server 2005 and when I run it and I look at its Execution Plan I notice it's doing a Clustered Index Scan, and this is costing it the 84%. I've read that I've got to ...
4
votes
3answers
463 views
SQL Server 2005 Clustered Index Query Speed
Our sites are getting pounded pretty hard so we're taking a look into optimizing some of our existing queries.
While looking into this we ran across several queries whose execution plan was about 4-5 ...
3
votes
1answer
39 views
Index is not getting applied on Indexed View
I have an indexed view but when I run queries on that view the index which is built on View is not applied and the query runs without index. Below is my dummy script:
Tables + View+ Index on View
...
3
votes
1answer
62 views
When is a clustered index absolutely necessary?
AFAIK SQL table indices are to improve queries speed, so are not absolutely necessary. However SQL Azure for whatever reason demands that each table has a clustered index, so I guess there're cases ...
3
votes
4answers
104 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):
...
3
votes
2answers
231 views
INSERTs with sequential GUID key on clustered index not significantly faster
In SQL Server 2008 I have tried to reproduce the results from the experiments on clustered index on sequential vs. non-sequential GUID keys seen here
...
3
votes
1answer
190 views
Best practice for indexing foreign keys on a large table
I have a large table (SQL Server 2008) with almost 3 million rows. It currently has a clustered index on it's primary key, and a non-clustered index on its foreign key.
Almost all the queries on the ...
3
votes
3answers
197 views
MySQL compound index not being used
I have a large table from which I must select large amounts of rows.
The table stores call detail records (CDR's). Example:
...
3
votes
1answer
82 views
Does non-unique clustering key increase likelyhood of page level locks?
I have a table with many columns of which the total max size greatly exceeds the 8k boundary. This table contains a ModuleID column which basically tells u what type of object it is (dont worry - I ...
3
votes
7answers
196 views
Should searchable date fields in a database table always be indexed?
If I have a field in a table of some date type and I know that I will always be searching it using comparisons like between, > or < and never = could there be a good reason not to add an index ...
3
votes
1answer
281 views
SQL Index Question: Why does SQL Server prefer this NONCLUSTERED index to a CLUSTERED one?
I have the following query:
SELECT
COUNT(*)
FROM
FirstTable ft
INNER JOIN SecondTable st ON ft.STID = st.STID
As you can guess, "STID" is the primary key on "SecondTable"... and ...
3
votes
3answers
2k views
Clustered vs NonClustered Primary Key
begin transaction;
create table person_id(person_id integer primary key);
insert into person_id values(1);
... snip ...
insert into person_id values(50000);
commit;
This code takes about 0.9 seconds ...
3
votes
3answers
1k views
Changing newid() to newsequentialid() on an existing table
At the moment we have a number of tables that are using newid() on the primary key. This is causing large amounts of fragmentation. So I would like to change the column to use newsequentialid() ...
3
votes
6answers
4k views
Improving performance of cluster index GUID primary key
I've a table with large number of rows (10K+) and it primary key is GUID. The primary key is clustered. The query performance is quite low on this table. Please provide suggestions to make it ...
3
votes
7answers
1k views
How important is indexing and clustered indexing to database performance?
There have been several questions recently about database indexing and clustered indexing and it has been kind of new to me until the last couple weeks. I was wondering how important it is and what ...
2
votes
1answer
41 views
Why Oracle is giving error : “no more tables permitted in this cluster”?
I am getting error "no more tables permitted in this cluster" when trying to create a clustered table.
Oracle's documentation about the cluster feature says:
A cluster can contain a maximum of 32 ...
2
votes
3answers
59 views
Create clustered index and/or partitioning on non-unique column?
I have a table containing log entries for a single week for about a thousand web servers. Each server writes about 60,000 entries per day to the table, so there are 420,000 entries per week for each ...
2
votes
1answer
143 views
NewSequentialId on UniqueIdentifier Clustered Index
I am working on database standards for a new database my company is starting. One of the things we are trying to define is Primary Key and Clustered Index rules in relation to UniqueIdentifiers.
...
2
votes
1answer
114 views
Clustered and nonclustered indexes performance
I have a huge table (~ 10 million rows) with clustered PK on a random uniqueidentifier column. The most operations I do with this table is inserting a new row if there is not yet a row with the same ...
2
votes
3answers
208 views
DELETE performance in SQL Server on clustered index, large table
I have a table with more than 20 million rows, and when i do:
DELETE [Table] WHERE ID = ?
It takes over 40 seconds. The ID column is clustered.
Is this what you could expect? or is it possible to ...
2
votes
1answer
172 views
Clustered index on two columns
I've a many-to-many table, let's say:
PersonJob(personId,jobId)
with clustered index (personId,jobId).
The question is:
If somewhere in SQL I'll make a query like:
SELECT *
FROM PersonJob JOIN ...
2
votes
3answers
94 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
167 views
What are the consequences of converting heap-indexes to clustered indexes on SQL Server?
I've recently got the advice, that I should convert all our tables from using heap indexes such that each table has a clustered index. What are the consequences of persuing this strategy? E.g. is it ...
2
votes
1answer
177 views
SQL Server - Clustered index design for dictionary
Would like some advice from this. I got a table where I want to keep track of an object and a list of keys related to the object. Example:
OBJECTID ITEMTYPE ITEMKEY
-------- -------- -------
...
2
votes
1answer
397 views
Sql Server Indexes Include Primary Key?
One of my co workers is under the impression that when adding an index to a table in SQL Server 2008 that the PK's index is added to that index as well. Therefore if you are using a wider primary key ...