I am configuring rails to interface to a legacy database in which I have an different account to access the tables from.
The oracle_enhanced_adapter is not finding the existing trigger method for inserting the primary key.
For example, if the schema is named DOG and the table is named CAT, the
following query does not find the trigger.
SELECT trigger_name
FROM all_triggers
WHERE owner = 'DOG'
AND trigger_name = 'DOG.CAT_PKT'
AND table_owner = 'DOG'
AND table_name = 'CAT'
AND status = 'ENABLED'
because the trigger_name line instead would match without the schema name:
AND trigger_name = 'CAT_PKT'
Is there a way to configure the adapter to handle this?
Thanks,
Don Mc