Skip to content

Instantly share code, notes, and snippets.

@max-mulawa
Created April 21, 2011 12:00
Show Gist options
  • Save max-mulawa/934316 to your computer and use it in GitHub Desktop.
Save max-mulawa/934316 to your computer and use it in GitHub Desktop.
CLRTriggers 1
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