Categories
Sql Server

How to create a database in sql server with Tsql

How to create a database in sql server with Tsql In this post we learn How to create a database in sql server with Tsql. In this script we define where to place files(MDF,LDF) about their size and auto-growth of the database file size.And also in which file-group the file should be placed. Script:- create database test onprimary( name=N’test’, filename=N’C:\Program […]