This is how I pull record counts for every user table in a DB... some of my tables are very large and this works for table with our without index very fast.
2007-10-02 (first published: 2002-06-20)
15,448 reads
Mark-443607, 2007-09-20 (first published: 2007-05-24)
This is how I pull record counts for every user table in a DB... some of my tables are very large and this works for table with our without index very fast.
SELECT o.name TableName ,i.rows TblRowCount FROM sysobjects o INNER JOIN sysindexes i ON (o.id = i.id) WHERE o.xtype = 'u' AND i.indid < 2
2007-10-02 (first published: 2002-06-20)
15,448 reads
I have always read that 8060 bytes is the maximum size. This is stated over and over again in Books Online, the MS site and numerous other sites, including this one. However a post in our forum recently questioned this. I decided to verify the problem and do a little research.
2007-10-02 (first published: 2002-02-07)
37,393 reads
The User_Defined_Functions.exe file contains the User-Defined Functions white paper. The User-Defined functions white paper outlines the characteristics of the new user-defined function (UDF) feature that is introduced in Microsoft SQL Server 2000. The white paper also summarizes how you can create your own Transact-SQL functions to extend the programmability of Transact-SQL.
The following stored procedure will demonstrate the use of cursor metadata. Using cursor metadata we can get information about an SQL statement and use that information to dynamically generate other code such as HTML or other stored procedures.
2001-07-27
5,198 reads
ne of the issues you face when building Web applications is handling the errors you encounter when interacting with a back-end database. I was recently working with someone to create a new Web site with SQL Server™, ActiveX® Data Objects (ADO), and ASP. Lots of little things came up that I thought were worth sharing with MIND readers, so I'll focus this column on what I learned from this experience and the solutions to many of the problems I faced.
2001-07-13
1,579 reads