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

Content with tag SQL Server 7, 2000 Rss

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

Administering (319)     Visual Basic 6 (23)     Reviews (7)     SQLMail (3)    
Miscellaneous (120)     Advanced Querying (21)     Career (6)     State of the Business (3)    
Performance Tuning and Scaling (117)     Basic Querying (21)     Other (6)     Certifications (2)    
T-SQL (101)     Installation (21)     Product Reviews (6)     English Query (2)    
News (99)     Database Design (18)     XML (6)     OpenXML (2)    
Security (99)     Disaster Recovery (16)     Analysis Services (5)     SS2K - Full Text Searching (2)    
Configuring (83)     Stored Procedures (16)     Best Practices (5)     UpdateGrams (2)    
DTS (73)     Best and Worst Practices (14)     Bugs (5)     XSL (2)    
Programming (69)     Distributed Queries (14)     Naming Standards (5)     Book Reviews (1)    
Strategies (64)     Service Packs (13)     Rants (5)     Data Types (1)    
Monitoring (51)     ADO (12)     SQL Server 2000 Upgrading (5)     Design (1)    
Replication (44)     Basics (12)     System Development Life Cycle (5)     Schemas/DTDs (1)    
Performance Tuning (39)     SQL-DMO (12)     Access (4)     Scripts (1)    
SQL Server 2005 (35)     Triggers (11)     Advanced (4)     SQL Puzzles (1)    
SQL Server 6.5 (32)     Availability (9)     User-Defined functions (4)     SQL Server 2005 - SSIS (1)    
Indexing (30)     Worst Practices (9)     ASP (3)     SQLServerCentral.com (1)    
Backup and Recovery (29)     .Net (7)     OLAP Server (3)     SS2K5 - Replication (1)    
Administration (23)     Data Warehousing (7)     SQL Server 2005 - Security (3)     SS2K5 - XML (1)    
   Items 1 to 20 of 809    Next 20 >>
 

The Basics of Sizing a SQL Server Database

Sizing a database can be one of the most arduous tasks a DBA, analyst or developer must attend to. It?s time consuming and more hours go into analyzing the database than actually sizing it. This article focuses on how to monitor the database?s growth after its deployed and contains some tips on how to size it before deployment. We will also dive a little into how to benchmark your database against a robust data load.   Read more...
By Brian Knight 2008/08/01 (first posted: 2001/07/25) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 24,195 reads

SQL Server Security: Pros and Cons of Application Roles

Application roles often interesting possibilities in theory. In practice? Brian explores how they work and some of the pros/cons you should consider before selecting them for use in your applications.   Read more...
By Brian Kelley 2008/07/25 (first posted: 2003/08/27) | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 24,194 reads

Bookmark Lookups

Building high performance applications with SQL Server can be a challenge if you do not understand how the query processor works and how the server uses indexes. SQL Server expert Randy Dyess brings a look at how bookmark lookups are used when satisfying a query and how this can impact the performance of your query.   Read more...
By Randy Dyess 2008/07/18 (first posted: 2005/05/30) | Source: SQLServerCentral.com | Category: Performance Tuning and Scaling
Rating: |  Discuss |  Briefcase | 24,707 reads

Log Shipping vs. Replication

SQL Server high availability. Log shipping or replication, clustering or some other solution. It's a challenge and as companies grow more dependent on their databases, it's one that more and more DBAs face everyday. Paul Ibison has taken a look at how log shipping and replication can be compared in the quest for high availability.   Read more...
By Paul Ibison 2008/06/27 (first posted: 2004/06/17) | Source: SQLServerCentral.com | Category: Replication
Rating: |  Discuss |  Briefcase | 30,894 reads

Oracle and SQL Server Data Interoperability Issues - Part 1

As much as we're SQL Server folks here, sometimes we do need to connect to other data stores. Hai shares some of his experiences doing so. Might come in handy someday.   Read more...
By Haidong Ji 2008/06/06 (first posted: 2004/04/14) | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 35,548 reads

Is a Temporary Table Really Necessary?

In this article Randy Dyness shows you how to avoid temp tables whenever to maximize the performance of your queries.   Read more...
By Randy Dyess 2008/05/30 (first posted: 2002/04/09) | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 38,567 reads

Worst Practices - Not Using Primary Keys and Clustered Indexes

Two weeks ago Andy started his wildly successful series on Worst Practices. This week he continues that series discussing why failing to use primary keys and clustered indexes are worst practices. Agree or disagree, read the article and join the discussion. One thing you'll have to admit, reading an article by Andy is a lot more interesting than reading Books Online!   Read more...
By Andy Warren 2008/05/09 (first posted: 2003/11/10) | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 59,922 reads

Free Encryption

Free SQL Server 2000 Encryption for your data!!! Author Michael Coles has put together a tolljit and some XPs that you can use to encrypt your data with the Blowfish algorithm. It is hard to write good applications that encrpyt data and manage the keys and security. This will give you a great headstart on protecting your data.   Read more...
By Michael Coles 2008/04/25 (first posted: 2005/07/21) | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 66,551 reads

Starting SQL Server in Minimal Configuration

Have you ever misconfigured your SQL Server's memory and been unable to start it? That happened to new author Jay Dave, who has the Data Center edition of SQL Server 2000 with a whopping 36GB of RAM. Here's how to get your instance back up and running.   Read more...
By Jay Dave 2007/05/10 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 5,309 reads

Updated SQL Injection

