Skip to content

Instantly share code, notes, and snippets.

@GhostRJY
GhostRJY / Product.sql
Created February 4, 2025 21:19
Product Database
USE [master]
GO
/****** Object: Database [Product] Script Date: 04.02.2025 22:15:47 ******/
CREATE DATABASE [Product]
CONTAINMENT = NONE
ON PRIMARY
( NAME = N'Product', FILENAME = N'E:\DataBases\Product\Product.mdf' , SIZE = 8192KB , MAXSIZE = UNLIMITED, FILEGROWTH = 65536KB )
LOG ON
( NAME = N'Product_log', FILENAME = N'E:\DataBases\Product\Product_log.ldf' , SIZE = 8192KB , MAXSIZE = 2048GB , FILEGROWTH = 65536KB )
WITH CATALOG_COLLATION = DATABASE_DEFAULT, LEDGER = OFF