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); } ?>

Monday, September 17, 2012

OBIEE WHAT DOES IT MEAN?

Oracle Business intelligence Enterprise edition (OBIEE)  According to Oracle, Oracle Business Intelligence Enterprise Edition 11g (OBIEE) is a comprehensive business intelligence platform that delivers a full range of analytic and reporting capabilities. Designed for scalability, reliability, and performance, Oracle Business Intelligence Enterprise Edition 11g delivers contextual, relevant and actionable insight to everyone in an organization, resulting in improved decision-making, better-informed actions, and more efficient business processes....

Thursday, June 7, 2012

LAUNCHING SOON! A NEW TUTORIAL On ORACLE DATABASE 11G OCA!

Get your OCA CERTIFICATION ITS EA...

Thursday, April 12, 2012

HOW TO DOWNLOAD ORACLE 11G FOR FREE

Check but a free tutorial on how to download oracle for f...

Monday, March 19, 2012

TYPES OF DATATYPES FOUND IN AN ORACLE DATABASE!

Types of Oracle Database Datatypes varchar2 this is the most common  datatype it allows you to store  alphanumeric characters. The length of varchar2 is 4000 bytes or characters. This was what set Oracle apart from other databases in prior years. While other databases had lengths up to 2000 Oracle had its character length set at 4000 Number  datatype: allows you to store an interger as well as decimal values date datatype not to be confused with the time stamp datatype stores the date value - the default way of...

Sunday, March 18, 2012

WHAT IS THE SGA IN ORACLE AND WHAT IS IN IT??

Oracle memory is called the SGA: there are different components of the SGA. Every database will have a section within the memory (SGA) referred to as the database buffer cache!  It is split up into little blocks in memory called the oracle data blocks. Each one of these blocks will be 8k in size. There is an algorithm that gets applied to the database buffer pool, it is the LRU (least recently used).. As the blocks get touched they get placed toward the LRU to get written to disk, Oracle keeps the most used in memory for easier access. Another...

HOW DO YOU CREATE THE ORACLE PASSWORD FILE?

Oracle password file  is created using a utility called ORAPWD! You will also use this utility to make changes...

Saturday, March 17, 2012

WHAT ARE YOUR ONLINE REDO LOGS?

An online redo log tracks all of your changes to your tables.  In order to get started, you need a minimum of  two to get started on your online database; this redo log group is like a recorder, that records changes going on in your oracle database. However, you will end up having more than one group. You could end up with three groups or more. Oracle  recommends that you multiplex your redo logs. When this redo log gets filled oracle does what is called a check point and then it writes to the next group. This redo logs are used...