Viewing 14 posts - 46 through 59 (of 59 total)
Check out this thread:
http://www.sqlservercentral.com/Forums/Topic478154-24-1.aspx
This gives the backups and the sizes. Looks like it's what you need.
May 13, 2008 at 2:02 pm
Hi Ola.
For each transaction into SQL Server 2005, my (admittedly naive) understanding of the process is that SQL will:
1. pull pages that needs to be modified into the buffer cache
2....
May 13, 2008 at 12:11 pm
This is an auditing database so it has to run 24x7 with a low exposure to work loss.
Hmm... I think your test is good but tough to prove out...
May 13, 2008 at 10:42 am
I thought that was true for SQL Server 2000 but not 2005?
Check out this table:
http://msdn.microsoft.com/en-us/library/ms189315.aspx
From this I gather that the two run concurrently. I could be misunderstanding this though.
The...
May 13, 2008 at 9:53 am
I'm not sure I understand your request entirely. Are you looking for a script to create the TSQL commands for you to use elsewhere or are you looking for a...
May 13, 2008 at 9:49 am
Networking group confirmed there was some switch maintenance happening during those times.
Still... some of those messages from SQL are a bit alarming.
May 12, 2008 at 8:48 am
Ironically, I found this doing QotD and it answers some of my questions:
May 9, 2008 at 9:08 am
Also, after you delete (or add) files: MAKE SURE you take a full backup of the db before you take any tran log or differential backups:
http://msdn.microsoft.com/en-us/library/aa933089(SQL.80).aspx
May 9, 2008 at 8:10 am
I had to move tempdb files last week. I don't remember the exact error but I couldn't get SQL to start. Finally I figured out that the right service didn't...
May 9, 2008 at 8:05 am
Steve Jones - Editor (5/8/2008)
1. DO NOT SHRINK - causes fragmentation. Set the sizes you need and do not use the shrink except for one offs if something grows crazily.
Agree...
May 9, 2008 at 7:18 am
I'd take the shrink out of the plans. Unless you purge a lot of data out of those DBs, shrinking will do more harm than good. SQL will grow files...
May 8, 2008 at 11:57 am
Figured out the problem.
Changed:
@wrkStatement = @curr_db + '.dbo.sp_executesql'
To:
@wrkStatement = '['+@curr_db + '].dbo.sp_executesql'
- AND -
Changed:
FROM ' + @curr_db + '.dbo.sysfiles a'
To:
FROM [' + @curr_db + '].dbo.sysfiles a'
The [] around the...
May 7, 2008 at 12:48 pm
Definitely. I tested it on several servers. It works on most. On one it gives me the linked server error. On another it gives me this:
Msg 102, Level 15, State...
May 7, 2008 at 12:42 pm
Viewing 14 posts - 46 through 59 (of 59 total)