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

Scripts with tags SQL Server 2005, T-SQL Aids, T-SQL Rss

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

Administration (10)     nums (6)     pivot (4)     Missing Indexes (1)    
Maintenance and Management (10)     SQLInsider Scripts (6)     Search (4)     Performance Tuning (1)    
Maintenance (8)     Table of Numbers (6)     SQL Server 2000 (4)     Search Columns (1)    
SQL 2005 (8)     tally (6)     sys.dm_db_partition_stats (4)     Search Stored PRocedures (1)    
TSQL (8)     Tuning (6)     2-Dimensional Arrays (2)     Search Tables (1)    
Utility (8)     Arrays (5)     Miscellaneous (2)     Selectivity (1)    
Advanced Querying (6)     Delimited Strings (5)     Performance (2)     sys.dm_db_index_usage_stats (1)    
counter (6)     Parsing (5)     tables (2)     sys.dm_db_missing_index_details (1)    
Development (6)     String Manipulation (5)     column (1)     sys.foreign_key_columns (1)    
Index Management (6)     Crosstab (4)     Duplicate Indexes (1)     sys.foreign_keys (1)    
Indexes (6)     FOR XML PATH (4)     Index Tuning (1)     sys.sql_modules (1)    
Indexing (6)     List Indexes (4)     Index Usage (1)     Table (1)    

Search for any content tagged SQL Server 2005 & T-SQL Aids & T-SQL

Add a script

   Items 1 to 17 of 17   
 

Delimited String Parsing Functions - TwoCol set

Feed it two delimited strings of horizontal data and it returns it back as a vertical table with the two column data in the same synchronized position order.  Read more...
By Jesse Roberge 2008/10/23 | Source: SQLServerCentral.com | Category: T-SQL Aids
Rating: (not yet rated) |  Discuss |  Briefcase | 88 reads

Delimited String Parsing Functions - Big2D set

Feed it large strings of double-delimited horizontal data and it returns it back as a non-pivoted vertical table with a 2-diemensional star schema.  Read more...
By Jesse Roberge 2008/10/22 | Source: SQLServerCentral.com | Category: T-SQL Aids
Rating: (not yet rated) |  Discuss |  Briefcase | 17 reads

Delimited String Parsing Functions - 2D set

Feed it double-delimited horizontal data and it returns it back as a non-pivoted vertical table with a 2-diemensional star schema.  Read more...
By Jesse Roberge 2008/10/14 | Source: SQLServerCentral.com | Category: T-SQL Aids
Rating: (not yet rated) |  Discuss |  Briefcase | 15 reads

Delimited String Parsing Functions - Big Set

Feed it large strings of delimited horizontal data and it returns it back as a vertical table.  Read more...
Rating: (not yet rated) |  Discuss |  Briefcase | 42 reads

Delimited String Parsing Functions - Basic Set

Feed it delimited horizontal data and it returns it back as a vertical table.  Read more...
By Jesse Roberge 2008/10/20 | Source: SQLServerCentral.com | Category: T-SQL Aids
Rating: (not yet rated) |  Discuss |  Briefcase | 67 reads

Counter Table (table of numbers) Setter-Upper for SQL Server 2005

Sets up 3 'table of numbers' that completely fill a 1, 2, and 3-level clustered index respectivly with 622, 386884, and 240641848 numbers.  Read more...
Rating: (not yet rated) |  Discuss |  Briefcase | 42 reads

The Ultimate Missing Index Finder

Reports stats on what the query optimizer records in the DMVs as missing indexes and what it says the cost savings will be if they were present. Can limit by table / schema name patterns.  Read more...
By Jesse Roberge 2008/10/06 | Source: SQLServerCentral.com | Category: Index Management
Rating: (not yet rated) |  Discuss |  Briefcase | 346 reads

The Ultimate Prospective-Index Column(s) Selectivity Analyzer

