Advertisement
nostradamos

exercice 3

Nov 12th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.24 KB | None | 0 0
  1. CREATE DATABASE ISTA
  2. ON PRIMARY (
  3.     name="ISTADATA",
  4.     filename="E:\istadata.mdf",
  5.     SIZE=5 MB,
  6.     maxsize = 50 MB,
  7.     filegrowth=3%
  8.     )
  9. log ON (
  10.     name="ISTAlog",
  11.     filename="E:\istalog.ldf",
  12.     SIZE=2 MB,
  13.     maxsize = 15 MB,
  14.     filegrowth=1%
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement