3
votes
1answer
52 views

ORA-14552: cannot perform a DDL, commit or rollback inside a query or DML

We have some Web Services deployed in Oracle WebLogic Servers, and the main responsability of this services is to invoke Stored Procedures and sent this data to the clients. The technology stack of ...
-2
votes
0answers
23 views

Oracle - transaction occurance before and after [closed]

Does anyone know what occurs before a transaction is committed in Oracle AND after it is committed?
0
votes
2answers
32 views

Possible to deactiviate implicit commit on Oracle? [duplicate]

Is it possible to deactivate the implicit commit, which is called after create, drop ,rename, alter statements on Oracle Databases? simple example: CREATE TABLE TEST.test2x (id NUMBER(10,0)); ALTER ...
1
vote
2answers
82 views

SET TRANSACTION error , C# , Oracle

I have procedure in my C# device application app. This is how it looks: private void stk_crane_start_movement() { conn.Open(); OracleCommand cmd = new OracleCommand(); ...
4
votes
3answers
154 views

Concurrent reading and updating in a database table

I have an Oracle database that I access using Devart and Entity Framework. There's a table called IMPORTJOBS with a column STATUS. I also have multiple processes running at the same time. They each ...
0
votes
1answer
85 views

What happens to uncommitted sql statements?

I'm doing a statement that requires me to execute a package, do the sql and then commit. The execution of the sql is what determines if it is successfull or not, and I'm checking the number for ...
0
votes
1answer
76 views

Sharing oracle transaction between Entity Framework and Oracle Client

I'm working with a legacy application that accesses an oracle database through System.Data.OracleClient using an OracleTransaction like so: Public Sub ExecuteOracleSql(ByVal sql As String) ...
1
vote
1answer
157 views

Avoiding distributed transaction with db link

I am working at a Spring Java EE application that has to deal with two different datasources, A and B. As the application needs to update A and B in a consistent way. If one update fails, the whole ...
4
votes
2answers
141 views

“Repeatable read” vs Optimistic [closed]

What is the difference between concurrency control and transaction isolation levels? I understand each of them clearly, however, I am having some problems relating them to each other. Specifically, I ...
0
votes
1answer
129 views

using cursor after a delete statement in a stored proc [duplicate]

Possible Duplicate: Oracle Accessing updated records during the same transaction I've a oracle store proc somewhat like this (actual sqls are different) CREATE OR REPLACE PROCEDURE mysp IS ...
0
votes
0answers
71 views

Oracle: Is it possible to check the last Session Commit? [duplicate]

Possible Duplicate: How can I tell if I have uncommitted work in an Oracle transaction? Oracle: How to find out if there is a transaction pending? I'm using Toad for oracle. Maybe I've ...
0
votes
1answer
56 views

Oracle Accessing updated records during the same transaction

Using Oracle 10g Is it possible to get the value of a newly updated field within the same transaction before it is committed. I am executing a stored procedure which calls 2 other stored procedures. ...
1
vote
0answers
291 views

proper iBatis method for SELECT ~~~ FOR UPDATE oracle SQL query?

I'm developing a web-based service using jBoss5 + Struts + iBatis. Is there any proper method for "SELECT ... FOR UPDATE" oracle query (I mean, select iBatis method which involves transaction ...
2
votes
1answer
374 views

Delphi TDBXTransaction 'Invalid transaction Object'

1st off I am new to Delphi so this may be a "mundane detail" that's being over looked. [sorry in advance] I am getting an 'Invalid Transaction Object' error when I attempt to run a transaction ...
0
votes
0answers
169 views

EF 4.3 DbContext: Read next available Id from db and perform INSERT, all within a Transaction

Situation: Developing a web UI front end for a system based on Oracle Database. The Database is provided to us as is. We have no access or rights to modify the schema or anything else. We can only ...
0
votes
0answers
88 views

Microsoft Oracle Destination Component by Attunity transaction comit

I have SSIS package with Microsoft Oracle Destination Component by Attunity. The component writes data to Oracle database. The component calls COMMIT on Oracle, but what I need is full control over ...
0
votes
2answers
150 views

java.sql.SQLException: The method 'rollback' can't be called when a global transaction is active

I want to use java invoke a oracle store procedure to return OracleResultSet, the store procedure have execute delete, insert and select operate(involves two tables). I set auto commit false and when ...
1
vote
2answers
236 views

UPDATE does not lock table if no rows match, race condition

I want to increment and return a counter from a database table. The java code is as follows: String sqlUpdate = "UPDATE mytable SET col3 = col3 + 1 WHERE colpk1 = ? AND colpk2 = ?"; Query ...
0
votes
2answers
374 views

C# Transactions on Oracle & SQL Server via ADO.NET failing

I have written a class in C# that is intended to offer the ability to run database transactions on a given database connection. When I try to run the code however I get the following two errors on ...
0
votes
4answers
362 views

Oracle - How to execute transaction correctly?

My statement: statement.addBatch("START TRANSACTION;" + "UPDATE FIRST_TABLE SET FIRST_FIELD = 1;" + "UPDATE SECOND_TABLE SET SECOND_FIELD = 2;" + ...
0
votes
0answers
80 views

How to do the equivalent of SELECT .. FRO UPDATE in a SOA architecture?

The title is probably not be explicit enough, so let me try to explain. I'm working on a new project, built on .NET, it consists of WPF clients that use WCF web services to access an Oracle database. ...
2
votes
1answer
167 views

Add Conditional Transactional Behavior In Oracle Procedure

In oracle 10g, I have one stored procedure per table per operation (insert, select, update, delete). Actually there can be multiple procedures per table per operation, for example in case of select it ...
2
votes
1answer
774 views

Truncating an Oracle Temp Table in a Transaction, Truncates *ALL* Temp Tables

I have some C# code that creates several Oracle Temporary Tables with the "ON COMMIT DELETE ROWS" option inside of a transaction. Inside of the transaction, I will insert a bunch of rows in to ...
3
votes
1answer
200 views

TransactionInterop.GetDtcTransaction() throws ArgumentNullException… sometimes

I'm occasionally getting this exception, and don't seem to be able to find anything here on SO or google that can shed some insight as to how to debug this. System.ArgumentNullException: Value cannot ...
1
vote
2answers
132 views

Select recently inserted record then rollback

I'm back in the over-complicated world of Oracle where I'd like to do the following: Insert a record into the database Select the record again Roll everything back I've created the following code ...
0
votes
1answer
778 views

Read/write to database from quartz jobs - transactions not working

I have two Quartz (1.8.3) jobs, configured via Spring (2.5.6), one of them writes (send) to database, and one reads from it (check). <bean id="scheduleFactory" ...
1
vote
1answer
309 views

How to using oracledataadapter with transaction?

I use a method to gettable using a Select statiments.When i use a select statiment using a link database i got error (ORA-01453 SET TRANSATION must be first statement of transation.) I know solition ...
-1
votes
3answers
1k views

batch procedure, when to commit transactions?

I'm pretty new to PL-SQL although I've got lots of db experience with other RDBMS's. Here's my current issue. procedure CreateWorkUnit is update workunit set workunitstatus = 2 --workunit loaded ...
0
votes
2answers
91 views

Peeking into MSMQ Before Committing and Receiving

For my C# .Net MSMQ application (using System.Messaging), I'd like to perform an insert into an oracle db as a transaction. The queue I will be reading from is a local private queue that another ...
0
votes
1answer
309 views

WCF MSMQ Transaction with Oracle Database Insert

I want to create a WCF Service using NetMsmqBinding that will insert data into an Oracle Database. I'm using MS Visual Studio with C# and .NET 4.0, currently using the System.Data.OracleClient, with ...
0
votes
2answers
4k views

issue ORA-00001: unique constraint violated coming in INSERT/UPDATE

I am trying to insert some values in table throught the application and get issue ORA-00001: unique constraint violated. I see that sequences are out of sync with the highest id of the table, but even ...
0
votes
1answer
327 views

Transaction propagation and Persistence Context synchronization with Oracle Stored Procedures

I've been searching about the possibility of propagate a JTA transaction from Java code to Oracle stored procedures and found nothing really relevant. I'm asking this because a coworker is working ...
1
vote
1answer
385 views

When does an autonomous transaction end?

As I understand autonomous transactions (in the Oracle world) my question is an easy one to answer, the autonomous transaction ends when a commit or rollback is issued. However, I have just written a ...
3
votes
1answer
850 views

How do I use a database to manage a semaphore?

If several instances of the same code are running on different servers, I would like to use a database to make sure a process doesn't start on one server if it's already running on another server. I ...
1
vote
1answer
92 views

What is a good response to “just change your program” in case of ORA-02049 wrapped in a distributed transaction?

I have a distributed transaction which wraps lets say 3 others. One of those inner transactions fails with ORA-02049. The insidious thing is, the outer transaction and the others are fine, because the ...
0
votes
1answer
480 views

validate my understanding about DB Locks and threads

I have observed following error logs in one of log files 2012-01-31 10:52:46,424 IST WARN "SQL Error: 2049, SQLState: 42000" 2012-01-31 10:52:46,424 IST ERROR "ORA-02049: timeout: ...
4
votes
2answers
151 views

Transaction isolation level for SELECTs

Given a transaction running on a Relational Database, firing a series of SELECTS. I am supposing that if in the middle of this transaction, any other transaction commits some UPDATE or INSERT against ...
5
votes
2answers
499 views

How can I get Entity Framework and WCF to work with transactions? Okay…what's the secret?

I've been trying several different ways in order to get a simple set of transactions to work for a simple WCF client/server situation. My WCF server has a class level declaration of the Entity ...
2
votes
3answers
141 views

how to resolve plenty of concurrent write operation in Oracle?

I am maintaining a lottery website with more than millions of users. Some active user(Perhaps more than 30,000) will buy more than 1000 lotteries within 1 second. Now the current logics use select ...
0
votes
1answer
235 views

SSIS, Oracle, and creating a Transaction

I am using SSIS to move data from an Oracle database to a SQL database. I wish to implement transactions but I do not want (could even be cannot use) the MSDTC service. My thought is to set ...
2
votes
1answer
733 views

Concurrent Updates in Oracle: Locking or not?

I'm confused. I'm reading about MVCC in Oracle. I thought MVCC meant no locks. But, I read somewhere else that all UPDATEs do automatic locking, regardless of the isolation level. Can someone ...
1
vote
2answers
293 views

Oracle database is hanging infinitly in UPDATE queries

suddenly my update queries are not executing . i can make select queries but when i try to update records the database hangs infinitly. i tried even from sql plus and nothing happens.
2
votes
2answers
389 views

Java Oracle Transaction

I want to insert data into a database into different tables. Because of constraints I have to do this in a specific order. That means, first insert into table a, then b, then c , .... and no mixing of ...
4
votes
1answer
194 views

autonomous_transaction in trigger and constraint violation

I've encountered an interesting situation experimenting with the autonomous_transaction. Consider the following situation (please note it's is not intended to be written this way: just proof of ...
1
vote
1answer
182 views

Oracle Transaction - Count table

I have a table where I need to constrain by category and then find all overlapping dates against some date range. This takes about 2 seconds, which is unacceptable to do on every transaction which ...
3
votes
1answer
385 views

Some clarifications on different Isolation level in database transaction?

Below is the statement written from Wikipedia's Isolation article about REPEATABLE READS In this isolation level, a lock-based concurrency control DBMS implementation keeps read and write locks ...
2
votes
1answer
81 views

Visibilty of statements in a view related to transaction?

i have a question about data visibility in database views. I use Oracle. I have a table myscheme.users and a table global.users (myscheme and global are schemes) There is a view "globalusers" in the ...
2
votes
2answers
114 views

Where does the responsibility lie to ensure the ACID properties of a transaction?

I was going through ACID properties regarding Transaction and encountered the statement below across the different sites ACID is the acronym for the four properties guaranteed by transactions: ...
0
votes
1answer
165 views

Oracle and Seam Transaction problem

I have a procedure that change the values from an object and after i have called the procedure i do a search to find the changed object but it still with the same value, instead of the value is ...
0
votes
2answers
589 views

Oracle deadlock without explicit locking and read committed isolation level, why?

I get this error Message: ORA-00060: deadlock detected while waiting for resource even though I am not using any explicit table locking and my isolation level is set to READ COMMITTED. I use multiple ...

1 2 3