Monday, 17 August 2009

SET NOCOUNT ON

SET IDENTITY_INSERT [dbo].[tblEcommunicationsEmailTemplates] ON
GO


PRINT 'Inserting values into [tblEcommunicationsEmailTemplates]'
INSERT INTO (ID) VALUES(2)

PRINT 'Done'

SET IDENTITY_INSERT [dbo].[tblEcommunicationsEmailTemplates] OFF
GO
SET NOCOUNT OFF