Viewing 15 posts - 1,291 through 1,305 (of 1,539 total)
i'd suggest u use standby mode always, u'll be able to use the database of ur secondary server... In norecovery mode, your db wont be available until you put...
January 19, 2009 at 7:50 am
January 19, 2009 at 7:25 am
andy.brown (1/19/2009)
Setup is SQL2000, Full recovery model, complete backup every Saturday morning, transaction log backups...
January 19, 2009 at 7:19 am
Aditya (1/19/2009)
I think we cannot truncate transaction logs until log reader agent moves the transactions to teh subscriber
to the distribution database to be more specific.
January 19, 2009 at 5:28 am
Gaurav (1/8/2009)
January 18, 2009 at 9:30 pm
If your partitioned tables exist in different file/filegroup, you may want to take file/filegroup backups containing last 2 years data.
January 18, 2009 at 9:00 pm
use ISNULL
select isnull(people.last,'') + ',' +isnull(people.first,'') + ', ' + isnull(address.street ,'')+ ', ' + isnull(address.city,'') + ', ' + isnull(address.zipcode,'') as info
January 15, 2009 at 8:12 am
Case will not look for succeeding WHEN clauses once any of the WHEN clauses satisfies to true.
you may want to write multiple Case statements with different sequence of WHEN clauses...
January 13, 2009 at 9:56 am
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=98337
this link has similar issue reported and suggests restarting the server resolved the issue. can u try that out?
January 13, 2009 at 9:51 am
Hard Disk speed - read/write speed on the hard disk (depends on RPM, number of heads, spindles)
CPU speed - your processor's speed (measured in Ghz)
HDD speed matters as you'd do...
January 13, 2009 at 1:19 am
you can disable the referential integrity constraints, move all data from other database and then enable the constraint.
January 13, 2009 at 12:37 am
You will need to take the tail log backup (if you are able to take) of the primary database, copy this log backup on the secondary database. Restore this log...
January 3, 2009 at 12:44 am
You are welcome :).
January 3, 2009 at 12:18 am
Viewing 15 posts - 1,291 through 1,305 (of 1,539 total)