SQL Server 2000 Useful Undocumented Stored Procedures
In this article, Alexander Chigrik looks at some useful undocumented stored procedures that shipped with SQL Server 2000.
2008-10-17 (first published: 2001-10-08)
30,217 reads
In this article, Alexander Chigrik looks at some useful undocumented stored procedures that shipped with SQL Server 2000.
2008-10-17 (first published: 2001-10-08)
30,217 reads
This article examines how index statistics are used in SQL Server 6.5
2002-02-08
203 reads
Alxander Chigrik presents some useful User Defined Functions you can add to your SQL Server.
2001-12-19
8,629 reads
Alexander Chigriks decodes some SQL Server 2000 Undocumented System Tables.
2001-11-21
9,999 reads
A few stored procedures that are not documented in SQL Server 7.0, but may come in handy for DBAs
2001-11-07
7,973 reads
This article examines how index statistics are used in SQL Server 6.5
2001-10-30
3,302 reads
This article looks at some of the undocumented DBCC commands that exist in SQL Server 7.0
2001-10-22
7,469 reads
Alexander Chigrik presents a few UDFs he has developed for getting meta data about your database objects.
2001-10-17
4,093 reads
2001-10-12
3,571 reads
Alexander Chigrik presents a few Math UDFs he has developed for common functions.
2001-10-09
6,012 reads
By Steve Jones
I was asked about state-based deployments in Flyway Teams, so I decided to show...
By Steve Jones
The main thing is to keep the main thing the main thing. – from...
When Covid took out the PASS organization, I had someone say to me, “Well,...
Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...
SQL FCI Instance certificates I have a client who has a requirement for certificates...
I'm attempting to set up log shipping from SQL Server 2005 Standard to SQL...
What do these two selects return?
SELECT BIT_COUNT (CAST (-1 as smallint)) , BIT_COUNT (CAST (-1 as bigint))See possible answers