“Postgres ALL TABLE WENTY” Kod odpowiedzi

Zmiana właściciela Postgresql DB


        
            
        
     ALTER DATABASE target_database OWNER TO new_onwer;
Graceful Gnat

Postgres ALL TABLE WENTY

ALTER TABLE <tablename> OWNER TO <username>
Confused Centipede

Postgres zmienia właściciela wszystkich tabel


#TABLES
for tbl in `psql -qAt -c "select tablename from pg_tables where schemaname = 'public';" YOUR_DB` ; do  psql -c "alter table \"$tbl\" owner to NEW_OWNER" YOUR_DB ; done

#SEQUENCES
for tbl in `psql -qAt -c "select sequence_name from information_schema.sequences where sequence_schema = 'public';" YOUR_DB` ; do  psql -c "alter sequence \"$tbl\" owner to NEW_OWNER" YOUR_DB ; done

#VIEWS
for tbl in `psql -qAt -c "select table_name from information_schema.views where table_schema = 'public';" YOUR_DB` ; do  psql -c "alter view \"$tbl\" owner to NEW_OWNER" YOUR_DB ; done
Matteoweb

Odpowiedzi podobne do “Postgres ALL TABLE WENTY”

Pytania podobne do “Postgres ALL TABLE WENTY”

Więcej pokrewnych odpowiedzi na “Postgres ALL TABLE WENTY” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu