If I am doing a database backup with the following system utility call:
CALL SYSCS_UTIL.SYSCS_BACKUP_DATABASE('$BAK_DIR');I want to know if this is safe to call multiple times; in other words performing multiple backups into the same directory? When you call backup multiple times, will Derby cleanup any unused or out-date-file or can I end up with a stale file and/or directory in the backup directory that isn't used anymore? Thanks!
