-- Connexion à l'utilisateur postgres sur la base de données postgres, | |
-- pour les deux serveurs postgresql1101 et postgresql1102. | |
-- Instruction hors transaction | |
create database cadastredb; | |
-- Après création de la base de données cadastredb sur les deux serveurs : | |
create user cadastre with password 'Welcome!2019' login; | |
alter database cadastredb owner to cadastre; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment