Answer by WilliamD
You can find the information in the DMV `sys.dm_os_performance_counters` A brilliant example of usage can be found on [Jonathan Kehayias' Blog][1] You could then build some logic in t-sql to process...
View ArticleAnswer by Hariharan
DBCC SQLPERF(LOGSPACE) This will return the logfile size in percentage then shrink the logfile based on your wish before shrinking try to truncate your log file which may resolve the issue using BACKUP...
View ArticleAnswer by WilliamD
You can find the information in the DMV `sys.dm_os_performance_counters` A brilliant example of usage can be found on [Jonathan Kehayias' Blog][1] You could then build some logic in t-sql to process...
View ArticleAnswer by Hariharan
DBCC SQLPERF(LOGSPACE) This will return the logfile size in percentage then shrink the logfile based on your wish before shrinking try to truncate your log file which may resolve the issue using BACKUP...
View Article