백업쉘이 크론(crontab)에 등록되어 있습니다.
truncate table이 작업이 사전에 있는데.
그것 때문에 발생하는 것인지 ??
풀 덤프 백업은 보통 하루에 몇번정도 수행하나요 ?!
고수님들 답변 부탁해요..^^
#!/usr/bin/csh
source /sybase1/.cshrc
cd /backup/dumpbk/COMPNAY01db
rm -f /backup/dumpbk/COMPNAY01db/COMPNAY01db_0001.dmp
isql -Usa -P < COMPNAY01db.sql
SQL문
checkpoint
go
dump tran COMPNAY01db with no_log
go
dump database COMPNAY01db to '/backup/dumpbkup/COMPNAY01db/COMPNAY01db_0001.dmp'
go
Msg 4207, Level 16, State 1:
Server 'CALL1', Line 1:
Dump transaction is not allowed because a non-logged operation was performed on
the database. Dump your database or use dump transaction with truncate_only
until you can dump your database.
|