[Home] [Help]
1344: l_exists VARCHAR2(1);
1345:
1346: cursor c_ParamSet is
1347: select 'Exists'
1348: from PSB_ENTITY_SET
1349: where (p_data_extract_id is null or data_extract_id = p_data_extract_id)
1350: and entity_set_id = p_parameter_set_id;
1351:
1352: cursor c_ConsSet is
1350: and entity_set_id = p_parameter_set_id;
1351:
1352: cursor c_ConsSet is
1353: select 'Exists'
1354: from PSB_ENTITY_SET
1355: where (p_data_extract_id is null or data_extract_id = p_data_extract_id)
1356: and entity_set_id = p_constraint_set_id;
1357:
1358: BEGIN