Tell me more ×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.

I'm trying to restore one of my Amazon DRS SQL Server databases. Using SQL Server Management Studio, I can correct to my DRS database instance using the master account I created when creating the database instance. When I start restoring a given database I'm able to see all Full backups and transaction logs, but it gives me this error message when trying to restore

Failed to retrieve data for this request. (Microsoft.SqlServer.Management.Sdk.Sfc)

An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)

The EXECUTE permission was denied on the object 'xp_fileexist', database 'mssqlsystemresource', schema 'sys'. (Microsoft SQL Server, Error: 229)

I can restore a full database instance from AWS Management Console, but that is not what I want. I want to be able to restore a given database to a specific point-in-time and not restoring a whole new database instance. Also looks there isn't much information on how to restore to a specific point-in-time.

Thanks.

share|improve this question
Try scripting out the Restore command and then executing it from a query window. – RBarryYoung Dec 13 '12 at 16:34
@ marc_s, sure :-) – khaled Dec 13 '12 at 17:53
@RBarryYoung, Not even has rights to script. same message. – khaled Dec 13 '12 at 17:54
I'm looking at using RDS at the moment and I dont think what you want todo is supported. Have a look at the FAQ aws.amazon.com/rds/faqs/#23 -> Are you using the automatic backups or DB snapshots? – MarkPm Dec 14 '12 at 8:30

migrated from stackoverflow.com Dec 20 '12 at 8:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.