HI,
I want to save SSIS package execution status(Success or failure) in log table which i created in SQL database.I am getting other fields which i want but i am not getting final execution status If any one have idea then please guide me..
Table Scripts-
CREATE TABLE [dbo].[PackageExecutelog]([ID] [int] IDENTITY(1,1) NOT NULL,
[PackageID] [nvarchar](100) NULL,
[ChildPackageID] [numeric](18, 0) NULL,
[PackageName] [nvarchar](100) NULL,
[StartTime] [datetime] NULL,
[Source] [nvarchar](100) NULL,
[Destination] [nvarchar](100) NULL,
[SourceRowCount] [numeric](10, 0) NULL,
[MatchedRowCount] [numeric](10, 0) NULL,
[UnMatchedRowCount] [numeric](10, 0) NULL,
[Status] [nvarchar](100) NULL
) ON [PRIMARY]
Regards,
Sagar
Please use Marked as Answer if my post solved your problem and use Vote As Helpful if a post was useful.