SELECT /*+ PARALLEL(aae,4) */ DISTINCT nvl(aae.voucher_group_id,-1) voucher_group_id,
aae.nominal_transaction_amount unit_price,
aae.original_currency_type currency_type,
aae.segmentation_id
FROM air_account_events aae
WHERE aae.time_hour_id >= m_start_thid
AND aae.time_hour_id < m_end_thid
AND aae.nominal_transaction_amount is not null
MINUS
SELECT vg.voucher_group_id,
vg.unit_price,
vg.currency_type,
vg.segmentation_id
FROM wh_voucher_groups_dim vg) ahm
ON (whm.voucher_group_id = ahm.voucher_group_id AND whm.unit_price = ahm.unit_price
AND whm.currency_type = ahm.currency_type AND whm.segmentation_id=ahm.segmentation_id) ahm
When i run the following PL/SQL there is an error as
FROM wh_voucher_groups_dim vg) ahm
*
ERROR at line 14: ORA-00933: SQL command not properly ended
Can u pls guide where is a error and pls also guide to change
whmbut you have nowhmalias, a left parenthesis is missing (somewhere!), you haveONwithout anyJOIN, etc. I guess this was a working query which you tried to change and removed some parts. – ypercube Jul 21 '11 at 12:59