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

Content with tags Development, SQL Server 2005 Rss

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

Administration (6)     Security (2)     Reporting Services (1)     Stored Procedures (1)    
.Net (2)     Strategies (2)     SQL Server 2005 - Security (1)     XML (1)    
Miscellaneous (2)     T-SQL (2)     SQL Server 2005 - SSIS (1)     XSL (1)    
Programming (2)    
   Items 1 to 20 of 69    Next 20 >>
 

Recursive Queries in SQL Server 2005

Part 2 of new T-SQL enhancements from Srinivas Sampath. SQL Server 2005 contains a number of enhancements designed to allow you to write more powerful queries while keeping the code structured in a way that makes development and understanding it easier. Building on his first look at Common Table Expressions, Srinivas now looks at recursive queries with CTEs.   Read more...
By Srinivas Sampath 2008/04/18 (first posted: 2005/03/03) | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 70,492 reads

Reporting Services Makes Server Support Easier

Reporting Services is one of the most widely used subsystems in SQL Server and there have been some very creative solutions invented by DBAs around the world. New author Carolyn Richardson is one of those, bringing us a implementation that tracks uptime and disk space for her SQL Servers   Read more...
By Carolyn Richardson 2007/03/12 | Source: SQLServerCentral.com | Category: Administration
Rating: |  Discuss |  Briefcase | 7,523 reads

Maximum Row Size in SQL Server 2005

What is the page size in SQL Server 2005? That's an easy question, but what is the maximum row size? They're not the same thing and ANdy Warren shows you why.   Read more...
By Andy Warren 2007/02/27 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 16,916 reads

An Introduction to the Service Broker

One of the more interesting new features in SQL Server 2005 is the Service Broker. It's not something to help you manage your financial future, nor is it some new program that handles all the instances and their accounts. It's a message queue and SQL Server MVP Srinivas Sampath brings us a look at this new feature with some code to get you going.   Read more...
By Srinivas Sampath 2007/12/14 (first posted: 2005/06/30) | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 23,512 reads

Source Control in SQL Server

One of the most requested features from SQL Server developers is the integration of source control with T-SQL code. SQL Server Management Studio brings some integration with Visual Source Safe and longtime SQL Server author Raj Vasant explains it to us.   Read more...
By Vasant Raj 2006/12/04 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 9,535 reads

New T-SQL Features in SQL Server 2005 Part 2

SQL Server 2005 has changed many of the ways in which we will use SQL Server in the future with a dizzying array of new features and enhancements. Sureshkumar Ramakrishnan brings us the second part in a series looking at what these changes do and how to use them.   Read more...
By Sureshkumar Ramakrishnan 2006/12/06 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 15,855 reads

New T-SQL Features in SQL Server 2005 Part 1

SQL Server 2005 has changed many of the ways in which we will use SQL Server in the future with a dizzying array of new features and enhancements. Sureshkumar Ramakrishnan brings us the first part in a series looking at what these changes do and how to use them.   Read more...
By Sureshkumar Ramakrishnan 2006/11/29 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 20,225 reads

Isolation Levels in SQL Server 2005

Isolation levels are used to prioritize the acccess to a resource. SQL Server 2005 extends upon the support for isolation levels in 2000 with several new features including an additional level.  Read more...
By Additional Articles 2007/09/28 | Source: SQL Server Performance | Category: Development
Rating:  Rate this |  Briefcase | 3,326 reads

An Auditing Solution with XML And XSL

Auditing is something that almost every DBA needs to tackle at some point in his or her career. David McKinney brings a new twist on the solution by using XML and XSL to help implement auditing in your SQL Server application.   Read more...
By David McKinney 2007/08/20 | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 4,357 reads

Building a Partitioned Table

One of the nice new features in SQL Server 2005 is the ability to partition a table based on some sort of range in the data. New author Irfan Baig brings us a short article that explains exactly how you can get started using this new feature.   Read more...
By Irfan Baig 2007/08/14 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 6,410 reads

Table Partitioning

One of the techniques that you can use for increasing performance, especially in large SQL Server tables, is partitioning. Andy Warren brings us an overview of what this is and how you can use it in your SQL Server 2005 applications.   Read more...
By Andy Warren 2007/08/09 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 12,735 reads

Transaction Isolation and the New Snapshot Isolation Level

