Hi @Vernou ,
We can use the following sql query to get the execution result of child packages in SSMS.(Execution_result 0 (Success))
We need two tables: catalog.executable_statistics and catalog.executions (SSISDB Database).
Use SSISDB;
Select a.execution_id, a.folder_name, a.project_name, a.package_name, b.execution_path, b.start_time, b.end_time, b.execution_duration, b.execution_result
From [SSISDB].[internal].[executions] As a
Inner Join [SSISDB].[internal].[executable_statistics] As b
On (a.execution_id=b.execution_id)
ORDER BY a.execution_id DESC;
Best Regards,
Mona