Does JIRA use OIDs in database?

Warren Jones August 18, 2014

To upgrade a PostgreSQL database, you need to dump and restore, as described here:

http://www.postgresql.org/docs/8.4/static/install-upgrading.html

The "pg_dumpall" has a special option ("-o") to preserve OIDs, for applications that use them. Does anyone know if JIRA is such an application?

Thanks!

1 answer

0 votes
Tiago Comasseto
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 18, 2014

Hi, I can't tell for sure, but I've been using this command to backup/restore postgres databases for quite some time now and never had a problem:

pg_dump dbname -h localhost -U postgres > backup.sql

I hope it helps.

Cheers

Suggest an answer

Log in or Sign up to answer