Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Timeout Expired" when restore a database using EM

Status
Not open for further replies.

gord2

Programmer
Jun 20, 2003
16
0
0
CA
I have a SQL 2000 server. I use enterprise manager to restore database.
I'm able to restore databases from SQL backup files when the backup file is small. However when I try to restore large databases (I have 3 databases with files size above 1 Gb) I get this "Timeout Expired" msg. The msg window's title is "Microsoft SQL-DMO (ODBC SQLState HYT00)".

How can I restore large databases?

Thanks in advance.

Gordon.
 
Try doing the restore through Query Analyser. You can get the full syntax from BOL under RESTORE DATABASE. The basic syntax is:
Code:
restore database {datebase_name} from disk='d:\path\to\restore\file.bak'

Denny

--Anything is possible. All it takes is a little research. (Me)

[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top