Database backup and restore in pg xbade++

Use this forum for questions and answers regarding PostGreSQL and the PGDBE.
Post Reply
Message
Author
User avatar
unixkd
Posts: 586
Joined: Thu Feb 11, 2010 1:39 pm

Database backup and restore in pg xbade++

#1 Post by unixkd »

Hi all

Any member with xbase++ procedure/function/class for backup and restore of databases in postgresql.

Thanks

Joe

k-insis
Posts: 129
Joined: Fri Jan 28, 2011 4:07 am

Re: Database backup and restore in pg xbade++

#2 Post by k-insis »

- Backup is done with pg_dump utility
- Restore is done with psql / pg_restore utilities.
- Partial backups / restores on schema, table, procedures, views, etc are of course doable.

Those utils handle every complexity that is on server.

Interactive way can be done in dbeaver .

Just out of curiosity - Why would you need to have such utility in xpp ?


unixkd wrote: Thu Mar 27, 2025 12:29 pm Hi all

Any member with xbase++ procedure/function/class for backup and restore of databases in postgresql.

Thanks

Joe

User avatar
Tom
Posts: 1246
Joined: Thu Jan 28, 2010 12:59 am
Location: Berlin, Germany

Re: Database backup and restore in pg xbade++

#3 Post by Tom »

You may directly create a backup of the physical files where your database is stored. Open pgAdmin, select your database and open the query tool. Type this command:

Code: Select all

show data_directory;
It shows where the database physically resides on your machine. Backup this folder. In case, you may also restore those files.
Best regards,
Tom

"Did I offend you?"
"No."
"Okay, give me a second chance."

k-insis
Posts: 129
Joined: Fri Jan 28, 2011 4:07 am

Re: Database backup and restore in pg xbade++

#4 Post by k-insis »

This is not advisable method by Postgresql official documentation:

https://www.postgresql.org/docs/16/backup-file.html


Tom wrote: Mon Mar 31, 2025 3:52 am You may directly create a backup of the physical files where your database is stored. Open pgAdmin, select your database and open the query tool. Type this command:

Code: Select all

show data_directory;
It shows where the database physically resides on your machine. Backup this folder. In case, you may also restore those files.

User avatar
Tom
Posts: 1246
Joined: Thu Jan 28, 2010 12:59 am
Location: Berlin, Germany

Re: Database backup and restore in pg xbade++

#5 Post by Tom »

Those limitations are easy to handle. And I didn't say that this is best practice; it's just a way to create a backup. You don't need to have an active connection to your server to do that. Besides, the statement can be used from inside an Xbase++-application (same with dump, I know).
Best regards,
Tom

"Did I offend you?"
"No."
"Okay, give me a second chance."

Post Reply