how to use copy statement in postgresql to load data from a text file where the file has an escape character as a delimiter into a postgresql table?
Is there any otherway of loading data from textfile into a PostgreSQL table?
|
how to use copy statement in postgresql to load data from a text file where the file has an escape character as a delimiter into a postgresql table? Is there any otherway of loading data from textfile into a PostgreSQL table? |
|||
|
|
|
pg loader emulates oracles sql loader: http://pgfoundry.org/projects/pgloader/ pg bulkload is used to load lots of data in an otherwise offline db. Useful for large data warehouses, fast, and somewhat dangerous and quirky: |
|||
|
|
|
You should use COPY with the |
|||
|