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

Content with tag Stored Procedures Rss

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

T-SQL (60)     Strategies (5)     Indexing (2)     Naming Standards (1)    
Miscellaneous (20)     XML (5)     Monitoring (2)     OpenXML (1)    
Programming (18)     Configuring (4)     User-Defined functions (2)     Replication (1)    
SQL Server 7, 2000 (16)     SQL-DMO (4)     XSL (2)     Schemas/DTDs (1)    
Administering (11)     Triggers (4)     ASP (1)     Semaphore (1)    
Basic Querying (9)     Visual Basic 6 (4)     Basics (1)     SQL Puzzles (1)    
Advanced Querying (8)     DTS (3)     Best and Worst Practices (1)     SQL Server 6.5 (1)    
Performance Tuning (7)     Installation (3)     Development (1)     SS2K5 - XML (1)    
ADO (6)     SQL Server 2005 (3)     Distributed Queries (1)     System Development Life Cycle (1)    
Performance Tuning and Scaling (5)     Backup and Recovery (2)     English Query (1)     UpdateGrams (1)    
Security (5)     Database Design (2)     extended procedures (1)     Worst Practices (1)    
   Items 1 to 20 of 63    Next 20 >>
 

Undocumented Extended and Stored Procedures

Some useful undocumented extended and stored procedures in SQL Server 2005  Read more...
By Timothy A Wiseman 2008/05/09 | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 10,532 reads

Passing a Table to A Stored Procedure

In the first article of a new series on T-SQL tips, Jacob Sebastian brings us a very useful technique. How to pass a table to a stored procedure so some set of rows can be operated on using some business logic.   Read more...
By Jacob Sebastian 2007/12/07 (first posted: 2007/05/30) | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 43,988 reads

Usage of Functions in Stored Procedures

Building an application with modular programming not only speeds development, but can make for a more stable application. New author Sreeju Jumar brings us a look at how you can further modularize your stored procedures.  Read more...
By Sreeju 2008/04/29 | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 9,121 reads

Giving Permissions through Stored Procedures

QL 2005 adds two new methods – signing with certificates and impersonation with EXECUTE AS – that can manage cases where the classic method of ownership chaining fails. I explain the two new methods, as well as the old one, and warns you about the pitfalls.  Read more...
By Additional Articles 2008/04/15 | Source: Erland Sommarskog's SQL Page | Category: T-SQL
Rating:  Rate this |  Briefcase | 2,353 reads

How to Share Data Between Stored Procedures

Different ways of passing sets of data between stored procedures.  Read more...
Rating:  Rate this |  Briefcase | 5,762 reads

vis_Parameters

A view to examine the parameters in use by procedures, functions, etc.  Read more...
By Robert A. Booey 2008/02/25 | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 368 reads

Designing High Performance Stored Procedures

Stored procedures can be an effective way to handle conflicting needs, but it's not always so obvious how to write them so they both perform well and scale.  Read more...
By Additional Articles 2007/02/05 | Source: DevX | Category: Performance Tuning
Rating:  Rate this |  Briefcase | 8,656 reads

Passing a Table to A Stored Procedure

In the first article of a new series on T-SQL tips, Jacob Sebastian brings us a very useful technique. How to pass a table to a stored procedure so some set of rows can be operated on using some business logic.   Read more...
By Jacob Sebastian 2007/12/07 (first posted: 2007/05/30) | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 43,988 reads

Output Parameters

Regular columnist Robert Marda writes about the basics of using output parameters. If you're not using output params we hope this article will get you started - they are a great way to return less data to the client, perfect if you need only a few values and not a recordset/resultset.   Read more...
By Robert Marda 2007/10/26 (first posted: 2003/11/25) | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 24,210 reads

Passing a Table to A Stored Procedure

In the first article of a new series on T-SQL tips, Jacob Sebastian brings us a very useful technique. How to pass a table to a stored procedure so some set of rows can be operated on using some business logic.   Read more...
By Jacob Sebastian 2007/12/07 (first posted: 2007/05/30) | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 43,988 reads

Nesting Stored Procedures

We're pleased to announce that Robert will be writing for us each month - generally on stored procedures, but occasionally on a different topic. This article discusses how nesting stored procedures works and how to use @@NextLevel. Good reading! If there is a stored procedure topic you'd like to see covered, add a comment to the article or email us at articles@sqlservercentral.com   Read more...
By Robert Marda 2007/05/18 (first posted: 2003/05/23) | Source: SQLServerCentral.com | Category: Basic Querying
Rating: |  Discuss |  Briefcase | 30,056 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,811 reads

Sales Order Workshop Part III

In the previous articles, Jacob Sebastian looked at using XML to save a sales order with variable numbers of line items to a SQL Server 2000 database. In this part, he expands upon the processing to access that data from multiple nodes.   Read more...
By Jacob Sebastian 2007/04/03 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 4,868 reads

Sales Order Workshop Part II

In the first part of this series, Jacob Sebastion showed us how to use XML to save a sales order to the database with a variable amount of line items. In part 2, he continues looking at XML in SQL Server 2000 with some advanced XML processing.   Read more...
By Jacob Sebastian 2007/03/29 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 5,442 reads

Saving a Sales Order Part 1

How many times have you tried to save a sales order to your database? For many DBAs this is a common scenario and one of the challenges is the many round trips for the various line items. Jacob Sebastian brings us the first part of a four part series looking at how you can use XML to reduce the round trips in SQL Server 2000.   Read more...
By Jacob Sebastian 2007/03/27 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 9,175 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

Introduction to ADO - The Command Object

The third article in a four part series, this week Andy shows how to use the command object to work with stored procedure parameters.   Read more...
By Andy Warren 2007/02/09 (first posted: 2001/12/18) | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 37,561 reads

Designing High Performance Stored Procedures

Stored procedures can be an effective way to handle conflicting needs, but it's not always so obvious how to write them so they both perform well and scale.  Read more...
By Additional Articles 2007/02/05 | Source: DevX | Category: Performance Tuning
Rating:  Rate this |  Briefcase | 8,656 reads

Implementing a T-SQL semaphore

SQL Server does a great job of handling concurrency & ensuring that users can make changes in multi-user systems without conflict. However there are times a strict calling order is needed.   Read more...
By Robert Cary 2006/10/17 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 6,974 reads

Self Eliminated Parameters

Optional parameters are easily handled with NULL values in T-SQL, but there are cases where this doesn't always work. Alex Grinberg brings us a new technique to allow your stored procedures to be structured to deal with this situation without dynamic SQL.   Read more...
By Alex Grinberg 2006/10/09 | Source: SQLServerCentral.com | Category: Advanced Querying
Rating: |  Discuss |  Briefcase | 8,515 reads
   Items 1 to 20 of 63    Next 20 >>
 
Most popular

Passing a Table to A Stored Procedure

In the first article of a new series on T-SQL tips, Jacob Sebastian brings us a very useful technique. How to pass a table to a stored procedure so some set of rows can be operated on using some business logic.   Read more...
By Jacob Sebastian 2007/12/07 (first posted: 2007/05/30) | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 43,988 reads

Undocumented Extended and Stored Procedures

Some useful undocumented extended and stored procedures in SQL Server 2005  Read more...
By Timothy A Wiseman 2008/05/09 | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 10,532 reads

How to Share Data Between Stored Procedures

Different ways of passing sets of data between stored procedures.  Read more...
Rating:  Rate this |  Briefcase | 5,762 reads