Home » Oracle » Oracle Database » Page 53

Oracle Database

An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve related information. A database server is the key to solving the problems of information management.Many companies has implemented their data in Oracle. Most of them are mission critical. So Oracle database concept need to be very clear to manage these mission critical things. At the same time Oracle database needs to deliver high performance also. A database server also prevents unauthorized access and provides efficient solutions for failure recovery.

Below section I have tried to present all the important features in Oracle Database management

Oracle Advanced Queuing

Oracle Advanced Queuing provides message queuing as an integrated part of the Oracle Server, thereby creating a message-enabled database. Oracle uses the following components to deliver AQ fuctionality: Message A message is the smallest unit of information inserted into and retrieved from a queue. It contains user data (payload) in the form of an object …

Oracle Advanced Queuing Read More »

How to create ADDM task and check its report

In this post, I will explain How to create ADDM task  and check its report We are using start snapshot as 900 And end snapshots as 950 BEGIN — Create an ADDM task. DBMS_ADVISOR.create_task ( advisor_name      => ‘ADDM’, task_name         => ‘900_950_AWR_SNAPSHOT’, task_desc         => ‘Advisor for snapshots 900 to 950.’); — Set the start and end …

How to create ADDM task and check its report Read More »

Reserved keywords in Oracle

There are certain keywords in oracle which can be used restrictively only. These values are defined in v$reserved_words table SQL> desc v$reserved_words; Name Null? Type —————————————– ——– —————————- KEYWORD VARCHAR2(30) LENGTH NUMBER RESERVED VARCHAR2(1) RES_TYPE VARCHAR2(1) RES_ATTR VARCHAR2(1) RES_SEMI VARCHAR2(1) DUPLICATE VARCHAR2(1) -A value of column reserved Y means that the keyword cannot be used …

Reserved keywords in Oracle Read More »

Scroll to Top