...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
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 | ||||
---|---|---|---|---|
| ||||
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 |