• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

clean database set for sql 2008 r2

Status
Not open for further replies.
Banned
Banned
Joined
Jun 5, 2013
Messages
104
Reaction score
52
could anyone please upload a clean kal_auth and kal_db database set for sql 2008 r2 please ?

i was using sql 2000 and i didnt back up my database to a .bak before i formated my pc and went to windows 7 and sql 2008 r2.

i found this post on a forum that gave an option to attach an sql 2000 db using this method


USE master;
GO
CREATE DATABASE kal_db ON PRIMARY
(FILENAME =
'C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Data\kal_db.mdf')
LOG ON (FILENAME =
'C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Data\kal_db_log.ldf')
FOR ATTACH;
GO



USE master;
GO
CREATE DATABASE kal_auth ON PRIMARY
(FILENAME =
'C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Data\kal_auth.mdf')
LOG ON (FILENAME =
'C:\Program Files\Microsoft SQL Server\MSSQL10_50.MSSQLSERVER\MSSQL\Data\kal_auth_log.ldf')
FOR ATTACH;
GO



but before doing this i would rather just have a proper clean database set specific for sql 2008.

thank you in advance ...
 
Status
Not open for further replies.
Back
Top