| How to
monitor database files sizes? |
|
Execute the following
Microsoft SQL Server T-SQL administration script in SSMS Query Editor to create a table as size log and deploy the insert script into SQL Server Agent for daily, weekly, etc. execution:
USE AdventureWorks
GO
CREATE TABLE DBFileSize (
DBFileSizeID INT IDENTITY ( 1 , 1 ) PRIMARY KEY,
[Date] DATETIME DEFAULT (getdate()),
Name VARCHAR(30),
FileID INT,
FileName VARCHAR(100),
FileGroup VARCHAR(50),
FileSize VARCHAR(20),
MaxSize VARCHAR(20),
Growth VARCHAR(20),
USAGE VARCHAR(15))
GO
INSERT DBFileSize
(Name,
FileID,
FileName,
FileGroup,
FileSize,
MaxSize,
Growth,
USAGE)
EXEC sp_helpfile
GO
SELECT *
FROM DbFileSize
GO
Related article:
How to track database file growth over a period of time?
|
| |
| SQLUSA.com
Home Page |
|
|
SQL Server Training at www.sqlusa.com.
SQL Server 2008 Video Training at www.sqlusa.com.
SQL Server 2005 Training Videos at www.sqlusa.com.
Microsoft SQL Server 2000 Training Videos at www.sqlusa.com.
|
FREE SQL & Business Intelligence / OLAP Short Videos on YOUTUBE.com |
|
Search SQLUSA FREE SQL Server Articles & FREE T-SQL Scripts |
Copyright 2005-2011, SMI Corp. All Rights Reserved.
SQL Server 2012 is a program product of Microsoft Corporation. SQL Server 2008 is a program product of Microsoft Corporation. SQL Server 2005 is a program product of Microsoft Corporation. SQL Server 2000 is a program product of Microsoft Corporation. |
|