Changes to schema and code to place 'id' as PK field in quote_events and enquiry_events as part of ticket #78.
Changed BULK_LOAD.xls to have two tabs to represent costs. Also includes QMAX against module - none of these changes are represented in the current code. git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3480 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
Binary file not shown.
26
Data/BulkLoad/bulk_load.sql
Normal file
26
Data/BulkLoad/bulk_load.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
DECLARE
|
||||
l_test_load BOOLEAN := upper('&&1') = 'TEST';
|
||||
l_fat_load BOOLEAN := upper('&&1') = 'FAT';
|
||||
l_dev_load BOOLEAN := upper(nvl('&&1','DEV')) = 'DEV';
|
||||
|
||||
BEGIN
|
||||
|
||||
IF l_test_load THEN
|
||||
mip_bulk_load.g_flow_id := 102;
|
||||
ELSIF l_fat_load THEN
|
||||
mip_bulk_load.g_flow_id := 200;
|
||||
ELSIF l_dev_load THEN
|
||||
mip_bulk_load.g_flow_id := 200;
|
||||
END IF;
|
||||
|
||||
IF mip_bulk_load.g_flow_id IS NOT NULL THEN
|
||||
mip_bulk_load.load_all;
|
||||
mip_bulk_load.report_err;
|
||||
ELSE
|
||||
dbms_output.put_line('Run bulk_load: Unexpected parameter value of &&1 received');
|
||||
END IF;
|
||||
|
||||
END;
|
||||
/
|
||||
exit
|
||||
/
|
||||
Reference in New Issue
Block a user