A rollback is reverting data to a previous state. Typically questions in this tag involve transactions in Relational Database Management Systems, where a ROLLBACK command is used to discard any changes to the data since a transaction started.
0
votes
0answers
5 views
SQLException in TransactionScope and Safe-Points rollback
The system has several nested TransactionScope() with several SQL deletes and inserts via SqlBulkCopy.In certain situations an insert fail.
I know how to handle certain insert failures hence I would ...
0
votes
1answer
34 views
How can I get transaction rollbacked and object's initial state retored
I'm not sure if this is correct, but I need that after a transaction is rollbacked, my object returns the its initial state. I created a junit test and it's failing.
try {
...
0
votes
2answers
24 views
SQL Rollback a Commit from Multiple Stored procedure inserts
I have C# code (wcf) connects to a DB and inserts an entire "report" including address table, person table, etc. which all must be done by calling stored procedures. On a side note, some stored ...
0
votes
1answer
29 views
git “local changes checked into the index but not commited”
I edited files on home desktop and pushed to bitbucket.org as well as uploading to my test website.
I then pulled from bitbucket.org to my laptop.
It told me I needed to merge files but I did not ...
2
votes
2answers
37 views
Cancel previous operations in user defined function
Is it possible to cancel previous operations in a user defined function?
For example:
CREATE OR REPLACE FUNCTION transact_test () RETURNS BOOLEAN
AS $$
BEGIN
UPDATE table1 SET ...
...
0
votes
0answers
23 views
PHP + ORACLE - Managing transactions
I have script1.php and its code looks like below
$con = oci_pconnect(connection_details);
if(!$con){
//throw error;
}
$q1 = "SOME INSERT STATEMENT on EMPLOYEE TABLE";
$stid = oci_parse($con, $q1);
...
0
votes
2answers
52 views
use of ROLLBACK command in Oracle
I created table
SQL>CREATE TABLE Student
(
StudID NUMBER(6),
StudName VARCHAR2(25),
JoinDate DATE
);
Table created.
SQL>INSERT INTO Student
VALUES (123,'JOHN',SYSDATE);
...
0
votes
1answer
37 views
In SVN, how to roll back to previous revision instead of merge
I have seen other similar post and answers. But my situation is more restricted as following:
Branch repo/A has child branches repo/B and repo/C. C pushed/merged new foo.c to A. Then B pull/merged to ...
-1
votes
1answer
66 views
data inserted into db after spring transaction rollback
I'm testing my declartive transaction configuration with following testcase:
I try to insert 2 record into a table with 4 columns(id, content, position, time) while position is a UNIQUE index. I use ...
0
votes
1answer
48 views
JPA + Spring: UnexpectedRollbackException when Transaction is REQUIRED, REQUIRES_NEW or NESTED
I'm doing my first project with Spring, JPA, and GlassFish 3.1 and I'm having some troubles. I've been looking for a solution for a week, but I have found nothing.
I have an Entity (called Role), a ...
0
votes
0answers
16 views
How would EF find Down() migration on deployment of previous version?
We have a site that uses code first migrations and at the moment the deployment is partly manual, in that Up scripts are applied by hand after the new site folder is in place on the server.
I want to ...
0
votes
0answers
33 views
Rollback not working in MySQL 5.0.96
Rollback not working in MySQL
The user table engine is InnoDB.
This is what I have.
mysql> SHOW VARIABLES LIKE 'have_innodb';
+---------------+-------+
| Variable_name | Value |
...
0
votes
2answers
44 views
Transaction in mysql
I am working on a c# application with Mysql database(version 5.5).
I am facing an issue where I need to catch an exception occurred in Mysql.
It doesn't matter whether it is caught in Mysql or in ...
0
votes
2answers
55 views
linq to sql submitchanges rollback
is there a way to roll back after a db.submitchanges without de need of transactions?
It would be a shame having to run a service special for loggings. Is there an alternative to roll back and not to ...
0
votes
2answers
50 views
Spring data @Transactional not roll back
I develops my first application using Spring MVC and Spring JPA. I get a problem when using @Transactional annotation. I annotate one of my service methods with @Transactional and I throw exception in ...
1
vote
1answer
21 views
MySQL: Rollback longer timeframe?
I wondered, if I can somehow create a snapshot and, lets say two weeks later, return to this snapshot?
It should be applied to the entire database.
The easiest way would be to backup the database and ...
2
votes
1answer
40 views
Why does turning on @Cacheable cause my transaction to fail?
I have a service that I'd like to make cacheable. I've been looking into the grails-cache plugin and it looks very promising, but it's causing some behavior that I don't understand.
Consider the ...
0
votes
1answer
66 views
C# Nested transaction in a loop, but rolling back if any of them fail
The issue i'm trying to solve is as follows:
I have a process that ingests data from a file and inserts certain things in multiple tables, as it is now it is all done with one transaction, however ...
0
votes
1answer
24 views
Delayed rollback (ado.net) not working
I wish to do some sort of delayed rollback (not in batch) in sample c# desktop app
1 button inserts the data, the other rolls it back
I tried the following but it is not working
error: The ...
1
vote
0answers
33 views
Core Data rollback is undoing changes from a previous non-transaction operation in another thread
This is a complicated one.
We have a IOS app that sometime runs a long running task in the background, updating the database. Use do create a separately managed Object context and share the ...
0
votes
1answer
45 views
Is rollback needed after Hibernate exception if clear is used instead
if I have a Hibernate exception during a call to commit. In the catch block, is rollback necessary if clear is used instead?
e.g.
EntityTransaction t = em.getTransaction();
t.begin();
try {
...
...
0
votes
1answer
41 views
Rollback with catched RuntimeException
I clearly need some help about transaction roll back. I'm working on a Spring/JPA/Hibernate application.
For me, RuntimeException even if they are catched, are rolling back the transaction. I deduce ...
0
votes
0answers
16 views
Does autocommit stay disabled in the second connection?
Does autocommit stay disabled in the 2. mysql connection after you close the first mysql one and open the second? MYSQLi
For example if i have something like the code below. Would i have to turn it ...
0
votes
3answers
139 views
Backup original row data before committing transaction to SQL Server using C#
I want to be able to backup all original data for the rows in a table that have been modified or deleted. I also want to keep track of all the inserted rows. The reason for this is that my application ...
0
votes
1answer
54 views
Lightswitch - get old value of modified field (database value)
I'm developing an Lightswitch app which has some kind of revision control. When a user changes an item and clicks save, instead of updating that row in the database I want a new row with the modified ...
1
vote
1answer
74 views
WiX custom action on major upgrade rollback not run
I have a WiX setup which has
<MajorUpgrade Schedule="afterInstallInitialize"
DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />
If an ...
0
votes
1answer
219 views
Rollback entire solution/project to specific changeset in TFS?
I am at changeset 121.
I want to rollback down to version 112, ignoring all the changes I've made since then.
I found this answer but I can't find the command in the menu.
I'm struggling with this ...
0
votes
0answers
68 views
Error handling in Database Backup using Sql Server ( error number 3013 )
I am attempting a database backup using the following code :
create PROCEDURE [dbo].[BackupDatabase]
(
@databaseName sysname,
@backupPath varchar(260)
)
AS
BEGIN
begin transaction
begin try
...
0
votes
3answers
56 views
Ways to rollback a “soft” transaction in Java
When I say "soft" transaction I mean something which doesn't involve persistence in some DB but just logical object modifications. Here's the story.
Plain JAVA application, no frameworks, possibly ...
0
votes
1answer
60 views
mercurial abort: Input/output error,transaction abort! rollback completed
i am trying to pull from a repository in bitbucket.
i am giving
bash-4.1$ hg pull https://sat801@bitbucket.org/golmschenk/i4330-notification
but it shows like this
pulling from ...
1
vote
1answer
54 views
transaction not rolling back - scope issue?
I'm having a hard time understanding why I can't get this transaction to roll back. I have a DataAccess object that handles the connection/transaction. I have a MailingData business object, and a ...
0
votes
2answers
151 views
spring hibernate manual commit
can somebody help for this?
currently i met some problems, i am using spring,jpa,hibernate.
here is the problem, when i try to save several objects, and then manually roll back as when solrj return ...
1
vote
1answer
411 views
Strange behaviour with @Transactional(propagation=Propagation.REQUIRES_NEW)
Here is my problem :
I'm running a batch on a Java EE/Spring/Hibernate application. This batch calls a method1. This method calls a method2 which can throw UserException (a class extending ...
1
vote
0answers
85 views
Multiple NHibernate Transactions in TransactionScope
I have legacy dll which uses multiple NHibernate transactions in one method. My task is to make this method act as one transaction, so I think TransactionScope should help me. However, when I made ...
2
votes
1answer
56 views
Windows Github basics and conflict handling (like VSS)
I'm new to Git / GitHub (used VSS in past). Based on my SO Post I'm using Windows GitHub Its user friendly compared to the command prompt based Git bash stuff. In particular the sync feature, no ...
2
votes
1answer
56 views
Is it possible to rollback create_all in sqlalchemy?
According to THIS question for some DBMSs it is possible to rollback CREATE TABLE statement.
Particularry it is possible for sqlite (although it is undocumented).
So my question is, is it possible ...
1
vote
2answers
42 views
Need to roll the database back to previous state
Here is my model classes that are persisted in sqlite db using ORMLITE.
public class Site{
...
...
Collection<Visit> visits;
...
2
votes
1answer
205 views
Using commit/rollback transactions in stored procedure is good OR bad approach
I read many articles on google but didn't get an idea to use transaction in stored procedures while insertion/updation/deletion.
Anybody explain me is this good or bad.
Does it really effect stored ...
1
vote
1answer
64 views
MSTest fails when I do run all, but works otherwise
So I have a Testclass using MSTest and every test works great if I run them one and one, however if I select 2 tests, namely can_register and cannot_Register_existing_username then the second fails ...
0
votes
1answer
48 views
Mercurial HG 'pretxncommit.whitespace hook exited with status 1' but no hook specified
the title of this request says it all pretty much. I have no hooks defined in my .hgrc file, but I am getting this rollback message on running hg commit:
transaction abort!
rollback completed
abort: ...
2
votes
1answer
35 views
subversion rolling back Source Files based on commit date
I'm currently involved in a godawful mess at my work. There are ownership issues around intellectual property developed after a certain date. I have been instructed by a specialist intellectual ...
1
vote
1answer
63 views
Rollback changes to the commited update statements
There are around 1500 records updated in my database and unfortunately, I had committed the changes.
I could remember that there is an option to rollback the changes in oracle 11g.
I am using Toad ...
0
votes
1answer
36 views
How to view my last transaction in Oracle?
I updated only one column in the table. Now I must update it to the previous value. How can I view the previous value? I disconnected from the session and now dba_2pc_pending returned 0 rows.
0
votes
1answer
84 views
Limit or abort a Sql Server transaction initiated by Asp.Net
Goal: to limit the duration of a Sql Server transaction that was initiated on an Asp.Net web page.
A transaction is more than a single command, so SqlCommand.CommandTimeout is not strong enough.
...
0
votes
0answers
97 views
Exception thrown in Repository causing UnexpectedRollbackException error in parent / Service transaction
I have a BaseRepository:
@Transactional(propagation = Propagation.MANDATORY)
public final T save(final T entity) throws RepositoryException {
try {
getHibernateTemplate().save(entity);
...
0
votes
0answers
65 views
ManagedObjectContext cancel rollback not fully deleting inserted data
I've seen a bunch of responses on similar threads but after following their recommendations am still having a bizarrre issue and am banging my head against the wall.
I have a table of people and have ...
0
votes
0answers
57 views
ADO.NET Entity Framework default behavior if save was not successfull
I'm trying to implement something like custom rollback. I have Windows Form that has text fields and OpenFileDialog which offers the user the option to copy selected image from the OpenFileDialog to a ...
1
vote
1answer
165 views
bootstrapper application rollback
I am trying to create a Wix burn bootstrapper that installs my msi. The bootstrapper exe is working fine but the only issue is that whenever I try to cancel the installation in midway the custom ...
0
votes
0answers
323 views
Could not roll back Hibernate transaction
I just got this dumb exception once a while from my tomcat server. Once it happens, I have to restart tomcat to get it back to work.
Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: ...
0
votes
0answers
52 views
C# - creating custom rollback
I'm using ADO NET EF - code first approach. I'm working with Windows Form and I have a Save() function within which I have two calls to the database. The first is for saving an image selected with ...