SQL injection has been a hot topic the last couple years and there are some great articles at SQLServerCentral.com on this topic. Michael Coles brings us an updated look at this SQL Server security issue with some new examples you might not have previously thought.   Read more...
By Michael Coles 2008/03/21 (first posted: 2005/09/21) | Source: SQLServerCentral.com | Category: Security
Rating: |  Discuss |  Briefcase | 80,652 reads

Conditional Flow in DTS

While SQL Server Integration Services is a huge improvement in the ETL capabilities of SQL Server, there are quite a few environments still using DTS in SQL Server 2000. Wayne Fillis brings us a method for implementing conditional logic in your packages.   Read more...
By Wayne Fillis 2007/06/07 | Source: SQLServerCentral.com | Category: DTS
Rating: |  Discuss |  Briefcase | 7,668 reads

Using VBScript to Automate Tasks

This article discusses why VBScript should be one of the tools you use to manage your server. Sample scripts show how to remove files over x days old and how to FTP files.   Read more...
By Haidong Ji 2008/03/07 (first posted: 2003/11/04) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 93,456 reads

Open Source SQL DDL Scripting Tool

Keeping track of your DDL is something that is critical and some sort of VCS system should be used. However pulling out your scripts from SQL Server sometimes entails a bit more than the standard scripting. New author Richard Sutherland brings us an open source project that can help you get this done. Complete with code.   Read more...
By Richard Sutherland 2007/03/06 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 7,501 reads

Five Realtime DTS Examples

SQL Server 2005 includes an amazing ETL environment in Integration Services, but many DBAs will be using DTS and SQL Server 2000 for years to come. Jambu Krishnamurthy brings us a few handy examples of how you can customize your DTS environment.   Read more...
By Jambu Krishnamurthy 2007/03/22 | Source: SQLServerCentral.com | Category: DTS
Rating: |  Discuss |  Briefcase | 13,791 reads

Quickly Moving Databases

This article by Chris Kempster shows you how to quickly move a database by detaching or taking a database offline.   Read more...
By Chris Kempster 2008/02/08 (first posted: 2004/05/18) | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 141,857 reads

Step-by-Step Guide to Clustering Windows 2000 and SQL Server 2000

In this next article of the SQL Server in the Enterprise Series, we'll explore how to cluster Windows 2000 and SQL Server 2000 in a step-by-step manner. After this article, you should be able to cluster a SQL Server 2000 machine for failover availability in an Active/Active cluster.   Read more...
By Brian Knight 2008/01/18 (first posted: 2002/07/12) | Source: SQLServerCentral.com | Category: Installation
Rating: |  Discuss |  Briefcase | 144,872 reads

Running a Query Using a Text File for Input

When automating administrative actions for SQL Server, there are a number of ways to handle the workflow. Longtime SQL Server DBA Roy Carlson brings us a technique for using a text file as input to the standard SQL Server tools.   Read more...
By Roy Carlson 2007/03/01 | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 12,619 reads

Searching Syscomments Accurately

As a SQL Server DBA you should know that your code is stored in syscomments by default. While most DBAs use version control systems, there are times you might want to look through the code on the server for comparison purposes. Robert Cary brings us an article on how you can do this in 2000 and 2005.   Read more...
By Robert Cary 2007/01/22 | Source: SQLServerCentral.com | Category: Administering
Rating: |  Discuss |  Briefcase | 6,118 reads

The Dynamic Process of Loading Data

When loading a data warehouse, handling the ETL process of working with files can be problematic. Longtime DBA Janet Wong brings us an interesting solution that is flexible and efficient for quickly loading a number of files into a warehouse using DTS.   Read more...
By Janet Wong 2007/01/23 | Source: SQLServerCentral.com | Category: DTS
Rating: |  Discuss |  Briefcase | 8,696 reads

Overview of DTS Packages

While SQL Server 2005 is greatly changing the paradigm of ETL with Integration Services, SQL Server 2000 and DTS will be here for some time to come. New author Rama Nageshwara brings us an overview of this fantastic data movement toolset.   Read more...
By Rama Nageshwara 2007/12/21 (first posted: 2005/11/09) | Source: SQLServerCentral.com | Category: DTS
Rating: |  Discuss |  Briefcase | 22,005 reads
   Items 1 to 20 of 809    Next 20 >>
 
Most popular

The Effect of NOLOCK on Performance

Using hints in a query is something that most DBAs don't ever seem to bother with, but when they do, NOLOCK seems to be their hint of choice. Wayne Fillis brings us a detailed examination of how this particular hint actually affects the performance of your system.   Read more...
By Wayne Fillis 2007/03/23 (first posted: 2007/01/24) | Source: SQLServerCentral.com | Category: Performance Tuning
Rating: |  Discuss |  Briefcase | 38,835 reads

Five Realtime DTS Examples

SQL Server 2005 includes an amazing ETL environment in Integration Services, but many DBAs will be using DTS and SQL Server 2000 for years to come. Jambu Krishnamurthy brings us a few handy examples of how you can customize your DTS environment.   Read more...
By Jambu Krishnamurthy 2007/03/22 | Source: SQLServerCentral.com | Category: DTS
Rating: |  Discuss |  Briefcase | 13,791 reads

Capturing Missing Information From SQL Profiler

While SQL Server's Profiler is a great tool, it can be hard to work with and we can easily miss information in the results. New author Solomon Rutzky brings us a short article that can help you to better configure your traces to get the information you need.   Read more...
By Solomon Rutzky 2007/09/06 | Source: SQLServerCentral.com | Category: Monitoring
Rating: |  Discuss |  Briefcase | 6,244 reads