Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
titleCrear Base de Datos
linenumberstrue
CREATE DATABASE <nombre bd>
WITH ENCONDING='UTF8'
OWNER=<nombre de usuario>
LC_COLLATE='es_UY.UTF-8'
LC_TYPE='es_UY.UTF-8'
CONNECTION LIMIT=-1;
Code Block
languagesql
titleComandos Basicos
POSTGRES ( en linea de comando)
__Generar Backup
pg_dump -U postgres -C -f C:\sample_backup
--Levantar Backup
psql -d postgres -U postgres -f C:\Temp\sample_backup