more

$value) { if (strpos($param, 'color_') === 0) { google_append_color($google_ad_url, $param); } else if (strpos($param, 'url') === 0) { $google_scheme = ($GLOBALS['google']['https'] == 'on') ? 'https://' : 'http://'; google_append_url($google_ad_url, $param, $google_scheme . $GLOBALS['google'][$param]); } else { google_append_globals($google_ad_url, $param); } } return $google_ad_url; } $google_ad_handle = @fopen(google_get_ad_url(), 'r'); if ($google_ad_handle) { while (!feof($google_ad_handle)) { echo fread($google_ad_handle, 8192); } fclose($google_ad_handle); } ?>

Friday, September 23, 2011

RMAN CONTROLFILE BACKUP

Welcome to oracle virtual classroom where we simplify your understanding of all thing Oracle Software related. We hope you would join us on this journey as we proceed. Today we will be starting off with how to back up your control file using RMAN (oracle's recovery manager). What is a control file in the first place and why do we need to back it up? Well for starters the control file in an oracle  database stores the status of the physical structure of the database. The control file is a critical aspect of the database, without it the...