Added missing attributes to enquiries table. git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2829 248e525c-4dfb-0310-94bc-949c084e9493
21 lines
494 B
SQL
21 lines
494 B
SQL
set wrap off
|
|
set linesize 100
|
|
set feedback off
|
|
set pagesize 0
|
|
set verify off
|
|
set TERMOUT off
|
|
|
|
SPOOL ytmpy.sql
|
|
SELECT cmd FROM (
|
|
SELECT 2 AS ord, 'alter table '||table_name||' enable constraint '||CONSTRAINT_name||';' AS cmd FROM user_constraints
|
|
WHERE constraint_type = 'R'
|
|
UNION
|
|
SELECT 1 , 'alter table '||table_name||' enable constraint '||CONSTRAINT_name||';'FROM user_constraints
|
|
WHERE constraint_type = 'P'
|
|
)
|
|
ORDER BY ord;
|
|
|
|
spool off
|
|
set termout on
|
|
@ytmpy.sql
|
|
exit |