Il driver Salesforce ODBC consente di lavorare con i dati Salesforce da Oracle® come se i dati Salesforce fossero dati Oracle® locali. Puoi farlo da Oracle® in esecuzione su piattaforme Windows e non Windows.
Questo blog condivide una soluzione alternativa per un problema che uno dei nostri clienti ha riscontrato durante il tentativo di aggiornare un oggetto Salesforce da Oracle®. L'errore ricevuto dal cliente è stato:
"ORA-02070: database SF does not support some function in this context"
Il cliente stava tentando di aggiornare questi dati Salesforce:
SQL> select "Type" from Account@SF where "Id"='001w000001CKeM8AAL'; Type -------------------------------------------------------------------------------- Customer - Channel 2 SQL> update Account@SF set "Type"='Customer - Channel 3' where "Id"='001w000001CKeM8AAL'; update Account@SF set "Type"='Customer - Channel 3' where "Id"='001w000001CKeM8AAL' * ERROR at line 1: ORA-02070: database SF does not support some function in this context
La soluzione alternativa consisteva nell'utilizzare un'istruzione SQL pass-through:
SQL> DECLARE 2 cr NUMBER; 3 rs NUMBER; 4 BEGIN 5 cr := DBMS_HS_PASSTHROUGH.OPEN_CURSOR@SF; 6 DBMS_HS_PASSTHROUGH.PARSE@SF(cr,'update Account set "Type"=''Customer - Channel 3'' where "Id"=''001w000001CKeM8AAL'' '); 7 rs := DBMS_HS_PASSTHROUGH.EXECUTE_NON_QUERY@SF (cr); 8 DBMS_HS_PASSTHROUGH.CLOSE_CURSOR@SF(cr); 9 END; 10 / PL/SQL procedure successfully completed. SQL> select "Type" from Account@SF where "Id"='001w000001CKeM8AAL'; Type -------------------------------------------------------------------------------- Customer - Channel 3 SQL>