Skip to main content
Solved

Is there any downside to enabling table level backups?

  • April 5, 2024
  • 4 replies
  • 83 views

clecky
Vaulter
Forum|alt.badge.img+10

This is with respect to Oracle clients.

This feature is disabled by default, I would assume that there must be a reason as table level restores seems to be an awesome feature.

Seems like a huge pro.

What are the cons?

Best answer by Sunil

Not much though. The table metadata size isn’t proportional to the size of the database. And it’s not straight forward to predict. A very small DB can have a complex schema with many objects (possibly grow in the future). And a huge DB can have fairly simple schema with a handful of objects.

Either case, I wouldn’t expect more than or even close to 5% change.

 

Thanks,

Sunil

4 replies

Sunil
Vaulter
Forum|alt.badge.img+13
  • Vaulter
  • April 5, 2024

Yes, this is a very useful feature when you need to restore only one or a few tables due to logical errors or corruptions.

However, the downside is the additional processing time and storing index during backup to collect and backup the table metadata. This is required to be able to browse at the table level and restore.

 

Thanks,

Sunil


clecky
Vaulter
Forum|alt.badge.img+10
  • Author
  • Vaulter
  • April 5, 2024

Hi Sunil,

Thanks for the response, is there a rule of thumb that can be used to determine the effects on backup times and indexing size?

 

What I am trying to understand is how dramatic is the change 5%, 10%, 50%?

 

 


Sunil
Vaulter
Forum|alt.badge.img+13
  • Vaulter
  • Answer
  • April 5, 2024

Not much though. The table metadata size isn’t proportional to the size of the database. And it’s not straight forward to predict. A very small DB can have a complex schema with many objects (possibly grow in the future). And a huge DB can have fairly simple schema with a handful of objects.

Either case, I wouldn’t expect more than or even close to 5% change.

 

Thanks,

Sunil


christopherlecky
Explorer
Forum|alt.badge.img+16

Not much though. The table metadata size isn’t proportional to the size of the database. And it’s not straight forward to predict. A very small DB can have a complex schema with many objects (possibly grow in the future). And a huge DB can have fairly simple schema with a handful of objects.

Either case, I wouldn’t expect more than or even close to 5% change.

 

Thanks,

Sunil

Awesome.

Thanks Sunil.