Microsoft SQL Server 2012 has released RTM recently. No doubt that you're interested to learn new features of the new version. If so then it is useful to have the tutorials and sample databases installed on your server. You can get them using below links;
Tutorials here
Sample Databases here
Note that sample databases are just data files (No log file). You need to attach it to your server to create the databases. Use the following T-SQL script.
CREATE DATABASE AdventureWorks2012
ON (FILENAME = 'D:\SQL Server\DATA\AdventureWorks2012_Data.mdf')
FOR ATTACH_REBUILD_LOG
Enjoy with the new version of SQL Server.
No comments:
Post a Comment