4
votes
Database Backup/Restore Process
The key part of your question is the ability for the backup solution to be managed by a non-DBA. Any native SQL Server answer like backup scripts isn't going to meet that need, because backup scri …
6
votes
Can an MS SQL 2005 backup be restored onto an instance of MS SQL 2008?
Yes, but make sure that ALL of your servers are SQL 2008. If you have development, test, QA or disaster recovery servers, all of them will need to be 2008, since 2005 servers won't be able to rest …
6
votes
Restoring a Backup to a different Server - User Permissions
The easiest way to do this is with Microsoft's sp_help _revlogin (had to put a space in there to fool the formatting), a stored procedure that scripts all SQL Server logins, defaults and passwords, …
1
vote
How would a SQL Server 2005 database lose a few days data?
This isn't the answer you want to hear, but in a nutshell, SQL Server doesn't "lose" data. Someone deleted it. If you had the database in full recovery mode, you could use a product like Quest Li …
1
vote
database mirroring/replication, SQL Server 2005
Your confusion is common - there's a lot of ways to do disaster recovery planning with SQL Server. I've recorded a …
1
vote
Dynamic filename for SQL Server backups?
Here's what you really want to know - don't reinvent the wheel. Here's a fantastic script to automate backups that does what you're describing:
…
2
votes
Backing up SQL Database for Reports
Log shipping is a great solution for this. We've got articles about it over at SQLServerPedia's Log Shipping section, and …
