Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 is it possible if i want to read the backup data

Author  Topic 

arifliminto86
Starting Member

7 Posts

Posted - 2008-01-28 : 20:34:27
hi all
right now , i am still learning how to use sql2005

is it possible if i want to read the backup data without restoring the backup database.? if it possible can you show me how to do it



cheers Arif

arifliminto86

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-01-28 : 21:23:08
No you can't.
Go to Top of Page

arifliminto86
Starting Member

7 Posts

Posted - 2008-01-28 : 21:39:32
anyway there is a way how to “peek” into a database backup without actually restoring it right?

it somewhere in RESTORE DATABASE SYNTAX but i dont understand which syntax is it?

arifliminto86
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-01-28 : 21:46:36
It's not possible. See rmiao's post.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-01-28 : 21:48:36
You can find how many backups in the file with 'restore headeronly', find source db files with 'restore filelistonly', but can't read data in any table.
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2008-01-29 : 04:08:26
quote:
Originally posted by arifliminto86

anyway there is a way how to “peek” into a database backup without actually restoring it right?

it somewhere in RESTORE DATABASE SYNTAX but i dont understand which syntax is it?

arifliminto86


Why do you want to read data from backup file without restoring it?

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

ratheeshknair
Posting Yak Master

129 Posts

Posted - 2008-01-29 : 05:44:29
Its not possible in SQL but in oracle you can open the dump without restoring.

RKNAIR
Go to Top of Page
   

- Advertisement -