Call now: (800) 766-1884  


 Home


SQL Server Tips
SQL Server Training

SQL Server Consulting
SQL Server Support

Articles
Services
SQL Server Scripts
Scripts Menu



 

 

 

 
 

SQL Server script for log expand


SQL Server Tips by Burleson Consulting
 

***************************************************************
-- log_expand.sql
***************************************************************
While a simple query is not available to determine if data files are expanding,
the following query can be used to check on any dynamic log file extensions:
select
dbname = instance_name,
log_growths = cntr_value
from 
master..sysperfinfo
See code depot for full script
where
counter_name = 'Log Growths' and
object_name = 'SQLServer:Databases' and
instance_name <> '_Total'
order by
1


 

 

 

image


 

 


 

 

 

 

Note: The pages on this site were created as a support and training reference for use by our staff of DBA consultants.  If you find it confusing, please exit this page.

Errata?  SQL Server technology is changing and we strive to update our SQL Server support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:and include the URL for the page.
 


Burleson Consulting
SQL Server database support

 

Copyright © 1996 -  2006 by Burleson Enterprises, Inc. All rights reserved.

Hit Counter