Technical Article

Display Rows/Space Used by all user tables

This procedure will display the rows, reserved, data, index and unused space used in KB for all user tables in the database.  The idea is to call sp_spaceused repeatedly.  Limitation: certain versions of sp_spaceused will truncate the table name to 20 characters.Speed will depend on current activity level and locking in the database.  It will […]

You rated this post out of 5. Change rating

2002-03-14

397 reads

Blogs

Mistakes IT Shops Without a DBA Make

By

We get it. There’s no budget for a DBA on staff, or even a...

A New Word: Waldosia

By

waldosia– n.  a condition in which you keep scanning faces in a crowd looking...

Deploy at Low Priority

By

Learn how to deploy schema changes in an always-online SQL Server environment without a...

Read the latest Blogs

Forums

Dynamic T-SQL Script Parameterization Using Python

By omu

Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...

Log Shipping of Production DBs in OffSite Disconnected Environment

By Humbl3Lrnr

Hi, We have some Windows Workstations Standalone and in Workgroup, and they all have...

Stored procedure - Delay validation

By Pete Bishop

  I have a utility stored procedure of the form: CREATE PROCEDURE [dbo].[sp_Utility] @rule...

Visit the forum

Question of the Day

Counting Bits IV

What does this code return in SQL Server 2022+?

select bit_count(2.4)
 

See possible answers