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

Articles with tags SQL Server 7, 2000, Advanced Querying, T-SQL Rss

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

Administering (13)     Performance Tuning (3)     Configuring (1)     Strategies (1)    
Monitoring (4)     Stored Procedures (2)     DTS (1)     System Development Life Cycle (1)    
Performance Tuning and Scaling (4)     Backup and Recovery (1)     SQL Server 6.5 (1)     Triggers (1)    
Security (4)     Basic Querying (1)    

Search for any content tagged SQL Server 7, 2000 & Advanced Querying & T-SQL

   Items 1 to 20 of 25    Next 20 >>
 

Encrypting Data With the Encrypt Function

One of the major problems in the database field is when people store sensitive data unencrypted into SQL Server. This article shows you one of the most basic ways to encrypt data to the casual viewer.   Read more...
By Brian Knight 2006/05/29 (first posted: 2001/07/17) | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 28,105 reads

Execution Plans

How many of you use Execution Plans to tune your queries? Do you understand the impact of different indexes? Mr. Vijayakumar looks at his experiments with different types of indexes and their effects on the execution plan use. A great article for those of you that want to learn more about how you can tune your server for better performance.   Read more...
By G Vijayakumar 2005/10/07 (first posted: 2004/05/06) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 40,484 reads

Push FTP with SQL Server

DTS is an incredible package for moving data in the SQL Server world. One feature that is missing, however, is the ability to send files using FTP to a remote server. This article looks at a technique for sending files via FTP.   Read more...
By Steve Jones 2005/07/01 (first posted: 2001/11/01) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 33,428 reads

Using Xp_sendmail With the Recipients Generated From a Query

Xp_sendmail is a great utility that SQL Server provides in order to e-mail messages directly from SQL Server, by using a valid MAPI profile. However, its syntax is rather stringent. In this article by Kunal Das, he shows you how to send messages to a list of recipients generated by a query dynamically in T-SQL.   Read more...
By Kunal Das 2005/02/18 (first posted: 2001/07/16) | Source: SQLServerCentral.com | Category: Advanced Querying
Rating: |  Discuss |  Briefcase | 22,171 reads

Case Sensitivity in Selects - Part 2

In this follow up Andy looks into some of the options available when you're dealing with situations where you're joining a case sensitive column to a case insensitive column. We think after reading this you'll be ready to just say no!   Read more...
By Andy Warren 2004/06/22 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 7,938 reads

Case Sensitivity in Selects - Part 3

See what a reader had to say about Part 1, make sure you've read Part 2, then feel the pain as the author describes a lookup table that should have had unique values and doesn't.   Read more...
By Andy Warren 2004/06/15 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 7,085 reads

Making Good Use of Sysforeignkeys Table - Part 1: Display table relati

Sysforeignkeys is a valuable SQL Server resource. How many times have you had to "pick up the pieces" from a database developed by someone else and dropped on your desk? Ever get a database diagram with that? A data dictionary? Probably not too often. Jeffrey Yao has developed a system of finding those parent-child relationships automatically and displaying them so he can get up to speed quickly on these inherited databases. Read on to find out more.   Read more...
By Jeffrey Yao 2004/06/01 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 11,150 reads

Creating a System Stored Procedure

Creating a system stored procedure isn't hard. You're always cautioned from making changes to the system, depending on the system for a particular functionality, etc., and you should be cautious. However adding system stored procedures to your servers can be beneficial and make your administration much more convenient. Read on the see how easy this can be to do.   Read more...
By Robert Marda 2004/05/20 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 10,047 reads

Execution Plans

How many of you use Execution Plans to tune your queries? Do you understand the impact of different indexes? Mr. Vijayakumar looks at his experiments with different types of indexes and their effects on the execution plan use. A great article for those of you that want to learn more about how you can tune your server for better performance.   Read more...
By G Vijayakumar 2005/10/07 (first posted: 2004/05/06) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 40,484 reads

The SQL Server Black Box

Have you ever had the problem where a user ran a query against your SQL Serer and crashed it or made the server unusable since the CPU was spiked at 100%? A SQL Server black box is the equivalent of a flight data record. The black box records all queries being passed to your SQL Server and other useful information like errors.   Read more...
By Brian Knight 2003/04/11 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 13,128 reads

