Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
31 views

Well I have 2 distinct Oracle 12c databases, lets name them db1 and db2 I have a link from db1 to db2 (DBL_DB2), also grants for execution of pkg2 which contains procedure 2, which we call proc2 (in ...
Ali Aasal's user avatar
-1 votes
1 answer
180 views

Currently, I can't get XA-Transactions AND Durable Subscription working at the same time. A Demo Projekt is here: https://github.com/proxora/Spring-boot-3-ActiveMQ-XA-Transactions-Durable-Subscription-...
xtermi2's user avatar
  • 836
0 votes
0 answers
78 views

I am not good at databases and SQL and have not worked on complex tasks. I will try to explain as best as I can. Thanks for your help. We are performing proof-of-concept (POC) and we are facing some ...
Rushikesh Yadav's user avatar
2 votes
1 answer
419 views

In a microservice architecture, each service typically manages its own database and executes operations independently. However, when dealing with business processes that span multiple microservices, ...
Dustin Lee's user avatar
1 vote
1 answer
65 views

I have a use case where to mark a create entity operation as successful in my service, I have to write some metadata to DataBase 1 (my service has direct access to DB), internally call another api of ...
do5's user avatar
  • 73
0 votes
1 answer
258 views

We have upgraded recently from .NET Core 2.2 to .NET 6.0 and we encounter several issues. One of them is related to using System.Transaction which somehow is being upgraded to distributed transaction ...
herme 0's user avatar
  • 982
0 votes
1 answer
910 views

I have created a console application using the .Net 8 environment and there is this code in Program.cs: TransactionManager.ImplicitDistributedTransactions = true; var transactionOptions = new ...
Maksim Perevoshchikov's user avatar
0 votes
0 answers
394 views

In my new microservices arch we are planning to 2PC protocol to handle distributed TX mgmt as we are using Oracle shared DB. I am unable to find any right implementation over the web. Is there any ...
CodingBee's user avatar
0 votes
2 answers
212 views

im working on a school project about replication in databases. I created a cloud spanner instance with 5 databases. The "main" database is named electores_nac and i want to replicate only ...
André Gelabert's user avatar
2 votes
0 answers
196 views

Let's imagine we have an application that has 3 instances and 1 DB (there might be more synchronized DBs) and we have a withdraw method that basically selects the account from account table with @...
Aksoy's user avatar
  • 131
0 votes
0 answers
157 views

I want to make transactional update in two databases. Given I have following pseudocode: try { Connection conn1 = DriverManager.getConnection("jdbc:postgresql://HOST1", "postgres1&...
MiamiBeach's user avatar
  • 3,505
2 votes
0 answers
107 views

We need to synchronize data stored in different AWS regions that may reside on different databases(MySQL, Postgres, DynamoDB etc.). For example, we may have a user that has a profile in both us-east-1 ...
Meghan's user avatar
  • 21
0 votes
1 answer
68 views

is there any way to use Rollback the DB operations performed by set of consecutive API's network calls to Help Automation For instance if i have a test script to test my application so my test script ...
ksk's user avatar
  • 307
0 votes
1 answer
46 views

I am calling an API to save the production data, I need to save various details like batch no, machine no, and process in different database Class ProductionImpl{ public Long saveProduction(...
YJ_'s user avatar
  • 1
6 votes
5 answers
8k views

I am developing small POC application to test .NET7 support for distributed transactions since this is pretty important aspect in our workflow. So far I've been unable to make it work and I'm not sure ...
Bola's user avatar
  • 778
0 votes
1 answer
539 views

I am trying to configure the narayana transaction manager with camel and spring. I have created two data source objects and inserting two records in to two different databases. I am throwing error ...
chandrahas g's user avatar
1 vote
1 answer
333 views

I have the following scenario. I am running a pipeline in Microsoft Hosted agent windows-2022. In the pipeline process, I run a sql server container, which serves as my database server. My application ...
Manas's user avatar
  • 43
1 vote
1 answer
777 views

I'm using atomikos to handle global transaction between 2 different databases. I ran before with more than 1 billion records and this problem just appeared couple days ago. I guess the reason is my ...
leetrinh's user avatar
2 votes
0 answers
144 views

I'm playing around with Atomikos. Using this as a starting point: https://www.fabiomaffioletti.me/blog/2014/04/15/distributed-transactions-multiple-databases-spring-boot-spring-data-jpa-atomikos/ In ...
Haris Hajdarevic's user avatar
0 votes
1 answer
989 views

I need to execute same command in different server using linked-server. INSERT #Result EXEC ('command') AT @linked_server Because Insert statement opens an Implicit transaction and I can not enable ...
Meyssam Toluie's user avatar
1 vote
0 answers
364 views

My Spring application was using JPA transaction manager but for some situations I would like to use JTA transaction manager. Therefore I updated Spring config to something like that: <beans> &...
Radu Dumbrăveanu's user avatar
1 vote
1 answer
1k views

Are there guidelines on how many messages and/or partitions can be involved in a Kafka Producer Transaction before performance really starts to suffer? Obviously, the more partitions are involved, the ...
cmcnealy's user avatar
  • 372
2 votes
2 answers
337 views

I am currently reading the Microservices Patterns and it says there are mostly two approaches for distributed transactions: two phase commit (2PC) and sagas pattern. Also, I've heard about currently ...
Alexander Bashkirov's user avatar
3 votes
2 answers
1k views

I have a multi-tenant application. The tenants data is isolated based on schema. I want to implement a transactional outbox pattern, where I want to store the events in a table (in same transaction)...
Kumar's user avatar
  • 1,676
0 votes
1 answer
1k views

I have two transaction manager for two database. I need to persist same data into both databases. If one transaction failed, other one need rollback. I have done like below public interface ...
Sangeetharaj's user avatar

1
2 3 4 5
12