Hi,
I am working with Oracle RDBMS 11g and 12c.
Does someone know how to insert characters like "Euro sign", the way they are like "€" in SQL*Plus?
Of course, it has to deal with the National Character Set.
I have for instance that piecce of code:
pkg_contact.WijzigContact
(pKCO_ID => null,
pKCO_KLA_ID => 101712,
pKCO_TAA_ID => NULL,
pKCO_DATUM =>
TO_DATE('11-07-2016', 'DD-MM-YYYY'),
pKCO_CONTACT_MET => 'Ylja',
pKCO_CONTACTPERSOON => NULL,
pKCO_TYPE => 'Intern',
pKCO_ONDERWERP => 'Overig',
pKCO_VERSLAG => '€ 90,00 Cashback Actie Uitbetaald.'
);
The "€" is not inserted as it is in the procedure.
Thanks by advance for any tip.
Kind Regards