Gets single-column and cumulative-column selectivity stats and @Top largest dupe sets for each cumulative column stepping for a set of one or more columns for a table.  Read more...
By Jesse Roberge 2008/10/24 | Source: SQLServerCentral.com | Category: Index Management
Rating: (not yet rated) |  Discuss |  Briefcase | 100 reads

The Ultimate Duplicate Index Finder

Searches database-wide for multiple indexes in the same table which has the same column as the first seek key. Optionally limits to LIKE wildcard patterns of table and schema names.  Read more...
By Jesse Roberge 2008/10/17 | Source: SQLServerCentral.com | Category: Index Management
Rating: (not yet rated) |  Discuss |  Briefcase | 107 reads

The Ultimate Index Usage Reporter

Reports index stats, index size+rows, member seek + include columns as two comma separated output columns, and index usage stats for one or more tables and/or schemas.  Read more...
By Jesse Roberge 2008/10/13 | Source: SQLServerCentral.com | Category: Index Management
Rating: (not yet rated) |  Discuss |  Briefcase | 199 reads

The Ultimate Index Lister (Non-Pivoted)

Lists details for all indexes on one or more tables / schemas, including row count and size. The non-pivot version also gives data type and other details for the columns.  Read more...
By Jesse Roberge 2008/10/07 | Source: SQLServerCentral.com | Category: Index Management
Rating: (not yet rated) |  Discuss |  Briefcase | 92 reads

The Ultimate Index Lister (Pivoted)

Lists details for all indexes on one or more tables / schemas, including row count and size. This version outputs the member seek + include columns as two comma separated output columns.  Read more...
By Jesse Roberge 2008/10/09 | Source: SQLServerCentral.com | Category: Index Management
Rating: (not yet rated) |  Discuss |  Briefcase | 89 reads

The Ultimate Table Searcher

Searches for tables who's names contain the search string. Gives Size and Rows information as well.  Read more...
By Jesse Roberge 2008/10/15 | Source: SQLServerCentral.com | Category: Administration
Rating: (not yet rated) |  Discuss |  Briefcase | 127 reads

The Ultimate Column Searcher

Searches for columns with names containing @Colname that belong to tables with names containing @TableName or schemas with names containing @SchemaName. Gives size and rowcount for tables.  Read more...
Rating: (not yet rated) |  Discuss |  Briefcase | 79 reads

The Ultimate Foreign Key Researcher

Searches for actual and potential foreign key columns for a given primary key reference.  Read more...
By Jesse Roberge 2008/08/15 | Source: SQLServerCentral.com | Category: T-SQL
Rating: |  Discuss |  Briefcase | 749 reads

The Ultimate Precompiled Procedure Searcher

Searches precompiled procedures for the provided search string, optionally limiting to names matching a 2nd search string.  Read more...
By Jesse Roberge 2008/08/29 | Source: SQLServerCentral.com | Category: SQL Server 2005
Rating: |  Discuss |  Briefcase | 485 reads

Proc to Rename a file

A simple way to rename a file from within a T-SQL Script, primarily designed to add a date-time stamp. Works in 2000 and 2005.  Read more...
By Simon Facer 2008/06/17 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 1,070 reads
   Items 1 to 17 of 17   
 
Most popular

Proc to Rename a file

A simple way to rename a file from within a T-SQL Script, primarily designed to add a date-time stamp. Works in 2000 and 2005.  Read more...
By Simon Facer 2008/06/17 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 1,070 reads

The Ultimate Precompiled Procedure Searcher

Searches precompiled procedures for the provided search string, optionally limiting to names matching a 2nd search string.  Read more...
By Jesse Roberge 2008/08/29 | Source: SQLServerCentral.com | Category: SQL Server 2005
Rating: |  Discuss |  Briefcase | 485 reads

The Ultimate Foreign Key Researcher

Searches for actual and potential foreign key columns for a given primary key reference.  Read more...
By Jesse Roberge 2008/08/15 | Source: SQLServerCentral.com | Category: T-SQL
Rating: |  Discuss |  Briefcase | 749 reads