Hi,
I want to delete packages that are deployed to Catalog (SSISDB). I see lot of articles talk about deleting package from project in SSDT and publishing entire project.
I do not want to do that. Then google search showed following script
BEGIN TRAN
--SELECT *
DELETE [pkg]
FROM
[SSISDB].[internal].[projects] AS [proj] WITH (NOLOCK)
INNER JOIN
[SSISDB].[internal].[packages] AS [pkg] WITH (NOLOCK) ON
[pkg].[project_id] = [proj].[project_id]
WHERE
[proj].[name] = 'MyProject'
AND [pkg].[name] = 'MyPackage.dtsx'
-- COMMIT
-- ROLLBACK TRAN
What are the downstream effects of doing that? Not finding any information if we do this way. Does it leave any orphaned data or row in other tables. Does it affect anything else or any other packages or project
Please let me know your input.