Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
PostgreSQL 11 Server Side Programming Quick Start Guide

You're reading from   PostgreSQL 11 Server Side Programming Quick Start Guide Effective database programming and interaction

Arrow left icon
Product type Paperback
Published in Nov 2018
Publisher
ISBN-13 9781789342222
Length 260 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Luca Ferrari Luca Ferrari
Author Profile Icon Luca Ferrari
Luca Ferrari
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Extension data and backups

As you have already seen, an extension can include pretty much any database object, including regular tables. Such tables can be populated when the extension is installed or updated. They can also be modified by users during the life cycle of the database.

By default, backup tools such as pg_dump do not include extension objects to be dumped, since they can always be recreated from the extension scripts. However, if the user changes the data in the extension tables, this data will be lost (or, more accurately, it will not be automatically backed up).

One solution could be to back up this data manually, but this is tedious work. PostgreSQL allows us to indicate that a specific table must be included into the backup, even if it belongs to an extension. This is done by invoking the pg_extension_config_backup() special function with the following arguments...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image