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

Articles 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)     Stored Procedures (2)     OpenXML (1)    
Miscellaneous (10)     Advanced (3)     Strategies (2)     Replication (1)    
Performance Tuning (9)     SQL Server 2005 (3)     Triggers (2)     SQL Server 2008 (1)    
Administering (6)     Basic Querying (2)     User-Defined functions (2)     statistics (1)    
Performance Tuning and Scaling (6)     Basics (2)     Administration (1)     UpdateGrams (1)    
T-SQL (6)     DTS (2)     Distributed Queries (1)     Visual Basic 6 (1)    
Backup and Recovery (5)     Installation (2)     English Query (1)     XML (1)    
Configuring (5)     Monitoring (2)     Lock and Connection Management (1)     XSL (1)    
Database Design (4)     Security (2)    

Search for any content tagged Indexing

   Items 1 to 20 of 44    Next 20 >>
 

Disabling Indexes

Expert SQL Server trainer Andy Warren brings us a new article on a lesser used feature in SQL server 2005: the ability to disable an index.  Read more...
By Andy Warren 2008/07/22 | Source: SQLServerCentral.com | Category: Indexing
Rating: |  Discuss |  Briefcase | 6,626 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 | 61,105 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 | 2,121 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,454 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,410 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,581 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 | 920 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,403 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 | 3,037 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 | 11,317 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,768 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 | 11,317 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,276 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 | 34,474 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 | 61,105 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,135 reads

SQL Maintenance Plans

Do you use the maintenance plans or hate them? Wish they would do more? Curious about how they work under the hood? Cmon, you gotta read this one! Trust us, it's not another "how-to" article! Well, maybe just a little bit!   Read more...
By Andy Warren 2005/03/04 (first posted: 2002/04/11) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 29,113 reads

SQL Server Database Index Performance

When it comes to auditing index use in SQL Server databases, I sometimes get overwhelmed. For example, how to do you go about auditing indexes in a database with over 1,500 tables? While auditing a single index is relatively straight-forward, auditing thousands of them in multiple databases is not an easy task. Whether the task is easy or not, it is an important task if you want to optimize the performance of your SQL Server databases.   Read more...
By Additional Articles 2005/01/18 | Source: Other | Category: Indexing
Rating:  Rate this |  Briefcase | 3,128 reads

Clustering for Indexes

There is nothing spectacular about using indexes per say. However, on many occasions I have come across a variety of SQL coders that never consider validating that the index they think they are using is efficient or even being used at all. We can all put indexes on the columns that we think will be required to satisfy individual queries, but how do we know if they will ever be used. You see, if the underlying table data is constructed, contains, or is ordered in a particular way, our indexes may never be used. One of the factors around the use of an index is its clustering factor and this is what this article is about.  Read more...
By Additional Articles 2004/12/23 | Source: Database Journal | Category: Indexing
Rating:  Rate this |  Briefcase | 2,409 reads

Boost Your Performance - Bad Index Detection

SQL Server depends heavily on good indexing to perform well. The optimizer requires relevant and intelligent indexing in order to do its job well. Author Andre Vigneau brings us a script that he uses to detect possible index problems in the database design as well as a number of hints to ensure that your database is performing optimally.   Read more...
By Andre Vigneau 2004/12/08 | Source: SQLServerCentral.com | Category: Indexing
Rating: |  Discuss |  Briefcase | 13,550 reads
   Items 1 to 20 of 44    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 | 11,317 reads

Disabling Indexes

Expert SQL Server trainer Andy Warren brings us a new article on a lesser used feature in SQL server 2005: the ability to disable an index.  Read more...
By Andy Warren 2008/07/22 | Source: SQLServerCentral.com | Category: Indexing
Rating: |  Discuss |  Briefcase | 6,626 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,851 reads