Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
CREATE TABLE [dbo].[Audit_IUD](
[ID] [int] IDENTITY(1,1) NOT NULL,
[PackageName] [varchar](100) NULL,
[TableName] [varchar](100) NULL,
[InsertRecordCount] [int] NULL,
[UpdateRecordCount] [int] NULL,
[DeleteCount] [int] NULL,
[PackageStartDateTime] [datetime] NOT NULL,
[PackageEndDateTime] [datetime] NOT NULL,
[DurationinSeconds] [int] NOT NULL)

What I have tried:

I am trying to add an execute sql task for the package beginning and ending but blocked how to declare the parameters to embedded
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900