0
votes
1answer
33 views

How to dump whole csv database to format readable by Excel (csv is OK).

This may be a futile excersise, but one of my client totally insisted that he needs whole database dump to perform analytics in Excel. There are many answers to how to dump single table to csv (like ...
0
votes
1answer
133 views

PostgreSQL - how to restore very larger database

I got a little problem when I try to restore a large database (almost 32Go in custom format) on my devel database node (this node has less RAM, CPU... than my production server). My database dumps ...
0
votes
1answer
133 views

Restore or convert file.dump into pgAdmin

I have a problem with a dump file that client give me to make a file to connect with postgres database in php, and I do this first Rename this file ssdf_master.dump to ssdf_master.sql to execute in ...
0
votes
1answer
130 views

Restoring a Postgresql dump file

I need to restore a Postgresql dump file to get some data out of it (note never used Postgresql before) I've tried using the command line using the following (with relevant details filled in) psql ...
0
votes
2answers
117 views

create backup files with date

I'm doing a dump like this pg_dump prod-db -U postgres > prod-db.sql, but would be cool if I could do a dump like pg_dump prod-db -U postgres > prod-db-{date}.sql and be able to generate a file ...
1
vote
1answer
167 views

VB Script PostgreSQL pg_dump

I'm writing a backup script in VBScript for a PostgreSQL 9.1 database on a Window 7. Set objShell = WScript.CreateObject("WScript.Shell") objShell.Run postgresqlPath & "pg_dump.exe " & ...
1
vote
2answers
351 views

COPY command postgres syntax error

I am trying to export from a large postgres 8.1 table a couple of rows using copy (select * from tablename limit 100) to 'absolute path to file'; but I get ERROR: syntax error at or near "(" ...
1
vote
2answers
68 views

Adding columns to a model in a Rails 3 app for a database with the schema dumped from heroku

In my rails app I have a model Events. It has several columns which were created through following this guide https://devcenter.heroku.com/articles/export-from-heroku-postgres and then performing ...
0
votes
1answer
86 views

How to verify large postgresql Databases running different version have the same data without dumping

How Would I verify that the data in a 8.3 postgresql DB is the same as the data in a 9.0 DB When I did a sql dump on a example table there we3re many differences that showed but this was due to 9.0 ...
4
votes
1answer
979 views

pg_dump: too many command line arguments

what is wrong with this command: pg_dump -U postgres -W admin --disable-triggers -a -t employees -f D:\ddd.txt postgres This is giving error of too many command-line arguments
2
votes
3answers
198 views

Insert a database dump with ruby-pg

I have a database dump file with all sorts of insert statements and the occasional "\connect " command The problem is that PG::Connection.exec() doesn't accept psql's \-commands like \i or \c etc. ...
1
vote
4answers
8k views

How to restore PostgreSQL dump file into Postgres databases?

I have a dump file with a .SQL extension (in fact it is a plain-text SQL file). I want to restore it into my created databases. I am using pgAdmin III, and when I use its "Restore Wizard" it does not ...
1
vote
1answer
135 views

Updating PostgreSQL schema with schema dump

I have two servers: production and testing. Both of them run PostgreSQL. I made a lot of alterations on testing server, like ALTER table, CREATE INDEX etc. and want to transfer these alterations to ...
0
votes
1answer
359 views

Exclude function definitions when dumping a PostgreSQL database

I have a PostgreSQL database with PostGIS functions loaded into it. I would like to dump out the schema of the database, but pg_dump -s dumps out the functions along with the table definitions. Is ...
0
votes
4answers
2k views

How restore a PostgreSQL table from *.sql using pg_dump or psql?

I need to restore a big table (250mb) in PostgreSQL database in console tool. How I can do this using ps_dump or psql?
1
vote
2answers
757 views

Cannot flush Postgres DB in Django

I am trying to load the local postgres database with json dumped data(from online db) by using the loaddata command. But it fails with "Integrity Error" as I already had some data in the db with the ...
1
vote
2answers
689 views

Dump file from Sqlite3 to PostgreSQL: why do I always get errors when import it?

I have many tables in Sqlite3 db and now I want to export it to PostgreSQL, but all the time I get errors. I've used different techniques to dump from sqlite: .mode csv .header on .out ...
0
votes
1answer
553 views

PostgreSQL dump Temp table

I created a temp table in my PostgreSQL DB using the following query SELECT * INTO TEMP TABLE tempdata FROM data WHERE id=2004; Now I want to create a backup of this temp table tempdata. So i use ...
3
votes
4answers
367 views

PostgreSQL dump/restore

I don't want to Dump the entire table but only certain records in a table in my dump file and later restore the same. P.S.: I want to do the same for more than 1 table in my database but dump it in a ...
0
votes
0answers
112 views

Best practices to make a table dump in Rails [closed]

I need to make a dump from some postgresql tables and return it as a downloadable file . This file will be processed by an Android application and will recreate the data on the mobile device DB. This ...
2
votes
1answer
589 views

Import postgresql database dump

I have the following work flow which I'd like to automate with short PHP script. Download gzfile (with db dump) from specific URL (potentially FTP). Decode the file to txt. Import the txt to local ...
2
votes
2answers
804 views

(Ruby) How to dump a database?

I want to do a database dump through Ruby scripting, but I didn't find any class or script for do that. Ideally the dump should work for MySQL, PostgreSQL, SQLite, etc. (at least MySql and Pg). I ...
0
votes
2answers
592 views

How to backup some tables with data and some tables only schema PostgreSQL

I want to dump a database. I have three tables: table1 table2 table3 From table1 i want the schema plus data. From table2 and table3 i just want the schema. How do i do that?
1
vote
3answers
313 views

psql dumping a table and memory usage

Hello I would like to dump a postgres table to csv. The database is local to the (Linux) machine on which I am working. psql dev -U myusername -c "select * from control.mytable;" > mydata.csv ...
3
votes
3answers
4k views

MySql to PostgreSql migration

My postgresql is installed on windows, how can I migrate data from mysql db to postgresql. I've read tons of aricles. nothing helps :( Thanks. My actions: 1)mysql dump: mysqldump -h ...
2
votes
3answers
350 views

Dumping psql tables with specific prefixes

Im currently using the tool pg_dump to dump tables from my database. I would like to automate this process, however, i have not found a way to specify pg_dump to dump multiple databases that have the ...
1
vote
1answer
224 views

PHP adodb dump from one table to another

I've got a PHP development environment using PostgreSQL and a hosting environment using MySQL. I'm using adodb as an abstraction layer for easy migration between the two. I'd like to dump the MySQL ...
0
votes
2answers
3k views

How to use pg_dump / pg_dumpall with postgres DB?

I am uncertain if its the permissions issue or something I am doing wrong and any help will be greatly appreciated. I have a dedicated Ubuntu server with Postgres DB installed on it. I want to backup ...
1
vote
1answer
257 views

Stray line breaks spoil source code on dump/restore

To be concise: dump/restore process makes my functions’ source code look ugly! God knows why, but something adds extra line breaks to my beautifully formatted source code in a way that makes me really ...
1
vote
1answer
483 views

postgresql db structure script

How to get my db structure without the data, (schema, tables, ...) as a script by command line.
1
vote
2answers
538 views

Dump to CSV/Postgres memory

I have a large table (300 million lines) that I would like to dump to a csv - I need to do some processing that cannot be done with SQL. Right now I am using Squirrel as a client, and it does not ...
3
votes
6answers
2k views

Postgres pg_dump dumps database in a different order every time

I am writing a PHP script (which also uses linux bash commands) which will run through test cases by doing the following: I am using a PostgreSQL database (8.4.2)... 1.) Create a DB 2.) Modify the ...
0
votes
1answer
189 views

what's “\.” in postgresql dump file?

I have a Postgresql dump file which i'm trying to restore. I get this error regarding an invalid data i guess. ERROR: invalid input syntax for integer: "." and when i checked the file, there ...
3
votes
3answers
7k views

postgresql- restoring .dump file

I am new for psql. i got from my server data.dump file. I need to restore it in my local. i tried these commands. i) psql -U postgres dbname -f servicedb.dump Error: psql: warning: extra ...
0
votes
1answer
221 views

PostgreSQL, update existing rows with pg_restore

I need to sync two PostgreSQL databases (some tables from development db to production db) sometimes. So I came up with this script: [...] pg_dump -a -F tar -t table1 -t table2 -U user1 dbname1 | \ ...
14
votes
2answers
24k views

PostgreSQL: database restore from dump - syntax error

I'm trying to restore a PostgreSQL database by executing the SQL that pg_dump created, on an empty database. I'm getting this error: ERROR: syntax error at or near "\" LINE 5211: \. lines 5210 ...
2
votes
1answer
1k views

Can I selectively create a backup of Postgres database, with only certian tables?

Can I programatically(or whichever way works fine) create the backup of a database, with only the tables I want? I have around 100 tables in my database and I want only 10 tables backup(ofcourse all ...