Viewing post 1 (of 1 total)
Prasad Bhogadi (4/8/2008)USE [master]GOCREATE DATABASE [test] ON( FILENAME = N'c:\temp\test.mdf' ),( FILENAME = N'c:\temp\test.ldf' ) FOR ATTACH ;GOShould work for Attaching a db.
Prasad Bhogadi (4/8/2008)
GO
CREATE DATABASE [test] ON
( FILENAME = N'c:\temp\test.mdf' ),
( FILENAME = N'c:\temp\test.ldf' )
FOR ATTACH ;
Should work for Attaching a db.
Thanks Prasad
sorry for being simple but what...
April 9, 2008 at 1:18 am
#800194