split des requetes 1 par fichier

This commit is contained in:
Yacine31
2023-12-15 18:01:57 +01:00
parent f8b5fa8974
commit b9a21f055c
18 changed files with 153 additions and 158 deletions

View File

@@ -1,19 +1,16 @@
prompt <h2>Database supplemental logging :</h2>
col data_mining for a15
col data_pkey for a15
col data_uniq_key for a15
col data_fk for a15
col data_all for a15
col data_pl for a15
col force_logging for a15
SELECT
force_logging,
supplemental_log_data_min data_mining,
supplemental_log_data_pk data_pkey,
supplemental_log_data_ui data_uniq_key,
supplemental_log_data_fk data_fk,
supplemental_log_data_all data_all,
supplemental_log_data_pl data_pl
FROM v$database;
select 'force_logging' as property, force_logging as value from v$database
union all
select 'supplemental_log_data_min' as property, supplemental_log_data_min as value from v$database
union all
select 'supplemental_log_data_pk' as property, supplemental_log_data_pk as value from v$database
union all
select 'supplemental_log_data_ui' as property, supplemental_log_data_ui as value from v$database
union all
select 'supplemental_log_data_fk' as property, supplemental_log_data_fk as value from v$database
union all
select 'supplemental_log_data_all' as property, supplemental_log_data_all as value from v$database
union all
select 'supplemental_log_data_pl' as property, supplemental_log_data_pl as value from v$database