summaryrefslogtreecommitdiff
path: root/tech/psql dump and restore.txt
diff options
context:
space:
mode:
Diffstat (limited to 'tech/psql dump and restore.txt')
-rw-r--r--tech/psql dump and restore.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/tech/psql dump and restore.txt b/tech/psql dump and restore.txt
new file mode 100644
index 0000000..92dc15d
--- /dev/null
+++ b/tech/psql dump and restore.txt
@@ -0,0 +1,11 @@
+psql back up and restore
+
+Backup:
+
+ $ pg_dump -U {user-name} -hlocalhost -d {source_db} > {dumpfilename.sql}
+
+Restore:
+
+ $ psql -U {user-name} -hlocalhost -d {desintation_db} < {dumpfilename.sql}
+
+