Tagged Questions

7
votes
1answer
145 views

When does MS-SQL maintain table indexes?

For arguments sake, lets say it's for SQL 2005/8. I understand that when you place indexes on a table to tune SELECT statements, these indexes need maintaining during INSERT / UPDATE / DELETE ...
6
votes
4answers
255 views

Why would you want to put an index on a view?

Microsoft SQL Server allows you to add an index to a view, but why would you want to do this? My understanding is that a view is really just a subquery, i.e., if I say SELECT * FROM myView, i'm ...
5
votes
2answers
123 views

Indexes and Nested Sets

I am using a nested set to represent a hierarchy in my application, and am wondering where the best place to put indexes (clustered or otherwise) is. I am using Microsoft SQL Server 2008. ...
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
6answers
233 views

Fastest way to return a primary key value SQL Server 2005

I have a two column table with a primary key (int) and a unique value (nvarchar(255)) When I insert a value to this table, I can use Scope_identity() to return the primary key for the value I just ...
3
votes
2answers
103 views

Why don't indices seem to help this in this join (SQL Server 2008R2)?

I've been trying to make some hands-on learning about indices, since I plan to give some lectures about them next semester. I have read the important chapters in Ramakrishnan & Gehrke, and some ...
3
votes
7answers
301 views

Is adding indexes to a SQL Server ever a bad idea?

We have a mid-size SQL Server based application that has no indexes defined. Not even on the the identity columns. I suggested to our moderately expensive application consultant that perhaps we ...
2
votes
3answers
53 views

How to retrieve existing indexes on tables in SQL Server using code?

We are using NHibernate with SQL Server for our backend. I want to retrieve the list of all indexes on a few of my tables programmatically. Is there a way to do this using NHibernate or even ADO.Net? ...
2
votes
2answers
107 views

Table with Unique Clustered Index and an Indexed View are stored in same way. What is the benefit of Indexed View then?

Table with Unique Clustered Index and an Indexed View are stored in same way. What is the benefit of Indexed View then ?
2
votes
3answers
266 views

SQL Server non-clustered Index never shows up in execution plan

I have a database table called tbl_event with the non-clustered indexes IDX_Event_Folder and IDX_Event_Time defined as: CREATE NONCLUSTERED INDEX [IDX_Event_Folder] ON [dbo].[tbl_event]([nobjectid] ...
2
votes
1answer
392 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 ...
2
votes
1answer
2k views

Poor clustered index seek performance?

I've got these two queries: SELECT SELECT NamesRecord.NameID, NamesRecord.FulfillmentAddressID NameFulfillmentAddressID, ContractRecord.FulfillmentAddressID, ContractRecord.BillingAddressId FROM ...
1
vote
1answer
182 views

SQL Server: 12% index scan density and 50% fragmentation. How bad is “bad”?

How much fragmentation is bad? How low of scan density is too low? How low does scan density is bad? i have a table with the following index density and fragmentation levels: Name ...
1
vote
2answers
74 views

Sql Server Index on Bit fields

I am using Sql Server 2000 and want to know why we can not create index on bit fields?
1
vote
2answers
44 views

Effects of dropping PK on other indexes

I need to update a large number of keys in a large SQL Server 2005 database and will be dropping FKs and PKs on a bunch of tables, doing the update (which replaces the values of the PK/FK) and then ...
1
vote
5answers
98 views

SQL Index on two columns

Here's my simple scenario: I've a Users table and a Locations table. ONE User can be related to MANY Locations so I've a UserLocation table which is as follows: ID (int-Auto Increment) PK UserID ...
1
vote
1answer
214 views

T-SQL queryto get Index fragment information

Ive been developing a query to get index fragment information using DMVs. however, the query gives more results than expected. i believe the problem is in joins. Any thoughts? select distinct ...
1
vote
2answers
266 views

Indexes with included columns or composite indexes

Looking at the missing index DMVs on SQLServer it suggests I add the following index: CREATE INDEX [IXFoo] ON [a].[b].[MyTable] ([BarFlag]) INCLUDE ([BazID]) There's two things that confuse me. ...
1
vote
1answer
92 views

Nonclustered index with include vs nearly same Nonclustered index without; Multiple query coverage

I have two existing indices in a DB as below CREATE NONCLUSTERED INDEX IndexTable1 ON Table (fkAnothertable) CREATE NONCLUSTERED INDEX IndexTable2 ON Table (fkAnothertable) ...
1
vote
3answers
211 views

Setting indexed columns on a custom SQL table

I've read about primary, unique, clustered indexes etc. But I need to understand it via an example. The image below is the auto-generated aspnet_Users table captured from SQL Server Web Admin Panel. ...
1
vote
2answers
604 views

Query cost relative to batch is 100%

I'm not sure sure how to interpret this, but all the queries I run in sql server 2005 have a "query cost (relative to batch)" of 100%. Is there any way to reduce the cost?
1
vote
3answers
389 views

SQL Drop Index on different Database

While trying to optimize SQL scripts, I was recommended to add indexes. What is the easiest way to specify what Database the index should be on? IF EXISTS (SELECT * FROM sysindexes WHERE NAME = ...
0
votes
2answers
53 views

How to create indexs on a different file of Filegroup

i'm using sqlserver 2008 R2 is there any way to specify that a table index is created on a sencondary file from a filegroup? example: "Primay" Filegroup has 2 files: Catalog.mdf and Indexes.ndf ...
0
votes
2answers
72 views

How to drop all of the indexes except primary keys with single query

I am planning to drop all of the indexes except the primary keys. I made the primary keys myself but all other indexes was suggestion of SQL Server. After dropping all indexes which are not primary ...
0
votes
2answers
33 views

SQL Server 2008 Index

What would be the best index(es) to add to the tables in order to make this query as fast as possible. The sd.incidents tables is about 2.5M records, problems about 8K, and changes about 120K. select ...
0
votes
2answers
33 views

adding an index to sql server

I have a query that gets run often. its a dynmaic sql query because the sort by changes. SELECT userID, ROW_NUMBER(OVER created) as rownumber from users where divisionID = @divisionID and ...
0
votes
6answers
2k views

What is the difference between primary, unique and foreign key constraints, and indexes?

What is the difference between primary, unique and foreign key constraints, and indexes? I work on Oracle 10g and SQL Server 2008