From: | jing han <jing_han_66(at)yahoo(dot)com> |
---|---|
To: | pgsql-interfaces(at)postgresql(dot)org |
Subject: | questions about transaction and rollback |
Date: | 2005-04-14 15:48:00 |
Message-ID: | 20050414154800.85174.qmail@web53505.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces |
Hello,
I have questions about transaction and rollback.
Question 1:
In the postgresql.conf file of our running system,
autocommit=true. If leave it as true, can we disable
this attribute when we issue a connection to database?
Such as:
$db =
DBI->connect
(
'DBI:Pg:dbname=xxx',
'user name',
'password',
{
AutoCommit => 0
}
)
Question 2:
If we use the following command to restore database.
system("su -l postgres -c \"psql -d dbname -f
/tmp/db_dump\"");
Can command psql rollback if in the middle of restore
power failure happens?
Question 3:
During restore, if power failure happens, we want to
rollback everything having been inserted or updated to
database. In another word, if we are restoring a
database with thousands of turples changes, at the
time, we restore the last turple, power failure
happens, we want to rollback. Can postgres support
huge data changes in one transaction block? How to
configure the limit of how much we can do in one
transaction block?
Hope to hear from you soon and thank you in advance.
Best Regards
jing
__________________________________
Do you Yahoo!?
Yahoo! Small Business - Try our new resources site!
http://smallbusiness.yahoo.com/resources/
From | Date | Subject | |
---|---|---|---|
Next Message | Joshua D. Drake | 2005-04-14 16:52:33 | Re: questions about transaction and rollback |
Previous Message | Noureddine tezniti | 2005-04-14 11:58:42 | Error in PG installation |