Topic: Used Rollbacks
Answers to Common Questions
How to use a rollback tow truck?
Dude....you can do AMAZING things with a rollback. Get someone to show you how to get the truck under the car without moving the car out of it's parking space.....you actually put the truck under the car. You can also pick up a car that's a... Read More »
Source: http://answers.yahoo.com/question/index?qid=20060816160434AARsftV
What is statment level rollback and use of that given?
Hi Meyyappan, If any error occurs during execution of a SQL statement, all effects of the statement are rolled back. The effect of the rollback is as if the statement were never executed. This is a statement level rollback. eg. insert into ... Read More »
Source: http://en.allexperts.com/q/Oracle-1451/2008/2/pl-sql-3.htm
how to use Begin Transac, commit and Rollback
Hi, here's a good article on transaction, with examples: http://www.codeproject.com/KB/database/transactions.aspx Basically, it goes something like: 1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: SqlConnection connec... Read More »
Source: http://www.experts-exchange.com/Programming/Editors_IDEs/.NET/Q_2...
Answers to Other Common Questions
Hey, You can't use more than one rollback segment for the import. Import is one transaction that use one rollback segment. It's not a problem at all. A commit is assigned every table imported, so the rollback info will no be that big. You c... Read More »
Source: http://www.experts-exchange.com/Q_10232797.htm
Though i dont fully agree with the design, here is a possible solution ----------------- Class: clsCommon ----------------------------------- Option Explicit Dim conCommon As New ADODB.Connection Dim comCommon ... Read More »
Source: http://www.experts-exchange.com/Programming/Languages/Visual_Basi...
use System.Transaction API... check this link for more details http://msdn.microsoft.com/en-us/library/ms973865.aspx Read More »
Source: http://www.experts-exchange.com/Programming/Languages/.NET/Q_2358...
By the way, if you don't want the trigger to rollback the initiating statement, you can use PRAGMA AUTONOMOUS_TRANSACTION to make the trigger function within it's own transaction, so you can rollback only the trigger body, and not the initi... Read More »
Source: http://www.experts-exchange.com/Database/Oracle/Q_20151677.html
Navigate to the HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer registry subkey to make the change for all users on that machine or navigate to the HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Installer registry su... Read More »
Source: http://www.windowsitpro.com/article/installation2/how-can-i-use-t...
Perform the following SQL to check your rollback segments select segment_name,tablespace_name, status from dba_rollback_segs; Make sure your other,non SYSTEM, rollback segments is online. Q Read More »
Source: http://www.experts-exchange.com/Q_20454741.htm
Glad to be of help Huseyin. Here's the code I posted earlier with the corrections, for your convenience: Inserting: insert /*+ APPEND */ into mytable (col1, col2, col3) select col1,col2,col3 from othertable; Updating with commits every 1000... Read More »
Source: http://www.experts-exchange.com/Database/Oracle/Q_20298754.html
Want A Personal Answer?
735,064 people are answering.
About - Privacy - AskEraser - Advertise - Careers - Ask Blog - iPhone - Android - Help - Feedback ©2012 Ask.com