Utilizing fn_virtualfilestats

In this example, we will attempt to get some statistical information on file-group utilization to assist us with IO monitoring.   Read more...
By Chris Kempster 2002/12/04 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 6,498 reads

Using Bitwise Operators to Boost Performance

Bitwise operators can be challenging to manage at first. However, with practice and patience, and under the right conditions, these operators can provide remarkable performance improvements in production environments. This article will compare two methods of accomplishing the same output, one with a normalized model and the other with bitwise operators.   Read more...
By Herve Roggero 2002/09/05 | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 7,219 reads

Understanding Execution Plans Part 1

The purpose of this article is to give you a working knowledge of how to view and understand query execution plans for SQL Server. This is part 1 in a series of articles that will walk you through understanding execution plans to help you improve your queries.   Read more...
By Robert Marda 2002/07/26 | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 12,913 reads

Creating your own sp_MSforeach stored procedure

This article shows you one of the most time saving stored procedure built into SQL Server and then shows you how you can modify it to affect additional objects like triggers. For example, after this article and the code in the article, you'll be able to disable every trigger in your system in one line of code.   Read more...
By Brian Knight 2002/06/17 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 11,962 reads

Auditing Your SQL Server Environment Part II Auditing Your SQL Server

In this article by Randy Dyess he shares with you the script on how he audits his environment and outputs reports of the permissions that users have.  Read more...
By Randy Dyess 2002/05/30 | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 8,301 reads

Making Dynamic Queries Static

Building and executing dynamic sql in a stored procedure - is it the only way to solve problems like supporting a simple search function? Leon offers a couple alternatives that let you continue to provide the functionality in a stored procedure without using dynamic sql. Interesting ideas worth exploring!   Read more...
Rating: |  Discuss |  Briefcase | 11,844 reads

Auditing Your SQL Server Environment Part I

Ever been placed into a new environment and couldn't find an ounce of documentation? This article is the first in a series that will help you make an audit of your new environment and determine if any SQL Server login does not have a password, has a password the same as the login name or a password that is only one character long.  Read more...
By Randy Dyess 2002/04/02 | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 9,008 reads

Push FTP with SQL Server

DTS is an incredible package for moving data in the SQL Server world. One feature that is missing, however, is the ability to send files using FTP to a remote server. This article looks at a technique for sending files via FTP.   Read more...
By Steve Jones 2005/07/01 (first posted: 2001/11/01) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 33,428 reads

Executing a script from SQL Server

Running a script automatically from SQL Server is easier than you think. Here are a few methods you can use.   Read more...
By Steve Jones 2001/10/17 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 14,033 reads

DBCC SQLPERF (Logspace) Reporting Internals

This is a broad overview of the DBCC SQLPERF command primarily for version 7 and 2000.   Read more...
By Additional Articles 2001/09/17 | Source: Other | Category: Administering
Rating:  Rate this |  Briefcase | 1,181 reads
   Items 1 to 20 of 25    Next 20 >>
 
Most popular

Execution Plans

How many of you use Execution Plans to tune your queries? Do you understand the impact of different indexes? Mr. Vijayakumar looks at his experiments with different types of indexes and their effects on the execution plan use. A great article for those of you that want to learn more about how you can tune your server for better performance.   Read more...
By G Vijayakumar 2005/10/07 (first posted: 2004/05/06) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 40,484 reads

Making Good Use of Sysforeignkeys Table - Part 1: Display table relati

Sysforeignkeys is a valuable SQL Server resource. How many times have you had to "pick up the pieces" from a database developed by someone else and dropped on your desk? Ever get a database diagram with that? A data dictionary? Probably not too often. Jeffrey Yao has developed a system of finding those parent-child relationships automatically and displaying them so he can get up to speed quickly on these inherited databases. Read on to find out more.   Read more...
By Jeffrey Yao 2004/06/01 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 11,150 reads

Case Sensitivity in Selects - Part 2

In this follow up Andy looks into some of the options available when you're dealing with situations where you're joining a case sensitive column to a case insensitive column. We think after reading this you'll be ready to just say no!   Read more...
By Andy Warren 2004/06/22 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 7,938 reads