Concurrency and transaction isolation are a prickly subject, difficult to explain with any kind of clarity without boring the reader and leaving their poor brain in a complete muddle. Therefore, it is often ignored in the vain hope it won't affect us and we can forget all about it. Well you can't ignore it any more and with SQL Server 2005 there's a whole new isolation level added to the four that already exist.  Read more...
By Additional Articles 2007/07/19 | Source: SQLTeam.com | Category: Development
Rating:  Rate this |  Briefcase | 1,498 reads

Stop SQL Injection Attacks Before They Stop You

This article discusses: How SQL injection attacks work, Testing for vulnerabilities, Validating user input, and more.  Read more...
By Additional Articles 2007/07/09 | Source: MSDN Communities | Category: Security
Rating:  Rate this |  Briefcase | 3,517 reads

Cut development time with SQL Server 2005's synonyms

A synonym is a new object to SQL Server 2005. It is a way to give an alias to an already existing object. For example, if you have a table named SalesHistoryFromArchiveF  Read more...
By Additional Articles 2007/06/08 | Source: Builder.com | Category: Development
Rating:  Rate this |  Briefcase | 3,500 reads

Using Multiple Active Result Sets (MARS)

SQL Server 2005 has so many new features that in my opinion if you read only BOL for a year you'd find something new every day. One of those is Multiple Active Result Sets or MARS. Multiple Active Result Sets is a new SQL Server 2005 feature that, putting it simply, allows the user to run more than one SQL batch on an open connection at the same time.  Read more...
By Additional Articles 2007/04/09 | Source: SQLTeam.com | Category: Development
Rating:  Rate this |  Briefcase | 1,768 reads

Reporting Services Makes Server Support Easier

Reporting Services is one of the most widely used subsystems in SQL Server and there have been some very creative solutions invented by DBAs around the world. New author Carolyn Richardson is one of those, bringing us a implementation that tracks uptime and disk space for her SQL Servers   Read more...
By Carolyn Richardson 2007/03/12 | Source: SQLServerCentral.com | Category: Administration
Rating: |  Discuss |  Briefcase | 7,523 reads

Common Table Expressions in SQL Server 2005

The next evoution of T-SQL, which will be released in SQL Server 2005, contains a number of enhancements designed to allow you to write more powerful queries while keeping the code structured in a way that makes development and understanding it easier. Coming ever so closer to the SQL-99 specification with Common Table Expressions, new author Srinivas Sampath brings us an introduction to this new way of writing complex queries.   Read more...
By Srinivas Sampath 2007/03/09 (first posted: 2005/03/02) | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 40,209 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,325 reads

Maximum Row Size in SQL Server 2005

What is the page size in SQL Server 2005? That's an easy question, but what is the maximum row size? They're not the same thing and ANdy Warren shows you why.   Read more...
By Andy Warren 2007/02/27 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 16,916 reads

Automate the process of trimming table data in SQL Server 2005

Arthur Fuller recently instructed a colleague on how to automate the process of trimming table data in SQL Server 2005. Find out how he is able to turn an onerous task into a breeze.  Read more...
By Additional Articles 2007/01/22 | Source: Builder.com | Category: Development
Rating:  Rate this |  Briefcase | 2,191 reads
   Items 1 to 20 of 69    Next 20 >>
 
Most popular

Maximum Row Size in SQL Server 2005

What is the page size in SQL Server 2005? That's an easy question, but what is the maximum row size? They're not the same thing and ANdy Warren shows you why.   Read more...
By Andy Warren 2007/02/27 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 16,916 reads

Table Partitioning

One of the techniques that you can use for increasing performance, especially in large SQL Server tables, is partitioning. Andy Warren brings us an overview of what this is and how you can use it in your SQL Server 2005 applications.   Read more...
By Andy Warren 2007/08/09 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 12,735 reads

New T-SQL Features in SQL Server 2005 Part 1

SQL Server 2005 has changed many of the ways in which we will use SQL Server in the future with a dizzying array of new features and enhancements. Sureshkumar Ramakrishnan brings us the first part in a series looking at what these changes do and how to use them.   Read more...
By Sureshkumar Ramakrishnan 2006/11/29 | Source: SQLServerCentral.com | Category: Development
Rating: |  Discuss |  Briefcase | 20,225 reads