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

Content with tag SQL Server 6.5 Rss

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

SQL Server 7, 2000 (32)     Configuring (4)     Miscellaneous (2)     Database Design (1)    
Administering (25)     Programming (4)     ADO (1)     DTS (1)    
Security (11)     T-SQL (4)     Advanced Querying (1)     SQL-DMO (1)    
Performance Tuning (9)     Replication (3)     Basics (1)     Stored Procedures (1)    
Monitoring (7)     Strategies (3)     Best and Worst Practices (1)     Worst Practices (1)    
Performance Tuning and Scaling (6)     Miscellaneous (2)    
   Items 1 to 20 of 45    Next 20 >>
 

SQL Server Security: Server Roles

As yo probably know, Brian covers security topics for us and does a great job. This week he looks at the fixed roles and points out a few things you may not have thought about.   Read more...
By Brian Kelley 2007/05/04 (first posted: 2003/10/29) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 32,869 reads

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 | 27,114 reads

Measuring SQL Performance

One thing that often amazes me is that many SQL Server developers do not actually measure the performance of their queries. Many of them thought that you needed external tools, more or less complicated, to run against your server, and they did not have the time or inclination to learn and try these. This article will describe a couple of much easier methods of measuring performance of queries.   Read more...
By Christoffer Hedgate 2005/12/23 (first posted: 2004/04/02) | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 27,274 reads

SQL Server Security Part 2

In part one Chris Kempster covered a variety of security recommendations primarily for production systems. In Part two of this series he continues to explore security at a variety of levels where you may not realize you are vulnerable.   Read more...
By Chris Kempster 2005/11/04 (first posted: 2004/01/30) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 31,238 reads

Help! My Database is Marked Suspect.

If your database is marked suspect, this will show you a step-by-step guide in how to fix the problem.   Read more...
By Brian Knight 2005/10/28 (first posted: 2004/03/31) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 50,281 reads

Reducing Round Trips

One of the best ways to reduce the load on your server and increase application responsiveness is to reduce the number of "round trips" your application makes. This article by Andy Warren shows you a few ways to increase your performance by reducing round trips.   Read more...
By Andy Warren 2005/07/15 (first posted: 2002/01/24) | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 18,996 reads

10 Steps to Securing your SQL Server

Securing your SQL Server can be an arduous task, but very rewarding. This article covers 10 steps to properly protecting your data.   Read more...
By Brian Knight 2005/05/27 (first posted: 2003/04/03) | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 39,328 reads

SQL Server Security Part 1

In this series of articles, Chris Kempster will discuss some of the finer aspects of SQL Server security and also touch on OS, physical and application security to open up this science for general discussion.   Read more...
By Chris Kempster 2005/02/11 (first posted: 2002/01/14) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 42,713 reads

Duplicate Key Inserted Error During Replication

If you allow users write access to replicated tables on the subscriber, you can run into cases where a record is inserted on the wrong server - which will result in a replication stopping error if the same primary key is later inserted on the publisher. Find out how to fix it without pushing a new snapshot.   Read more...
By Andy Warren 2004/10/15 (first posted: 2001/05/04) | Source: SQLServerCentral.com | Category: Replication
Rating: |  Discuss |  Briefcase | 7,649 reads

Not All SQL Server Indexes Are Created Equal

Just because a column has an index doesn't mean the SQL Server Query Analyzer will use it. Learn how to create indexes SQL Server will use.   Read more...
By Additional Articles 2004/09/24 (first posted: 2001/04/22) | Source: SQL Server Performance | Category: Performance Tuning
Rating:  Rate this |  Briefcase | 3,939 reads

Moving Logins - A Gotcha!

This article by Andy Warren talks about using sp_addlogin to move logins from one server to another. It also points out a problem you may run into if you have a SQL 7 server that was upgraded from 6.5   Read more...
By Andy Warren 2004/05/12 (first posted: 2001/05/01) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 10,286 reads

Measuring SQL Performance

One thing that often amazes me is that many SQL Server developers do not actually measure the performance of their queries. Many of them thought that you needed external tools, more or less complicated, to run against your server, and they did not have the time or inclination to learn and try these. This article will describe a couple of much easier methods of measuring performance of queries.   Read more...
By Christoffer Hedgate 2005/12/23 (first posted: 2004/04/02) | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 27,274 reads

Help! My Database is Marked Suspect.

If your database is marked suspect, this will show you a step-by-step guide in how to fix the problem.   Read more...
By Brian Knight 2005/10/28 (first posted: 2004/03/31) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 50,281 reads

Review of Review of SQL Server 2000 Administrators' Companion

Nice write up on the Admin Companion. Should you add it to your bookshelf? Frank offers his frank opinion.   Read more...
By Frank Kalis 2004/03/26 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 4,066 reads

Dump SQL Permissions

We saw a note from Chad about a tool he wrote in the forums and asked him to write up some notes. Not only did we get notes, we got the source code! See what a DBA can do with some DMO.   Read more...
By Chad Miller 2004/03/17 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 14,679 reads

SQL Server Security Part 2

In part one Chris Kempster covered a variety of security recommendations primarily for production systems. In Part two of this series he continues to explore security at a variety of levels where you may not realize you are vulnerable.   Read more...
By Chris Kempster 2005/11/04 (first posted: 2004/01/30) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 31,238 reads

Automatically Gathering Server Information Part 2

The second part of Steve Jones's series on having SQL Server automatically report information to a DBA.   Read more...
By Steve Jones 2003/12/25 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 10,482 reads

Using Xp_cmdshell

One of the most handy extended stored procedures in SQL Server is xp_cmdshell. This article will show you how to use it.   Read more...
By Brian Knight 2003/11/14 (first posted: 2001/05/03) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 35,005 reads

SQL Server Security: Server Roles

As yo probably know, Brian covers security topics for us and does a great job. This week he looks at the fixed roles and points out a few things you may not have thought about.   Read more...
By Brian Kelley 2007/05/04 (first posted: 2003/10/29) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 32,869 reads

SQL Agent Problem

Andy takes us through a recent troubleshooting session that includes a call to PSS. Ever run agent from the command line? Have a good idea of what justifies a call to PSS? Read this to learn more.   Read more...
By Andy Warren 2003/07/09 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 9,664 reads
   Items 1 to 20 of 45    Next 20 >>
 
Most popular

Measuring SQL Performance

One thing that often amazes me is that many SQL Server developers do not actually measure the performance of their queries. Many of them thought that you needed external tools, more or less complicated, to run against your server, and they did not have the time or inclination to learn and try these. This article will describe a couple of much easier methods of measuring performance of queries.   Read more...
By Christoffer Hedgate 2005/12/23 (first posted: 2004/04/02) | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 27,274 reads

SQL Server Security: Server Roles

As yo probably know, Brian covers security topics for us and does a great job. This week he looks at the fixed roles and points out a few things you may not have thought about.   Read more...
By Brian Kelley 2007/05/04 (first posted: 2003/10/29) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 32,869 reads

Dump SQL Permissions

We saw a note from Chad about a tool he wrote in the forums and asked him to write up some notes. Not only did we get notes, we got the source code! See what a DBA can do with some DMO.   Read more...
By Chad Miller 2004/03/17 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 14,679 reads