adplus-dvertising
frame-decoration

Question

Which of the code is valid for attaching the database?

a.

USE master;
GO
CREATE DATABASE MyAdventureWorks
ON (FILENAME = 'C:\MySQLServer\AdventureWorks2012_Data.mdf'),
(FILENAME = 'C:\MySQLServer\AdventureWorks2012_Log.ldf')
FOR ATTACH;
GO

b.

USE master;
GO
CREATE DATABASE MyAdventureWorks
ON (FILENAME = 'C:\MySQLServer\AdventureWorks2012_Data.mdf'),
(FILENAME = 'C:\MySQLServer\AdventureWorks2012_Log.ldf')
TO ATTACH;
GO

c.

USE master;
GO
CREATE DATABASE MyAdventureWorks
ON (FILENAME = 'C:\MySQLServer\AdventureWorks2012_Data.mdf'),
(FILENAME = 'C:\MySQLServer\AdventureWorks2012_Log.ldf')
FOR ATTACH_DB;
GO

d.

None of the mentioned

Answer: (a).USE master;
GO
CREATE DATABASE MyAdventureWorks
ON (FILENAME = 'C:\MySQLServer\AdventureWorks2012_Data.mdf'),
(FILENAME = 'C:\MySQLServer\AdventureWorks2012_Log.ldf')
FOR ATTACH;
GO

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the code is valid for attaching the database?

Similar Questions

Discover Related MCQs

Q. Which of the syntax is used for creating database snapshot in SQL Server?

Q. Point out the correct statement.

Q. Which of the following scenario prefers not to use database snapshots?

Q. Which of the following code will DROP an existing snapshot before creating new?

Q. Point out the wrong statement.

Q. Which of the following code will throw error?

Q. To revert the database, which of the following Transact-SQL statement is used?

Q. Which of the following message comes when you try to update or delete the data snapshot?

Q. Syntax for creating database snapshot in SQL Server is _______________

Q. What should be done to check to see if data still exists in the Snapshot?

Q. Which of the following is the instance of SQL Server that is your production server in log shipping?

Q. Point out the correct statement.

Q. In which of the following modes, the database is read-only?

Q. Which of the following script can check the database recovery model by querying sys.databases for log shipping?

Q. Point out the wrong statement.

Q. Which of the following stored procedure is used to add a primary database on primary server?

Q. Execute sp_add_jobschedule to add a schedule for the backup job on _________ server.

Q. Which of the following is correct syntax for sp_add_log_shipping_secondary_primary?

Q. Which of the following table stores history detail for log shipping jobs?

Q. _____________ maps primary databases to secondary databases in log shipping.