Forum Replies Created

Viewing 15 posts - 196 through 210 (of 508 total)

  • RE: Restarting SQL Server every night

    there are scripts here that will issue a kill command and that will remove any connections from users on the server then you can issue dbcc statements that will flush...

  • RE: central management server

    In BOL search for master you will see master server and slave server setups. This has a very limited use. It will allow you to schedule one job on a...

  • RE: Integrity check error

    if that doesnt work you will have to do a dbcc checkdb repair with allow data loss to fix it. You may want to DTS the data out of the...

  • RE: Device error or device off-line

    I would also check to see if your backup dump file is on a network share, that can also cause problems if the network becomes unavailable or if the server...

  • RE: Restarting SQL Server every night

    You can also kill all active threads flush caches to free up memory inside the SQL Server memory space. I would avoid stopping and starting SQL for one simple reason, tempdb...

  • RE: Delfi ebusiness sqlServer application

    Ether break up the 100,000,000 record tables into a partitioned view or create new files and filegroups and rebuild the tables on to them to split up the I/O accross more...

  • RE: Backup operation teminating abnormally

    It looks like you may be backing up over the network?? Usually if it fails to write to the backup it is because another process is locking the backup file...

  • RE: Log Shippping Backup Error

    Well, to be honest with you I don't have a clue. Personally I quit using the supplied log shipping a long time ago and only emplement custom log shipping. I...

  • RE: SQl Server 2000, Virtual Servers and Collation Settings

    Full text search is seprate from the SQL instance if you install it once it is available to all instances. You can set the collation on a per database basis...

  • RE: Log Shipping - The saga continues!

    You will have to reinitalize your log shipping apply the last full diffs and tlogs to get you current and extend your retention time. Personally, I don't use MS log...

  • RE: Index or not? Database with millions of rows

    I would index this as a single clustered index. It will have a high degree of selectivity and perform quite well. A previous post is correct clustered index leaf contains...

  • RE: Database (Suspect)

    You may want to look up how to set a database in emergency mode. If you can attach the database datafiles then set the database to emergency mode and bypass...

  • RE: Need to backup/restore to seperate server

    I backup to a UNC to keep backups live on site for up to a week. We use a mix of SQL Litespeed and normal sql backups depending on the...

  • RE: Hardware explanation for dummies

    http://www.howstuffworks.com is a good low level on how things work including RAID and hard disks.

  • RE: SQL/RAID

    I agree if you are front loaded on writes raid 0+1 is the way to go. At 14 drives configured raid 0 I would expect you could hit the limit...

Viewing 15 posts - 196 through 210 (of 508 total)