Hey LJ... thanks for answering so fast! I tried the run sql in macro and the text is too long... here is an example of what I am trying to do:
INSERT INTO T_SC_CRITERIA ( SUPPLIER_TYPE, CRITERIA_ID, MEASURE, CATEGORY, MIN_MEASURE, MAX_MEASURE, WEIGHT, POINTS, ENTITY, CHANGE_DATE, RACF_ID, ACTIVE_FLAG ) VALUES ( NULL, 4202, 'FINANCIAL STRESS PERCENTILE', 'INTERNAL PROCESSES', 1, 41, NULL, 2, 'ALL', NULL, NULL, 'Y');
INSERT INTO T_SC_CRITERIA ( SUPPLIER_TYPE, CRITERIA_ID, MEASURE, CATEGORY, MIN_MEASURE, MAX_MEASURE, WEIGHT, POINTS, ENTITY, CHANGE_DATE, RACF_ID, ACTIVE_FLAG ) VALUES ( NULL, 4203, 'FINANCIAL STRESS PERCENTILE', 'INTERNAL PROCESSES', 0, 0, NULL, 0, 'ALL', NULL, NULL, 'Y');
I have about 30 of these types of statements for about six different tables... so I am copying and pasting and running the queries.. (tedious)
If I could put all the statements in one query and keep commenting out the ones below the one I'm trying to run, it would go a lot faster.