How to use google translate URL in Oracle plsql
We all know Google Translate which can help translate from one language to another. We will explore the option to use Google functionality in Oracle plsql in the Oracle database to get the translation done. BEGINDBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => ‘google_translatorapi.xml’,description => ‘Google Translator Access’,principal => ‘SCOTT’,is_grant => true,privilege => ‘connect’);DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(acl => ‘google_translatorapi.xml’,principal => ‘SCOTT’,is_grant => true,privilege => […]
How to use google translate URL in Oracle plsql Read More »