> Since you are testing restore, I assume that you have some degree of responsibility for restore. I'm
> saying this just se we agree on the bar here: You are familiar with both database as well as log
[quoted text clipped - 34 lines]
> >> >
> >> > Chris
Since you say "management console" I assume we are talking about SQL Server 2000. Yes, the GUI (MMC)
is only a GUI which construct and execute your TSQL commands. Here are bare-bone examples of the
RESTORE commands:
RESTORE DATABASE db FROM DISK = 'C:\db.bak'
WITH
MOVE 'db' TO 'C:\db.mdf'
,MOVE 'db_log' TO 'C:\db_log.ldf'
,NORECOVERY
RESTORE LOG db FROM DISK = 'C:\db_log1.trn'
WITH
,NORECOVERY
RESTORE LOG db FROM DISK = 'C:\db_log2.trn'
WITH
,RECOVERY
To restore from the GUI, right-click the databases folder and select "Restore" in here, select "From
device" and specify the options for your first backup file to restore. Make sure you select
NORECOVERY and new filenames for the database files. Then repeat for the two log restores. I suggest
you use the TSQL commands instead - much easier....

Signature
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
> Hi all,
>
[quoted text clipped - 46 lines]
>> >> >
>> >> > Chris
Chris - 01 Jul 2008 16:40 GMT
Tibor,
That's great. I had added the files in like this but wanted to confirm
before I click OK ad go for it. Great stuff!
Chris
> Since you say "management console" I assume we are talking about SQL Server 2000. Yes, the GUI (MMC)
> is only a GUI which construct and execute your TSQL commands. Here are bare-bone examples of the
[quoted text clipped - 69 lines]
> >> >> >
> >> >> > Chris