Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
279 views

Why use INCLUDE in a SQL index

I recently encountered an index in a database I maintain that was of the form: CREATE INDEX [IX_Foo] ON [Foo] ( Id ASC ) INCLUDE ( SubId ) In this particular case, the performance problem that I ...
4
votes
1answer
344 views

What is the difference between composite non clustered index and covering index

SQL Server 2005 includes "covering index" feature which allows us to select more than one non key column to be included to the existing non clustered index. For example, I have the following columns: ...
3
votes
1answer
218 views

Query doesn't use a covering-index when applicable

I've downloaded the employees database and executed some queries for benchmarking purposes. Then I noticed that one query didn't use a covering index, although there was a corresponding index that I ...
3
votes
1answer
321 views

Can I create a “Covering, Spatial” index in SQL Server 2008?

I currently have a site with a table that has Lat/Long float columns, and an index over those 2 columns plus another one I need to retrieve. I'm constantly querying this table to get the rows that ...
2
votes
3answers
50 views

Mysql covering vs composite vs column index

In the following query SELECT col1,col2 FROM table1 WHERE col3='value1' AND col4='value2' If I have 2 separate indexes one on col3 and the other on col4, Which one of them will be used in ...
2
votes
1answer
86 views

MongoDB covering index not working

I have a countries document which looks like that: { "_id" : ObjectId("4e493af4140700590800154f"), "geoname_id" : "49518", "code" : "rw", "names" : { "en" : "Rwanda", "nl" : "Rwanda", ...
2
votes
2answers
156 views

Why does the following query copy table data?

SELECT COUNT(*) AS cnt FROM products WHERE ExternalProductId IS NOT NULL GROUP BY SourceId, ExternalProductId HAVING cnt > 1 There is an index on (ExternalProductId, SourceId, AnotherField). An ...
2
votes
1answer
107 views

Overlapping of cover and single indexes in SQL Server

I have a question concerning best-practices for indexing in SQL Server (or any RDBMS for that matter). Take the following table: ProfileID int Text nvarchar(50) ProfileID is joined to a ...
1
vote
4answers
45 views

Simple MySQL indexing issue

I ve got this table: CREATE TABLE IF NOT EXISTS `test1_nopart` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `idAccount` int(10) unsigned NOT NULL, `data` mediumint(8) unsigned NOT NULL, ...
1
vote
2answers
85 views

SQL Server 2008 Index Optimization - clustered lookup vs nonclustered include

This is a long, involved question about index optimization theory. This is not homework, though I was first exposed to this question in a sample exam for Microsoft's 70-432. The original question ...
1
vote
2answers
178 views

Proper field orders for covering index - MySQL

Is there a standard order to create a covering index for a table in MySQL? Meaning if I have query that has a where clause, order by and the fields in the select statement, in what order would I have ...
1
vote
2answers
160 views

Does compound index have direction in MySQL?

When will the below be necessary: create index i_t_a_b on t(a,b); create index i_t_b_a on t(b,a);
1
vote
2answers
119 views

Does Covering Index Duplicate Data?

Suppose we have this index CREATE INDEX IX_test ON t1(c1) INCLUDE (c2) Does this mean that we will have c2 in both index page and the actual data page? The real question is - does updating c2 mean ...
1
vote
2answers
85 views

What are the methods for identifying unnecessary columns within a covering index?

What methods are there for indentifying superfluous columns in covering indices: columns which are never searched against, and therefore may be extracted into Include's, or even removed completely ...
1
vote
5answers
101 views

Do covering indices safely replace smaller covering indices?

For example: Given columns A,B,C,D, IX_A is an index on 'A' IX_AB is a covering index on 'AB' IX_A can be safely removed, for it is redundant: IX_AB will be used in its place. I want to know if ...
0
votes
1answer
170 views

efficient “find nearest number or date” in SQL where date/number column is covered by an index

Using SQL2008, I'm trying to figure out an efficient query to find a row whose date is nearest to a specific target date. There are obvious inefficient solutions (e.g. table scan using ABS and ...
0
votes
2answers
1k views

CREATE INDEX in SQL Server 2008 not result in “visible index”

I am using SQL Server 2008 Express. In the DB in question, there is only one schema: dbo. If I run the following script: CREATE UNIQUE INDEX IX_ClientSocialTypes_Cover ON ClientSocialTypes(ClientID, ...
0
votes
1answer
44 views

Database: Help me with correct index(es) for a table and query

I am running some queries in my database and want to increase the performance and have created some indexes but I still think that the response time is to great so I want to see if I can create a ...
0
votes
1answer
37 views

A question about indexes regarding to the gain of inserts & updates in database

I’m having a question about the fine line between the gain of an index to a table there is growing steadily in size every month and the gain of queries with an index. The situation is, that I’ve two ...
0
votes
1answer
584 views

Covering Index versus Clustered Index (Database Index)

I'm working on a database system and it's indexes, but I'm having a really hard time seing the clear difference between a covering index and a clustered index. I've googled my way around but hasn't ...
0
votes
2answers
100 views

Covering indexes when extra columns uniquely determined by clustered index

Suppose I need to update myTab from luTab as follows update myTab set LookupVale = (select LookupValue from luTab B where B.idLookup = myTab.idLookup) luTab ...