sql >> Database >  >> RDS >> PostgreSQL

behandelt \copy commando commit en rollback in postgre?

Als \copy mislukt transactie wordt afgebroken, hier is een voorbeeld:

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


  1. Hoe PostgreSQL-enum in kaart te brengen met JPA en Hibernate

  2. PHP 7.2.2 + mysql 8.0 PDO geeft:authenticatiemethode onbekend bij de client [caching_sha2_password]

  3. mysql-query om 3 query's in 1 tabel samen te voegen tijdens het middelen

  4. Importeer Excel-gegevens naar relationele tabellen op MySQL