SQL Server Central is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 

Content with tag Indexing Rss

Refine your search with one of the following additional tags (with number of items):

SQL Server 7, 2000 (30)     Programming (4)     SQL Server 2008 (2)     Lock and Connection Management (1)    
Miscellaneous (10)     SQL Server 2005 (4)     Stored Procedures (2)     OpenXML (1)    
Performance Tuning (9)     Advanced (3)     Strategies (2)     Replication (1)    
Administering (6)     Basic Querying (2)     Triggers (2)     statistics (1)    
Performance Tuning and Scaling (6)     Basics (2)     User-Defined functions (2)     UpdateGrams (1)    
T-SQL (6)     DTS (2)     Administration (1)     Visual Basic 6 (1)    
Backup and Recovery (5)     Installation (2)     Distributed Queries (1)     XML (1)    
Configuring (5)     Monitoring (2)     English Query (1)     XSL (1)    
Database Design (4)     Security (2)     Index Management (1)    
   Items 1 to 20 of 43    Next 20 >>
 

SQL 2005 IndexDefrag solution

Manual SP to Index Defrag a SQL 2000 database on SQL 2005 that run at spesific times at night  Read more...
By Kobus 2008/06/25 | Source: SQLServerCentral.com | Category: Indexing
Rating: (not yet rated) |  Discuss |  Briefcase | 28 reads

Worst Practices - Not Using Primary Keys and Clustered Indexes

Two weeks ago Andy started his wildly successful series on Worst Practices. This week he continues that series discussing why failing to use primary keys and clustered indexes are worst practices. Agree or disagree, read the article and join the discussion. One thing you'll have to admit, reading an article by Andy is a lot more interesting than reading Books Online!   Read more...
By Andy Warren 2008/05/09 (first posted: 2003/11/10) | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 59,923 reads

Using Indexes to Bypass Locks

One of the issues you'll face with SQL Server is blocking which is caused by other processes that are holding locks on objects. Until the locks are removed on an object the next process will wait before proceeding. This is a common process that runs within SQL Server to ensure data integrity, but depending on how transactions are run this can cause some issues. Are there ways to get around blocking by using different indexes to cover the queries that may be running?  Read more...
Rating:  Rate this |  Briefcase | 1,955 reads

SQL Server Index Checklist

Indexing a SQL Server database in some respects is considered both an art and a science. Since this is the case, what are some considerations when designing indexes for a new database or an existing one in production? Are these the same types of steps or not? Do any best practices really exist when it comes to indexing? Where does indexing fall in the priority list from an application or production support perspective?  Read more...
By Additional Articles 2008/04/03 | Source: MSSQLTips.com | Category: Indexing
Rating:  Rate this |  Briefcase | 3,277 reads

Statistics and Indexes

When is it okay to let SQL Server to make a statistic for columns in your queries, and when should you take those statistics and make an index out of them? What I do is to test all of my procs, and if they generate system statistics (_WA_SYS%), then I add an index to the table for the column in the statistic. But is this a good practice?  Read more...
By Additional Articles 2008/03/11 | Source: SQL Community | Category: Indexing
Rating:  Rate this |  Briefcase | 2,305 reads

Statistics

By Site Owners 2008/03/07 | Category: SQL Server 2005
Rating: (not yet rated) |  Discuss |  Briefcase | 2,480 reads

SQL Server non-clustered indexes for query optimization

Optimize SQL Server non-clustered indexes and queries by considering index fields, compound indexes and SQL Server statistics' impact on non-clustered indexes.  Read more...
By Additional Articles 2008/03/05 | Source: SearchSQLServer | Category: Indexing
Rating: (not yet rated)  Rate this |  Briefcase | 2,472 reads

Index Seeks

By Site Owners 2008/02/21 | Category: SQL Server 2008
Rating: (not yet rated) |  Discuss |  Briefcase | 2,314 reads

IndexProperty

By Site Owners 2008/02/19 | Category: Indexing
Rating: (not yet rated) |  Discuss |  Briefcase | 2,239 reads

Featured Blog: SQL Server 2008: Partition-level lock escalation details and examples

Paul Randal of SQLskills takes a look at lock escalation in SQL Server 2008  Read more...
By Additional Articles 2008/01/30 | Source: SQLskills | Category: SQL Server 2008
Rating: (not yet rated)  Rate this |  Briefcase | 879 reads

Using Included Columns in SQL Server 2005

One of the new features found in SQL Server 2005 is the ability to add additional columns, called Included Columns, to a non-clustered index. This article will explain the advantages of using included columns and what impact they will have on your database.  Read more...
By Additional Articles 2008/01/28 | Source: SQLTeam.com | Category: Indexing
Rating:  Rate this |  Briefcase | 2,332 reads

SQL Server clustered index design for performance

