Skip to content

Instantly share code, notes, and snippets.

@achampav
Created July 15, 2019 16:26
Show Gist options
  • Save achampav/3f08cdbcf9770f46b52af38e9fe0a951 to your computer and use it in GitHub Desktop.
Save achampav/3f08cdbcf9770f46b52af38e9fe0a951 to your computer and use it in GitHub Desktop.
-- 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