Home » SQL & PL/SQL » SQL & PL/SQL » ORA-01453 Error (merged 3) (Oracle 9i)
ORA-01453 Error (merged 3) [message #510656] Tue, 07 June 2011 03:04 Go to next message
javed.khan
Messages: 340
Registered: November 2006
Location: Banglore
Senior Member

Guys,

I am getting this error


ORA-01453


After execution of the following simple query

SELECT   lta_number, CV.customer_code || ' ' || CV.customer_name customer,
         print_count, 0 PRT
    FROM customers_view CV, lta_profile lp
   WHERE CV.customer_code = lp.customer_code
     AND lp.depot_code = 400
     AND NVL (ho_approved, 'N') = 'Y'
     AND lp.depot_code = CV.depot_code
ORDER BY NVL (print_count, 0), lta_number DESC


Your Expertise required,

Javed A. Khan

  • Attachment: Error.JPG
    (Size: 335.72KB, Downloaded 612 times)
Re: ORA-01453 Error [message #510660 is a reply to message #510656] Tue, 07 June 2011 03:22 Go to previous messageGo to next message
Roachcoach
Messages: 1576
Registered: May 2010
Location: UK
Senior Member
01453, 00000, "SET TRANSACTION must be first statement of transaction"
// *Cause: self-evident
// *Action: commit (or rollback) transaction, and re-execute


From a select? New one on me Smile
Re: ORA-01453 Error [message #510662 is a reply to message #510660] Tue, 07 June 2011 03:31 Go to previous messageGo to next message
javed.khan
Messages: 340
Registered: November 2006
Location: Banglore
Senior Member

No not from Select there is an Insert on this data of select.
Re: ORA-01453 Error [message #510664 is a reply to message #510662] Tue, 07 June 2011 03:33 Go to previous messageGo to next message
cookiemonster
Messages: 13975
Registered: September 2008
Location: Rainy Manchester
Senior Member
What does that mean exactly?
Re: ORA-01453 Error (merged 3) [message #510666 is a reply to message #510656] Tue, 07 June 2011 03:43 Go to previous messageGo to next message
Michel Cadot
Messages: 68776
Registered: March 2007
Location: Saint-Maur, France, https...
Senior Member
Account Moderator
After a parallel DML you must commit or rollback before any DML or query on the table modified by the parallel DML.

Regards
Michel
Re: ORA-01453 Error (merged 3) [message #510668 is a reply to message #510666] Tue, 07 June 2011 03:46 Go to previous messageGo to next message
cookiemonster
Messages: 13975
Registered: September 2008
Location: Rainy Manchester
Senior Member
Doesn't that give a different error message?
Re: ORA-01453 Error (merged 3) [message #510670 is a reply to message #510668] Tue, 07 June 2011 03:47 Go to previous messageGo to next message
Roachcoach
Messages: 1576
Registered: May 2010
Location: UK
Senior Member
That's ORA-12838
Re: ORA-01453 Error (merged 3) [message #510671 is a reply to message #510668] Tue, 07 June 2011 03:48 Go to previous messageGo to next message
Michel Cadot
Messages: 68776
Registered: March 2007
Location: Saint-Maur, France, https...
Senior Member
Account Moderator
Doh! I should not read 10 messages at the same time.

Regards
Michel
Re: ORA-01453 Error (merged 3) [message #510675 is a reply to message #510671] Tue, 07 June 2011 04:02 Go to previous messageGo to next message
javed.khan
Messages: 340
Registered: November 2006
Location: Banglore
Senior Member

Guys,

Its a form which wil insert the data in one table and after that statement there is another which i wrote in first post [The query] , inserting the data in another table. These are two diffrent tables. After everything i am writing a commit. The same thing working fine one my replica schema which is few days older. I have checked with the data and formats..everythings fine. Is this something to do with DB side?
Re: ORA-01453 Error (merged 3) [message #510676 is a reply to message #510675] Tue, 07 June 2011 04:05 Go to previous message
cookiemonster
Messages: 13975
Registered: September 2008
Location: Rainy Manchester
Senior Member
There's an erroneous SET TRANSACTION statement somewhere. I suggest you find it.
Previous Topic: kind of reference list in functions
Next Topic: Update command??
Goto Forum:
  


Current Time: Fri Apr 17 08:12:13 CDT 2026