Find why SQL Server clustered index design should be narrow and static and how clustered indexes affect many-to-many tables to improve database performance.  Read more...
By Additional Articles 2008/01/16 | Source: SearchSQLServer | Category: Indexing
Rating:  Rate this |  Briefcase | 2,975 reads

Generate Create FK-indexes

Generate create statements for missing FK indexes, based on DRI  Read more...
By Johan Bijnens 2007/12/21 | Source: SQLServerCentral.com | Category: Indexing
Rating: (not yet rated) |  Discuss |  Briefcase | 455 reads

Indexes and Fragmentation in SQL Server 2000 Part 2

Most DBAs are constantly looking for ways to tune their servers to run better. Joe Doherty brings us the second part of his series on indexes with an in depth look at how the indexes are stored in your database.   Read more...
By Joe Doherty 2006/12/20 | Source: SQLServerCentral.com | Category: Indexing
Rating: |  Discuss |  Briefcase | 10,894 reads

SQL Server Indexes: The Basics

Indexes directly affect the performance of database applications. This article uses analogies to describe how indexes work. The estimated execution plan feature of the Query Window is utilized to compare the performance of two queries in a batch.  Read more...
By Additional Articles 2007/12/04 | Source: SQLTeam.com | Category: Indexing
Rating: (not yet rated)  Rate this |  Briefcase | 3,542 reads

Indexes and Fragmentation in SQL Server 2000 Part 2

Most DBAs are constantly looking for ways to tune their servers to run better. Joe Doherty brings us the second part of his series on indexes with an in depth look at how the indexes are stored in your database.   Read more...
By Joe Doherty 2006/12/20 | Source: SQLServerCentral.com | Category: Indexing
Rating: |  Discuss |  Briefcase | 10,894 reads

Clustered Indexes in SQL Server: Things You Need to Know

This article covers a few, more advanced topics about the usage of clustered indexes in SQL Server. Not only will I try to convince you of the absolute necessity of using clustered indexes, I'll also give you some tips on how to use them in a not so obvious context.   Read more...
By Additional Articles 2006/01/04 | Source: SQL Server Performance | Category: Indexing
Rating:  Rate this |  Briefcase | 5,239 reads

Index Creation Guidelines

Index Creation Guidelines for SQL Server can be pretty sparse. Usually there are a couple, clustered index for ranges, nonclustered, etc. Leo Peysakhovich has taken some time to write down his guidelines based on his experience for creating indexes and the rational for doing so. He's also taken a few minutes to look at which indexes NOT to create, something that might be worth knowing..   Read more...
By Leo Peysakhovich 2005/10/21 (first posted: 2004/06/16) | Source: SQLServerCentral.com | Category: Performance Tuning and Scaling
Rating: |  Discuss |  Briefcase | 33,734 reads

Worst Practices - Not Using Primary Keys and Clustered Indexes

Two weeks ago Andy started his wildly successful series on Worst Practices. This week he continues that series discussing why failing to use primary keys and clustered indexes are worst practices. Agree or disagree, read the article and join the discussion. One thing you'll have to admit, reading an article by Andy is a lot more interesting than reading Books Online!   Read more...
By Andy Warren 2008/05/09 (first posted: 2003/11/10) | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 59,923 reads

Indexed Views With Outer Joins

SQL Server 2000 has indexed views, which can greatly improve database performance. However there are a number of restrictions on building the view, including the restriction against outer joins. So how can this work? New author Jean Charles Bulinckx brings us a technique that can help you get around this restriction.   Read more...
By Jean Charles Bulinckx 2005/05/19 | Source: SQLServerCentral.com | Category: Indexing
Rating: |  Discuss |  Briefcase | 9,009 reads
   Items 1 to 20 of 43    Next 20 >>
 
Most popular

Indexes and Fragmentation in SQL Server 2000 Part 2

Most DBAs are constantly looking for ways to tune their servers to run better. Joe Doherty brings us the second part of his series on indexes with an in depth look at how the indexes are stored in your database.   Read more...
By Joe Doherty 2006/12/20 | Source: SQLServerCentral.com | Category: Indexing
Rating: |  Discuss |  Briefcase | 10,894 reads

What is Denormalization?

Chris Kempster brings us a basic look at the database design topic of denormalization.  Read more...
By Chris Kempster 2003/12/01 | Source: SQLServerCentral.com | Category: Advanced
Rating: |  Discuss |  Briefcase | 13,577 reads

Using Included Columns in SQL Server 2005

One of the new features found in SQL Server 2005 is the ability to add additional columns, called Included Columns, to a non-clustered index. This article will explain the advantages of using included columns and what impact they will have on your database.  Read more...
By Additional Articles 2008/01/28 | Source: SQLTeam.com | Category: Indexing
Rating:  Rate this |  Briefcase | 2,332 reads