Hi All,
What is best way to identify which process or SSIS Packages loading data to a destination table?
My idea is to put SSIS package name into each of the table So that when someone queries tables, can easily find out package or process name in that table.
How other people implement and manage such metadata..?
[EMPLOYEE_KEY] [int] IDENTITY(1,1) NOT NULL,
[EMPLOYEE_ID] INT NOT NULL,
[EMPLOYEE_NAME] [varchar](250) NOT NULL,
[COMMENTS] [varchar](250) NULL,
[LOAD_DT] [datetime] NOT NULL DEFAULT Getdate(),
[PACKAGE_NAME] [varchar](400) NOT NULL
) ON [PRIMARY]
Populate column [PACKAGE_NAME] using SSIS System Variable: @[System::PackageName]
Would love to her other options and ideas?
Thanks Shiven:) If Answer is Helpful, Please Vote