Skip to content

Instantly share code, notes, and snippets.

@Siliconrob
Siliconrob / CreateTables.sql
Created June 23, 2017 05:44
SqlDependencyEx - TableListener Example
/****** Object: Table [dbo].[Table1] Script Date: 6/22/2017 10:42:23 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Table1](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Description] [nchar](10) NULL,