Save PL/pgSQL output from PostgreSQL to a CSV file

后端 未结 18 2006
名媛妹妹
名媛妹妹 2020-11-22 11:56

What is the easiest way to save PL/pgSQL output from a PostgreSQL database to a CSV file?

I\'m using PostgreSQL 8.4 with pgAdmin III and PSQL plugin where I run que

相关标签:
18条回答
  • 2020-11-22 12:21

    I tried several things but few of them were able to give me the desired CSV with header details.

    Here is what worked for me.

    psql -d dbame -U username \
      -c "COPY ( SELECT * FROM TABLE ) TO STDOUT WITH CSV HEADER " > \
      OUTPUT_CSV_FILE.csv
    
    0 讨论(0)
  • 2020-11-22 12:23

    JackDB, a database client in your web browser, makes this really easy. Especially if you're on Heroku.

    It lets you connect to remote databases and run SQL queries on them.

                                                                                                                                                           Source
    (source: jackdb.com)


    Once your DB is connected, you can run a query and export to CSV or TXT (see bottom right).


    jackdb-export

    Note: I'm in no way affiliated with JackDB. I currently use their free services and think it's a great product.

    0 讨论(0)
  • 2020-11-22 12:24

    If you're interested in all the columns of a particular table along with headers, you can use

    COPY table TO '/some_destdir/mycsv.csv' WITH CSV HEADER;
    

    This is a tiny bit simpler than

    COPY (SELECT * FROM table) TO '/some_destdir/mycsv.csv' WITH CSV HEADER;
    

    which, to the best of my knowledge, are equivalent.

    0 讨论(0)
  • 2020-11-22 12:27

    I'd highly recommend DataGrip, a database IDE by JetBrains. You can export a SQL query to a CSV file, and can set up ssh tunneling with ease. When the documentation refers to "result set", they mean the result returned by a SQL query in the console.

    I'm not associated with DataGrip, I just love the product!

    0 讨论(0)
  • 2020-11-22 12:29

    Do you want the resulting file on the server, or on the client?

    Server side

    If you want something easy to re-use or automate, you can use Postgresql's built in COPY command. e.g.

    Copy (Select * From foo) To '/tmp/test.csv' With CSV DELIMITER ',' HEADER;
    

    This approach runs entirely on the remote server - it can't write to your local PC. It also needs to be run as a Postgres "superuser" (normally called "root") because Postgres can't stop it doing nasty things with that machine's local filesystem.

    That doesn't actually mean you have to be connected as a superuser (automating that would be a security risk of a different kind), because you can use the SECURITY DEFINER option to CREATE FUNCTION to make a function which runs as though you were a superuser.

    The crucial part is that your function is there to perform additional checks, not just by-pass the security - so you could write a function which exports the exact data you need, or you could write something which can accept various options as long as they meet a strict whitelist. You need to check two things:

    1. Which files should the user be allowed to read/write on disk? This might be a particular directory, for instance, and the filename might have to have a suitable prefix or extension.
    2. Which tables should the user be able to read/write in the database? This would normally be defined by GRANTs in the database, but the function is now running as a superuser, so tables which would normally be "out of bounds" will be fully accessible. You probably don’t want to let someone invoke your function and add rows on the end of your “users” table…

    I've written a blog post expanding on this approach, including some examples of functions that export (or import) files and tables meeting strict conditions.


    Client side

    The other approach is to do the file handling on the client side, i.e. in your application or script. The Postgres server doesn't need to know what file you're copying to, it just spits out the data and the client puts it somewhere.

    The underlying syntax for this is the COPY TO STDOUT command, and graphical tools like pgAdmin will wrap it for you in a nice dialog.

    The psql command-line client has a special "meta-command" called \copy, which takes all the same options as the "real" COPY, but is run inside the client:

    \copy (Select * From foo) To '/tmp/test.csv' With CSV
    

    Note that there is no terminating ;, because meta-commands are terminated by newline, unlike SQL commands.

    From the docs:

    Do not confuse COPY with the psql instruction \copy. \copy invokes COPY FROM STDIN or COPY TO STDOUT, and then fetches/stores the data in a file accessible to the psql client. Thus, file accessibility and access rights depend on the client rather than the server when \copy is used.

    Your application programming language may also have support for pushing or fetching the data, but you cannot generally use COPY FROM STDIN/TO STDOUT within a standard SQL statement, because there is no way of connecting the input/output stream. PHP's PostgreSQL handler (not PDO) includes very basic pg_copy_from and pg_copy_to functions which copy to/from a PHP array, which may not be efficient for large data sets.

    0 讨论(0)
  • 2020-11-22 12:29

    Per the request of @skeller88, I am reposting my comment as an answer so that it doesn't get lost by people who don't read every response...

    The problem with DataGrip is that it puts a grip on your wallet. It is not free. Try the community edition of DBeaver at dbeaver.io. It is a FOSS multi-platform database tool for SQL programmers, DBAs and analysts that supports all popular databases: MySQL, PostgreSQL, SQLite, Oracle, DB2, SQL Server, Sybase, MS Access, Teradata, Firebird, Hive, Presto, etc.

    DBeaver Community Edition makes it trivial to connect to a database, issue queries to retrieve data, and then download the result set to save it to CSV, JSON, SQL, or other common data formats. It's a viable FOSS competitor to TOAD for Postgres, TOAD for SQL Server, or Toad for Oracle.

    I have no affiliation with DBeaver. I love the price and functionality, but I wish they would open up the DBeaver/Eclipse application more and made it easy to add analytics widgets to DBeaver / Eclipse, rather than requiring users to pay for the annual subscription to create graphs and charts directly within the application. My Java coding skills are rusty and I don't feel like taking weeks to relearn how to build Eclipse widgets, only to find that DBeaver has disabled the ability to add third-party widgets to the DBeaver Community Edition.

    Do DBeaver users have insight as to the steps to create analytics widgets to add into the Community Edition of DBeaver?

    0 讨论(0)
提交回复
热议问题