Viewing 15 posts - 916 through 930 (of 994 total)
Yes, you can do it using sqlcmd.
Inside the script, you use the following syntax (an example from setting up database mirroring using such a script)
:SETVAR PrincipalServer (local)\SQLDev01
:SETVAR MirrorServer (local)\SQLDev02
:SETVAR WitnessServer...
October 10, 2007 at 1:43 pm
Why do you keep going on about SQL Log Rescue? There is no log recovery tool on the market that copes with everything in the SS2005 transaction log.
What are you...
October 9, 2007 at 11:34 pm
Very interesting - and who do you work for? Looks a bit like advertizing to me.
I've seen many of these come and go while in the SQL team - rarely...
October 9, 2007 at 11:31 pm
ok - so you can either take (and continue to take) log backups and stay in full recovery mode, or you can change modes and run a dbcc shrinkfile on...
October 9, 2007 at 9:21 pm
Take a look at this blog post I wrote on just this problem - it'll tel lyou the options and how to go about them - http://www.sqlskills.com/blogs/paul/2007/09/24/SearchEngineQA1RunningOutOfTransactionLogSpace.aspx
October 9, 2007 at 8:43 pm
SQL Server 2005 doesn't recommend using REPAIR_FAST... I removed the REPAIR_FAST functionality when I rewrote DBCC CHECKDB for SS2005. If you look in Books Online you'll see that the option...
October 9, 2007 at 8:41 pm
I threw together a quick list on my old blog at http://blogs.msdn.com/sqlserverstorageengine/archive/2007/04/30/very-quick-list-of-vldb-maintenance-best-practices.aspx.
Primary in my mind would be making sure you have the ability to recover in a disaster - both...
October 9, 2007 at 8:38 pm
Minaz - your advice would be correct if Nicola was running SS 2000 but she's on SS 2005, so page checksums and SQLIOSim are the way to go.
October 8, 2007 at 8:46 am
Yeah - I just wanted to point Nicola right to what I would do first.
October 5, 2007 at 5:27 pm
Given that the corruption problems keep happening after they fixed it by restoring from a backup, I'd guess you have a hardware issue. Even though the hardware checks out -...
October 5, 2007 at 3:57 pm
Interesting - did you get any helpful messages in the error log or just the usual one about insufficient resources or inaccessible files?
October 4, 2007 at 8:47 am
One more thing to bear in mind is that a log reader's undo functionality will only work as long as the reason you're going back in time is not physical...
October 4, 2007 at 8:44 am
As long as your transaction log is not corrupted, you should be able to do a point in time restore to just before the corruption occurs.
In a nutshell, here's what...
September 27, 2007 at 10:05 am
Is your database attached still or not?
If so, you'll need to build a new transaction log. See my advice in previous thread I replied to.
If not, you'll need to use...
September 27, 2007 at 9:54 am
If you've lost the .ldf file and all you have is a backup from 15 days ago, you have two options:
1) restore the 15-day old backup and lose the last...
September 27, 2007 at 9:51 am
Viewing 15 posts - 916 through 930 (of 994 total)