Altered install scripts so that UAT and LIVE do not look for the apua.ctl file (this is now handled in seed data directory). Also fixed for ticket #517 AssociateSchema.sql and SetSubstitution.sql scripts so that they only update the current application rather than all the applications in the current workspace.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@5332 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
PriestJ
2008-06-17 15:17:02 +00:00
parent 64f595780b
commit e1ec77e9f9
4 changed files with 2 additions and 6 deletions

View File

@@ -9,8 +9,6 @@ sqlldr %1 control=prty
sqlldr %1 control=parl
sqlldr %1 control=apau
sqlplus %1 @create_passwords
goto :done

View File

@@ -9,8 +9,6 @@ sqlldr %1 control=prty
sqlldr %1 control=parl
sqlldr %1 control=apau
sqlplus %1 @create_passwords
goto :done

View File

@@ -48,7 +48,7 @@ BEGIN
UPDATE flows_030100.wwv_flows w
SET w.owner = l_schema
WHERE security_group_id = l_sgid;
WHERE security_group_id = l_sgid and id = l_flow_id;
ELSE

View File

@@ -43,7 +43,7 @@ BEGIN
UPDATE flows_030100.wwv_flows w
SET w.substitution_value_01 = l_substitution
WHERE security_group_id = l_sgid;
WHERE security_group_id = l_sgid and id = l_flow_id;
dbms_output.put_line('SetSubstitution:'||l_substitution);