Displaying 20 results from an estimated 642 matches for "rollbacking".
Did you mean:
fallbacking
2010 Jun 23
2
problem installing dotnet 2.0
when installing dotnet 2.0 the install crashes ive tried clearing winetricks cache but that doesn't seem to work here's the errors im getting any help is appreciated
Code:
lithium at lithium-laptop:~$ ./winetricks
------------------------------------------------------
Instaling .net 2.0 runtime. Can take several minutes. See http://wiki.winehq.org/MicrosoftDotNet for tips.
2009 Jan 25
3
dotnet20 on ubuntu 8.10
Howdy Howdy,
I am trying to run Razor and RunUO on my Intrepid Ibex box, but am struggling. I am using 64 bit and wine 1.1.13.
Specifically, I cannot get dotnet11 or dotnet20 to work (via winetricks).
Any hints? I've tried various walk-throughs and read posts by the dozens, all without success.
This is what it states:
> Setting Windows version to win2k
> Executing wine regedit
2011 Jul 07
5
Instaling Sage Retail 2011 not sucessfull
Hi,
I'm new at Wine and Ubuntu, so please have some patience with me. I've tried to install Sage Retail 2011 with wine but the installation fails. The Terminal shows this:
Code:
bruno at bruno-Aspire-1680:~/Transfer?ncias$ wine /home/bruno/Transfer?ncias/SetupSageRetail2011.exe
fixme:advapi:DecryptFileA "C:\\windows\\temp\\IXP000.TMP\\" 00000000
fixme:advapi:LsaOpenPolicy
2011 Feb 19
4
dotnet crashes during installation
Hello All
I try to install net Framework 2.0 but without success.
During intallation process
Registering file System.EnterpriseServices.dll
I:"C:\windows\Microsoft.NET\Framework\v2.0.50727\RegSvcs.exe" /bootstrapi 2:
instalation crash
> ------------------------------------------------------
> Instaling .net 2.0 runtime. Can take several minutes. See
2011 Apr 11
3
Trying to run WBFS Manager using Wine... help
I am using wine-1.2.3
I have loaded wine, mono, winetricks and the program (WBFS Manager)
All installed and uploaded fine.
The problem is when I try to run the program (wine WBFSManager.exe) is says:
fixme:actctx:parse_manifest_buffer root element is L"asmv1:assembly", not <assembly>
fixme:sync:CreateMemoryResourceNotification (0) stub
err:ole:CoGetContextToken apartment not
2010 May 26
3
dotnet20 error
Ubuntu 10.04
WINE 1.2-rc1 (Set to Windows XP version)
Winetricks 20100424
Anyway, I try to install dotnet20 via winetricks on a clean WINE using
Code:
sh winetricks corefonts vcrun6 dotnet20
.
That is what I read on another forum post from here. However, I consistently get the same error error when I get to the dotnet20 install.
Code:
Executing cp -f
2010 Jul 23
7
fail rollback transaction with manual raise exception
With :
PostgreSQL 8.4 or postgresql-8.3
rails 2.3.4
pg 9.x or pg 8.x
I test this code:
=========================
class NkiBatch < ActiveRecord::Base
Bank.connection.transaction do
bank = Bank.new(:name => "ddsjdsjdsjk")
bank.save!
raise ActiveRecord::Rollback.new
end
end
and this:
=========================
class NkiBatch < ActiveRecord::Base
2007 Apr 08
8
SQLite3 build is broken because calling rollback!() doesn't prevent COMMIT
I know why SQLite3 is broken. This code:
Topic.transaction do |transaction|
transaction.rollback!
end
results in the following database commands:
BEGIN;
ROLLBACK;
COMMIT;
In other words, there is a COMMIT when no transaction is in flight.
MySQL and Postgres are coll with it, but SQLite3 blows up with
indignation.
Recorded as a ticket: http://dev.rubyonrails.org/ticket/8030
2007 Dec 11
3
Transactional/Rollback problems
I''m having a rollback problem with rspec trunk. It doesn''t seem like
rollbacks are happening quite as often as they should be. It
appears as though the rollbacks are *NOT* occurring on the first
description block in a file, but are for the rest. Here is a set of
specs that are failing:
require File.dirname(__FILE__) + "/../spec_helper"
describe
2011 May 08
1
Transaction - but no rollback?
Hello,
I''m having trouble with transactions with rails 3.0.3 and mysql 5. I''d
like to import data etl-batch-style:
class Job < ActiveRecord::Base
# ...
def perform_etl
connection.transaction do
extract # some connection.execute / job.update_attribute stuff
transform # some connection.execute / job.update_attribute stuff
end
end
#...
end
2007 Sep 07
3
Fails to restart mongrel cluster after Capistrano rollback (PIDs not deleted)
Hi,
I am deploying a Rails website using Capistrano to a VPS running the
site through Apache and Mongrel.
''cap deploy'' works fine, and mongrels are restarted. When I execute
''cap deploy:rollback'', however, my script fails to restart the
mongrels giving this error:
!!! PID file tmp/pids/mongrel.5000.pid already exists. Mongrel could
be running already.
2012 Aug 15
2
how best to rollback from a yum update?
Suppose I want to upgrade a bunch of packages on a system, but in case the upgrade produces unexpected, undesired results, I want to be able to rollback the system to its original state. What is the best way to do that?
Often, I won't have, or be able to find, packages for the current installed versions. I.e. If I haven't upgraded postgres for 2 years, it may be that I can no longer
2008 Dec 17
1
RPM rollback/repackage with CentOS 4
Hi,
Is there any way to list availabe RPM rollback's and timestamps in CentOS 4?
It's possible to get RPM rollbacks with up2date, but appears that's
deprecated ;-(
# up2date --list-rollbacks
This feature is deprecated and no longer functional
I want a method to list current available rollback and the timestamp:
http://www.linuxjournal.com/article/7034
How do you deal with this
2012 Jun 22
1
'yum update' rollback or .. ?
...d environemnts (under Vmware)
we do a snapshot, then 'yum update', reboot and if something is wrong we rollback the snapshot.
On physical servers we cannot do that. I have read about rollback option of rpm but not sure if
this is reliable solution. What is your best practise regarding "rollbacking" 'yum update' on
physical servers ?
Regards
Przemyslaw Bak (przemol)
2007 Oct 08
3
test not rolling back
For testing, I use:
self.use_transactional_fixtures = true
This should cause a ROLLBACK for each test case. If I run a single
file, foo_controller_test.rb, it works as expected. I see BEGIN and
ROLLBACK 8 times in the log files. But if I run:
rake test:functionals
I get 3 COMMITs, 196 BEGINS and 193 ROLLBACKs. The code in fixtures.rb
that deals with this is :
def
2011 Aug 23
12
remove a table with migration
HI, guys,
How to remove a table with migration, i saw a drop down method in
migration created file , how can i use that ?
thank you.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email
2010 Sep 30
3
Cannot destroy snapshots: dataset does not exist
Hello,
I have a ZFS filesystem (zpool version 26 on Nexenta CP 3.01) which I''d like to rollback but it''s having an existential crisis.
Here''s what I see:
root at bambi:/# zfs rollback bambi/faline/userdocs at AutoD-2010-09-28
cannot rollback to ''bambi/faline/userdocs at AutoD-2010-09-28'': more recent snapshots exist
use ''-r'' to
2013 Jun 20
2
[PATCH V2] ocfs2: need rollback when journal_access failed in ocfs2_orphan_add()
While adding a file into orphan dir in ocfs2_orphan_add(),
it calls __ocfs2_add_entry() before ocfs2_journal_access_di().
If ocfs2_journal_access_di() failed, the file is added into
orphan dir, and orphan dir dinode updated, but file dinode
has not been updated.
Accordingly, the data is not consistent between file dinode
and orphan dir.
So, need to call ocfs2_journal_access_di() before
2005 Nov 30
3
How to do a rollback
Hi. I''d like to know how can i do a rollback after a
Table.new(params:id)?
thank you
--
Posted via http://www.ruby-forum.com/.
2015 Jun 04
3
[PATCH RFC][Resend] New API: btrfs_convert
Disable the test case temporarily for 2 reasons:
1. Because the default test disk size is 500M, while btrfs convert command think it is too small to convert it(actually, just add 10M or 20M more is enough).
2. Btrfs-progs has may have a tiny bug, when execute the command in guestfish, it report some error, but convert the filesystem to btrfs successfully.
Signed-off-by: Pino Tsao