PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

handhabt der \copy-Befehl Commit und Rollback in Postgres?

Wenn \copy schlägt die Transaktion fehl, wird abgebrochen, hier ist ein Beispiel:

t=# \! cat s07
create table trans(i int);
copy s07 from '/no such file';
t=# begin;
BEGIN
t=# \i s07
CREATE TABLE
psql:s07:2: ERROR:  could not open file "/no such file" for reading: No such file or directory
t=# select * from trans;
ERROR:  current transaction is aborted, commands ignored until end of transaction block
t=# end;
ROLLBACK