Wikipedia

Search results

what does "2>&1" do in crontab?

What does "2>&1" do in crontab?


Example:
01 * * * * /oracle/work/ak/test.sh >/oracle/work/ak/logtest.out  2>&1

The command 2>&1 is to prevent crontab sending an email (sendmail on /var/mail/root) when the script fails. so, if the error occurs when the crontab script fails, then the email will dump to logtest.out not on /var/mail/root.

here we go,
The 2>&1 just redirects Channel 2 (Standard Error) and Channel 1 (Standard Output) to the same place which in this context is Channel 1 (Standard Output), and thence your log file.
If all output from a cron is redirected to a file, it will not generate an email of the output to Stdout or Stderr.

Hope this helps ;-)

CONTROL_FILE_RECORD_KEEP_TIME parameter

CONTROL_FILE_RECORD_KEEP_TIME parameter

scenario : RMAN - Not able to retained the backup more than 20 days, But configured as 45 days. 

Oracle says :


RMAN backup keeps the backup metadata information in the reusable section of the controlfile. Its depends on the parameter CONTROL_FILE_RECORD_KEEP_TIME. CONTROL_FILE_RECORD_KEEP_TIME specifies the minimum number of days before a reusable record in the control file can be reused. 

In the event a new record needs to be added to a reusable section and there is not enough space then it will delete the oldest record, which are aged enough.

Backup retention policy is the rule to set regarding which backups must be retained (whether on disk or other backup media) to meet the recovery and other requirements.

If the CONTROL_FILE_RECORD_KEEP_TIME is less than the retention policy then it may overwrite reusable records prior to obsoleting them in the RMAN metadata. Therfor it is recommended that the CONTROL_FILE_RECORD_KEEP_TIME should set to a higher value than the retention policy.

Formula

CONTROL_FILE_RECORD_KEEP_TIME = retention period + level 0 backup interval + 1

For e.g.

e.q. level 0 backup once a week with retention policy of a recovery windows of 45 days then in this 
case the CONTROL_FILE_RECORD_KEEP_TIME should be 45+7+1=53

SQL> SHOW PARAMETER KEEP TIME;

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
control_file_record_keep_time        integer     7

SQL> ALTER SYSTEM SET CONTROL_FILE_RECORD_KEEP_TIME=53 SCOPE=BOTH;

** Now you can able to retain the backup .