Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Content with tag
Indexing
Items 1 to 20 of 368
Next 20 >>
Stairway to SQL Server Indexes
Indexes are fundamental to database design, and tell the developer using the database a great deal about the intentions of the designer. Unfortunately indexes are too often added as an afterthought when performance issues appear. Here at last is a simple series of articles that should bring any database professional rapidly 'up to speed' with them
Read more...
Tips to optimize your SQL statements
Don't blame SQL Server if your SQL Statements perform badly! But where do you start to investigate the problem? This article is a primer on were to start looking when your SQL runs slowly.
Read more...
By
Brian Ellul
2012/02/10 (first published: 2010/07/29)
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
31,717 reads
Stairway to SQL Server Indexes: Level 11, Index Fragmentation
Internal and external fragmentation – Causes, cures, and when not to care
Read more...
By
David Durant
2012/02/01
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
7,414 reads
Indexing - Take the Hint and Leave it to the Experts
The most common T-SQL command in use has to be the SELECT statement, it is the bedrock of any SQL Professional's day. Sometimes it's used to snatch some data from a table or two while some quick investigation is done, other times it is at the heart of a stored procedure or view that will inform business decisions for coming months or even years.
Read more...
By
Additional Articles
2012/01/30
|
Source:
SimpleTalk
|
Category:
indexing
Rating:
(not yet rated)
Rate this
|
Briefcase
|
3,684 reads
Stairway to SQL Server Indexes: Level 10, Index Internal Structure
A detailed look the B-Tree structure – Leaf level and non-leaf level.
Read more...
By
David Durant
2012/01/20
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
6,864 reads
SQL Server Backup, Integrity Check, Index and Statistics Maintenance
Solution for Backup, Integrity Check, Index and Statistics Maintenance in SQL Server 2005, SQL Server 2008 and SQL Server 2008 R2.
Read more...
By
Ola Hallengren
0001/01/01
|
Source:
SQLServerCentral.com
|
Category:
backup / restore
Rating:
|
Discuss
|
Briefcase
|
34,797 reads
Script foreign keys
Using this script you can create a list of sql commands for foreign keys manipulation.
Read more...
By
Boka
0001/01/01
|
Source:
SQLServerCentral.com
|
Category:
t-sql
Rating:
|
Discuss
|
Briefcase
|
4,073 reads
Find Unindexed Foreign Keys (2005)
This script will find foreign keys (on referencing table) that are not indexed in SQL Server 2005.
Read more...
By
Michael Smith
0001/01/01
|
Category:
indexing
Rating:
|
Discuss
|
Briefcase
|
3,512 reads
Reduce heap table fragmentation
A table that does not have a clustered index is referred to as a Heap. While a lot has been written about index fragmentation and how to defrag indexes, there is not much that talks about how to defrag a heap table.
Read more...
By
James Serra
2011/12/13
|
Source:
SQLServerCentral.com
|
Category:
defragmentation
Rating:
(not yet rated)
Rate this
|
Briefcase
|
1,217 reads
SQL Server Backup, Integrity Check, Index and Statistics Maintenance
Solution for Backup, Integrity Check, Index and Statistics Maintenance in SQL Server 2005, SQL Server 2008 and SQL Server 2008 R2.
Read more...
By
Ola Hallengren
0001/01/01
|
Source:
SQLServerCentral.com
|
Category:
backup / restore
Rating:
|
Discuss
|
Briefcase
|
34,797 reads
INDEX DEFRAGMENTATION SCRIPT
Index Defragmentation is one of the most important DBA tasks. This will significantly improve query performance.
Read more...
By
MUTHUKKUMARAN KALIYAMOORTHY
0001/01/01
|
Source:
SQLServerCentral.com
|
Category:
automated index defragmentation script
Rating:
|
Discuss
|
Briefcase
|
8,354 reads
Using a Clustered Index to Solve a SQL Server Deadlock Issue
At some time or another every DBA has been faced with the challenge of solving a deadlock issue in their SQL Server database. In the following tip we will look at how indexes and more specifically clustered indexes on the right columns can help reduce the chance of your applications receiving this dreaded error
Read more...
By
Steve Jones
2011/11/01
|
Source:
MSSQLTips.com
|
Category:
indexing
Rating:
Rate this
|
Briefcase
|
3,505 reads
SQL Server 2005 Index Maintenance
Index maintenance procedure using rebuild or reorganized based on fragementation level.
Read more...
By
Luke Campbell
0001/01/01
|
Source:
SQLServerCentral.com
|
Category:
maintenance
Rating:
|
Discuss
|
Briefcase
|
3,040 reads
Index Fragmentation
This stored procedure is capable of performing defragmentation indices with avg_fragmentation_in_percent greater than the threshold passed.
Read more...
By
Sergio Govoni
0001/01/01
|
Source:
SQLServerCentral.com
|
Category:
sql server 2005
Rating:
|
Discuss
|
Briefcase
|
3,681 reads
Indexes
Read more...
By
SQLDBA ARJUN
2011/10/06
|
Category:
indexing
Rating:
(not yet rated)
|
Discuss
|
Briefcase
|
2,235 reads
Stairway to SQL Server Indexes: Level 9, Reading Query Plans
Determining how, and if, SQL Server is using your indexes.
Read more...
By
David Durant
2011/10/05
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
7,068 reads
Generate Create All Secondary Indexes For Entire Database
Generate Script to create all secondary indexes for a database. I have included the ability to generate online indexes if possible and the ability to move to another file group.
Read more...
By
Gary Fry
0001/01/01
|
Source:
SQLServerCentral.com
|
Category:
indexing
Rating:
|
Discuss
|
Briefcase
|
1,677 reads
Stairway to SQL Server Indexes: Level 8, Unique Indexes
Indexes that ensure data integrity in addition to locating rows.
Read more...
By
David Durant
2011/09/14
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
6,215 reads
SQL Server Index Statistics
Are your index statistics up to date? The SQL Server database engine uses statistics to determine which execution plan to use when a query is compiled. Index statistics are used to help the SQL Server engine determine the cardinality of different column values in a SQL Server table. If you want to give SQL Server a fighting chance at picking an optimal execution plan then you need to make sure you maintain your index statistics.
Read more...
By
Additional Articles
2011/09/14
|
Source:
Database Journal
|
Category:
indexing
Rating:
(not yet rated)
Rate this
|
Briefcase
|
2,959 reads
Are remote databases fragmented? Let's Defrag.
This article shows an automated reorg/rebuild index for remote servers with notifications for the DBA.
Read more...
By
Kimberly Killian
2011/09/12
|
Source:
SQLServerCentral.com
|
Category:
indexing
Rating:
|
Discuss
|
Briefcase
|
3,269 reads
Items 1 to 20 of 368
Next 20 >>
Tags
maintenance and management
(63)
miscellaneous
(44)
performance tuning
(37)
administration
(33)
t-sql aids
(32)
sql server 7
(31)
sql server 2005
(29)
t-sql
(28)
maintenance
(19)
sqlinsider scripts
(18)
stairway series
(16)
backup / restore
(13)
fragmentation
(10)
statistics
(9)
utility
(9)
sql server 2008
(8)
performance
(7)
database design
(6)
dmv
(6)
configuring
(5)
data warehousing
(5)
list indexes
(5)
lock and connection management
(5)
pivot
(5)
sys.dm_db_partition_stats
(5)
crosstab
(4)
for xml path
(4)
foreign keys (fk)
(4)
primary key (pk)
(4)
programming
(4)
replication
(4)
advanced
(3)
blogs
(3)
xml
(3)
automation
(2)
basics
(2)
computed column
(2)
defragment
(2)
dts
(2)
editorial
(2)
full-text search (2005)
(2)
heap
(2)
installation
(2)
mail
(2)
monitoring
(2)
performance monitoring
(2)
reindex
(2)
security
(2)
stored procedures
(2)
strategies
(2)
table
(2)
triggers
(2)
tuning
(2)
user defined function (udf)
(2)
automated index defragmentation script
(1)
blocking
(1)
change index name
(1)
check constraint
(1)
constraint
(1)
constraints
(1)
covering index
(1)
create
(1)
custom index defragmentation
(1)
database weekly
(1)
databases
(1)
deadlock
(1)
deadlocks
(1)
defrag index
(1)
defragmentation
(1)
density
(1)
distributed queries
(1)
distribution
(1)
dm_db_index_physical_stats
(1)
dmv queries
(1)
duplicate indexes
(1)
dynamic
(1)
english query
(1)
execute
(1)
execution plans
(1)
files and filegroups
(1)
fill factor
(1)
full-text search
(1)
index defrag
(1)
index seek
(1)
indexed views
(1)
log file maintenance
(1)
management
(1)
management studio (ssms)
(1)
merge
(1)
metadata
(1)
missing indexes
(1)
multithreaded partition access
(1)
naming convention
(1)
non-clustered
(1)
openxml
(1)
optimizer
(1)
partition
(1)
partition aligned index view
(1)
partition elimination
(1)
partitioned tables
(1)
partitioning and compression
(1)
partitioning and parallel execution
(1)
pass
(1)
performance and tuning
(1)
performance point
(1)
powershell
(1)
query plans
(1)
rand()
(1)
rebuild
(1)
rebuild index
(1)
rebuild index script
(1)
rebuilding indexes
(1)
reorganize index
(1)
search
(1)
select
(1)
selectivity
(1)
service broker
(1)
sharepoint
(1)
sliding windows
(1)
smo
(1)
spatial data
(1)
split
(1)
sql server 2008 r2
(1)
sql server express
(1)
ss2005
(1)
switch
(1)
sys
(1)
sys.dm_db_index_usage_stats
(1)
sys.dm_db_missing_index_details
(1)
sysobjects
(1)
table partition
(1)
table scan
(1)
table size
(1)
tables
(1)
testing
(1)
training
(1)
unique
(1)
unique index
(1)
updategrams
(1)
usage
(1)
video
(1)
views
(1)
visual basic 6
(1)
webinar
(1)
xsl
(1)
Copyright © 2002-2012 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.