> Step 2. Run restore script (dbrestore.sh) on another MaxDB server > > DB_NAME=$1 > > _cmd=`cat <<EOF | dbmcli -d $DB_NAME -u dbm,dbm 2>&1 > db_admin > backup_media_put data db_backup.full FILE DATA 0 8 YES > util_connect dbm,dbm > recover_start data > util_execute clear log > db_online > quit > EOF` > _test=`echo $_cmd | grep ERR` > if [ "$_test" != "" ]; then > echo "$_cmd" 1>&2 > exit 1 > fi
Hi, you do not recover your log! By only recovering your data, you only recover data at the time you made the backup. Any changes since then are lost. You even cannot recover them by recovering the log-backups on your second server, because it had been online after clearing the log. regards, martin -- MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
