Results 1 to 4 of 4
-
06-06-2012, 05:47 AM #1Newcomer
- Join Date
- Aug 2011
- Posts
- 17
- Thanks
- 0
- Thanked 0 Times in 0 Posts
MSSQL log backup Capacity Planning
Hi,
I'm trying to produce a report for all SQL servers backup up with TDP, which should include the space reserves available for each DB, in case of a TSM disaster/failure.
In other words, I need to know for each of the Databases its average use of transaction logs, so that I can calculate how long that DB could run, staying in Full Recovery mode while the TSM backup is unavailable, considering its current disk space and limits.
Does anyone know a relevant SQL command or tool to see statistics of this sort, in order to understand how much transaction logs does a DB create every day on average?
Thanks,
-
06-06-2012, 08:21 AM #2Senior Member
- Join Date
- Apr 2007
- Location
- Oslo, Norway
- Posts
- 241
- Thanks
- 2
- Thanked 17 Times in 17 Posts
This will give you a time range and bytes transferred. The actual log size on the sql server may be larger. If possible, allow for 2-3 days of logdata on the sql server.Code:select START_TIME,bytes from summary where entity='SQLTDP' and schedule_name='YourLogSchedulename'
Last edited by Trident; 06-06-2012 at 08:22 AM. Reason: Typo
-= Trident =-
-
06-17-2012, 12:33 PM #3Newcomer
- Join Date
- Aug 2011
- Posts
- 17
- Thanks
- 0
- Thanked 0 Times in 0 Posts
-
06-19-2012, 12:26 AM #4Newcomer
- Join Date
- Aug 2011
- Posts
- 17
- Thanks
- 0
- Thanked 0 Times in 0 Posts
Well, tested the query and it looks like it's exactly what I need, thanks!
Now I'm just gonna write a script to wrap it in to and I'm ready to go.
Similar Threads
-
DB2 memory: capacity planning
By DanGiles in forum Capacity PlanningReplies: 0Last Post: 03-28-2011, 04:31 PM -
There Exists a "tool" or a "formula" to make Capacity Planning automatized?
By alexmarco in forum Capacity PlanningReplies: 7Last Post: 04-11-2008, 10:56 AM -
Library capacity planning
By smith_ja in forum Capacity PlanningReplies: 3Last Post: 02-20-2008, 10:49 PM -
Correct message about problems with capacity planning
By alexmarco in forum Capacity PlanningReplies: 0Last Post: 11-09-2007, 10:26 AM -
Enterprise Capacity Planning
By arivera140 in forum Capacity PlanningReplies: 3Last Post: 03-18-2004, 06:08 PM


Reply With Quote
