Created
April 21, 2011 12:00
-
-
Save max-mulawa/934316 to your computer and use it in GitHub Desktop.
CLRTriggers 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use master; | |
GO | |
CREATE DATABASE CLRDatabase; | |
GO | |
use CLRDatabase; | |
GO | |
CREATE TABLE dbo.Employee | |
( | |
FullName NVARCHAR(50) PRIMARY KEY NOT NULL, | |
City NVARCHAR(20) NOT NULL, | |
Country NVARCHAR(20) NOT NULL, | |
Email NVARCHAR(30) NOT NULL | |
) | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment