added files from swmgmt03

This commit is contained in:
Schork Thierry (Galenica - ADM)
2025-09-22 09:00:00 +02:00
parent de97031b1e
commit 63d058a7eb
67 changed files with 13300 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
declare @tblList table(tblname varchar(222) null)
insert into @tblList
SELECT DBACTT_table_name
FROM dbo.DBA_change_tracking_template
;
select t.TABLE_SCHEMA, t.TABLE_NAME
from INFORMATION_SCHEMA.TABLES t
join @tblList s on s.tblname = t.TABLE_NAME
order by TABLE_SCHEMA, TABLE_NAME