Viewing 4 posts - 1 through 4 (of 4 total)
The original question was how big is the db. this is answered by looking at how much space is allocated for that db, the maxsize filed in the sysfiles table.
if...
November 2, 2005 at 9:09 am
The following statement will give you the currently allocated size of a database:
SELECT [maxsize] AS 'pages', (CAST([maxsize] AS bigint) * 8192) AS 'bytes'
FROM dbo.sysfiles WITH (NOLOCK)
WHERE ([status] & 64)...
November 2, 2005 at 7:00 am
Of 25 sql servers that I manage in the healthcare industry, 5 of them exceed 1 Terabyte in size. The smallest server contains ~8.5 billion rows of data across 4 databases, and around...
December 15, 2004 at 7:23 am
These 'phantom connections' typically are connections from a DTS package. In some cases they appear to remain connected for some time after the actual connection has completed its work. If you...
July 1, 2004 at 7:02 am
Viewing 4 posts - 1 through 4 (of 4 total)