Skip to main content

New answers tagged

Advice
0 votes
0 replies
0 views

I need to pass changes on certain tables to external system but am worried not to skip anything

The solution must be on 19c. It will end up on Kafka. GG is probably not an option due to licencing because I'm not the owner of the database nor data. I just provide an aplication to multiple clients....
user1941235's user avatar
Advice
0 votes
0 replies
0 views

I need to pass changes on certain tables to external system but am worried not to skip anything

Yes, this is solution 4. But I'm worried about context switching overhead for large message batches and for example index contention when I simultaneously via trigger insert new records to be exported ...
user1941235's user avatar
Advice
1 vote
0 replies
0 views

I need to pass changes on certain tables to external system but am worried not to skip anything

Your problem's definition is called CDC (Continuous data capture). You can use Golden Gate, Shareplex, OpenLogReplicator or native Oracle Kafka support(since ver 23ai). And several other tools. Do not ...
ibre5041's user avatar
  • 5,346
Advice
0 votes
0 replies
0 views

I need to pass changes on certain tables to external system but am worried not to skip anything

I suggest you try a different scenario. You could create a separate table for outgoing messages. You insert records into it when a message is updated or inserted (the trigger you described at the ...
Dmitry Borisov's user avatar
Advice
0 votes
0 replies
0 views

How to return correct record if multiple records have same value in oracle sql

Below is the PL/SQL function code CREATE OR REPLACE FUNCTION glm_get_routing_gmlstage (v_factory IN VARCHAR2, v_s4MPN in VARCHAR2, v_legacystage in VARCHAR2, v_facility in VARCHAR2) RETURN VARCHAR2 IS ...
Puvan24's user avatar
Advice
0 votes
0 replies
0 views

How to return correct record if multiple records have same value in oracle sql

Please add the query, which returns duplicate rows, to the question above.
user2773289's user avatar
Advice
0 votes
0 replies
0 views

How to return correct record if multiple records have same value in oracle sql

yes but how to return the exact step when I have multiple 4210 record, currently it returns B234210 twice, by right it should return B234210, another one is B254210
Puvan24's user avatar
Advice
0 votes
0 replies
0 views

How to return correct record if multiple records have same value in oracle sql

Using ROWID is best where duplicate data exists and no other key fields are available.
user2773289's user avatar
Advice
1 vote
0 replies
0 views

Oracle, PL/SQL and Java

First of all: use IntelliJ community edition. Don't use Visual Studio Code. I don't know why people default to that nowadays, it's not built for Java programming. You'll slow yourself down trying. You ...
Gimby's user avatar
  • 5,389
Advice
0 votes
0 replies
0 views

Oracle, PL/SQL and Java

If you're familiar with databases already, then after some basics (OOP and such), I suggest you take a look at some overviews in 'Java Persistence API (JPA)' as well. Gives you some kind of idea how ...
Jokkeri's user avatar
  • 1,065
Advice
1 vote
0 replies
0 views

Oracle, PL/SQL and Java

For learning Java in general — assuming you are not familiar with the language — I suggest Oracle's Java tutorials.
Abra's user avatar
  • 21k
Advice
0 votes
0 replies
0 views

Oracle, PL/SQL and Java

true, however this might be because the company didn't specify what. JDBC is very ... crude, usually, companies won't let their developers manually code everything anymore, especially since hibernate ...
Stultuske's user avatar
  • 9,469
Advice
1 vote
0 replies
0 views

Oracle, PL/SQL and Java

I would suggest reading through the material at dev.java - and perhaps message them for details on which version control they use (it's probably Git, but you know what they say about assumptions), ...
Elliott Frisch's user avatar
1 vote

PL/SQL UTL_HTTP request returns "ORA-01031: insufficient privileges" on OCI AutonomousDB

Autonomous DBs on OCI supports several network, but rules on https://docs.oracle.com/en-us/iaas/autonomous-database-serverless/doc/external-calls-with-customer-managed-wallet.html must be followed.
Carlos SS PMI's user avatar

Top 50 recent answers are included