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

Content with tags SQL Server 2005, T-SQL Rss

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

Advanced Querying (5)     Stored Procedures (2)     Management (1)     SQL Server 2000 (1)    
Miscellaneous (3)     Administration (1)     Performance Tuning (1)     SS2K5 - XML (1)    
Development (2)     BLOB Manipulation (1)     Puzzle (1)     TSQL (1)    
games (2)     CLR Integration (1)     solo (1)     T-SQL Aids (1)    
SQL Server 2005 - TSQL (2)     Maintenance and Management (1)     SQL 2005 (1)    
   Items 1 to 17 of 17   
 

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 | 16 reads

A Sudoku solution with set based T-SQL utilizing binary operators.

A Sudoku solution with set based T-SQL approach utilizing binary values and operators, to ease the algorithm.  Read more...
By Kevin Duan 2008/06/09 | Source: SQLServerCentral.com | Category: T-SQL
Rating: |  Discuss |  Briefcase | 101 reads

Simplify SQL Server 2005 queries with a Dates table

Learn what a Dates table is and how to create one, and then try it out for yourself  Read more...
By Additional Articles 2008/05/06 | Source: Builder.com | Category: SQL Server 2005
Rating:  Rate this |  Briefcase | 4,818 reads

Tic Tac Toe TSQL Style

This allows a player to play tic tac toe against an automated computer.  Read more...
By adam haines 2008/03/11 | Source: SQLServerCentral.com | Category: TSQL
Rating: |  Discuss |  Briefcase | 967 reads

Parse the dependency chain of an object

Parses up & down the dependency chain of an object  Read more...
By Jesse McLain 2008/02/26 | Source: SQLServerCentral.com | Category: T-SQL
Rating: |  Discuss |  Briefcase | 791 reads

Revenge of the BLOB

Working with large images or other BLOB data can be a challenge for many DBAs. Andrew Sears brings us some code that can help you extract some of that data out of BLOBs and get it back into a more easy-to-work-with format.  Read more...
By Andrew Sears 2008/01/30 | Source: SQLServerCentral.com | Category: T-SQL
Rating: |  Discuss |  Briefcase | 4,845 reads

Generate Drop / Create Script for views, stored Procedures

This Script generates drop and create scripts for views or stored procedures.  Read more...
Rating: |  Discuss |  Briefcase | 1,325 reads

Calculate Percentiles with SQL Server 2005

Learn one of the techniques for calculating percentiles with SQL Server 2005 using the new SQL Server Common Table Expression and the latest ROW_NUMBER function.   Read more...
By Additional Articles 2007/11/15 | Source: DevX | Category: SQL Server 2005
Rating:  Rate this |  Briefcase | 2,695 reads

A New (and Hopefully Better) Approach to Constants

A look at how constants are used in T-SQL and SQL Server in general along with some suggestions on how better to deal with them.  Read more...
By Solomon Rutzky 2007/10/16 | Category: T-SQL
Rating: |  Discuss |  Briefcase | 5,013 reads

What does this return?

By 2007/10/08 | Category: T-SQL
Rating: (not yet rated) |  Discuss |  Briefcase | 3,318 reads

Introduction to Parameterization in SQL Server

In a previous article I showed how to look at what query plans are in SQL Server's memory. In this article I'll look at how they got there and how and when they get reused. This is commonly called compiling a query plan. More specifically I'll look at how and when SQL Server can parameterize dynamic SQL   Read more...
By Additional Articles 2007/08/14 | Source: SQLTeam.com | Category: Performance Tuning
Rating:  Rate this |  Briefcase | 2,700 reads

Sales Order Workshop Part IV

In the fourth installment of this series, Jacob Sebastian moves on to SQL Server 2005 and the new XML capabilities that make working with XML data easier than ever.   Read more...
By Jacob Sebastian 2007/04/05 | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 7,822 reads

SQL Server Error Handling Workbench

Grant Fritchey steps into the workbench arena, with an example-fuelled examination of catching and gracefully handling errors in SQL 2000 and 2005, including worked examples of the new TRY..CATCH capabilities.  Read more...
By Additional Articles 2007/03/06 | Source: SimpleTalk | Category: Stored Procedures
Rating:  Rate this |  Briefcase | 2,223 reads

Write PIVOT queries in SQL Server 2005

New to SQL Server 2005 is the PIVOT operator, which gives you the ability to rotate row level data into tabular data without the use of the CASE statement, as was necessary in previous versions of SQL Server.  Read more...
By Additional Articles 2007/01/11 | Source: Builder.com | Category: Advanced Querying
Rating:  Rate this |  Briefcase | 4,142 reads

Using the OUTPUT Clause to Capture Identity Values on Multi-Row Insert

SQL Server 2005 introducted the OUTPUT clause which we can use to capture values from the inserted and deleted virtual tables.  Read more...
By Additional Articles 2006/08/25 | Source: SQLTeam.com | Category: Advanced Querying
Rating:  Rate this |  Briefcase | 2,824 reads

Fast Text Processing in SQL Server

Processing text or long strings usually reduces SQL to a prosaic procedural language. Learn a few techniques for facilitating speedy text processing in SQL.   Read more...
By Additional Articles 2006/05/10 | Source: DevX | Category: Advanced Querying
Rating:  Rate this |  Briefcase | 3,670 reads

Fixing SysDepends

Have you been burned by sysdepends at some point in your SQL Server DBA career? Steve Jones has many times, but a FREE new utility ends all that.   Read more...
By Steve Jones 2005/09/22 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 8,857 reads
   Items 1 to 17 of 17   
 
Most popular

Sales Order Workshop Part IV

In the fourth installment of this series, Jacob Sebastian moves on to SQL Server 2005 and the new XML capabilities that make working with XML data easier than ever.   Read more...
By Jacob Sebastian 2007/04/05 | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 7,822 reads

Tic Tac Toe TSQL Style

This allows a player to play tic tac toe against an automated computer.  Read more...
By adam haines 2008/03/11 | Source: SQLServerCentral.com | Category: TSQL
Rating: |  Discuss |  Briefcase | 967 reads

Introduction to Parameterization in SQL Server

In a previous article I showed how to look at what query plans are in SQL Server's memory. In this article I'll look at how they got there and how and when they get reused. This is commonly called compiling a query plan. More specifically I'll look at how and when SQL Server can parameterize dynamic SQL   Read more...
By Additional Articles 2007/08/14 | Source: SQLTeam.com | Category: Performance Tuning
Rating:  Rate this |  Briefcase | 2,700 reads