What is schema ?
A schema is collection of database objects of a user. Read more »
A schema is collection of database objects of a user. Read more »
Each databases logically divided into one or more tablespaces one or more data files are explicitly created for each tablespace. Read more »
Every Oracle database contains a tablespace named SYSTEM, which is automatically created when the database is created. The SYSTEM tablespace always contains the... Read more »
There are tablespaces and database’s schema objects. Read more »
Oracle database is comprised of three types of files. One or more datafiles, two are more redo log files, and one or more control files. Read more »
Fact tables and dimension tables. A fact table contains measurements while dimension tables will contain data that will help describe the fact tables. Read more »
Passwords for SYS/CHANGE_ON_INSTALL, SYSTEM/MANAGER, and SAPR3/SAP should be changed for security reasons. The easiest way to change them is using the R3INST program.... Read more »
In earlier releases of Oracle it was better to put as much code as possible in procedures rather than triggers. At that stage procedures executed faster than triggers... Read more »
“Mutating” means “changing”. A mutating table is a table that is currently being modified by an update, delete, or insert statement. When... Read more »
DDL (Data Definition Language) statements are used to define the database structure or schema. Some examples: 1. CREATE - to create objects in the database 2. ALTER... Read more »
SQL> set sqlprompt “database-1 > ” database-1 > database-1 > Read more »
Sql> show user; Read more »
ORACLE_BASE is the root directory for oracle. ORACLE_HOME located beneath ORACLE_BASE is where the oracle products reside. Read more »
You get this error when you get a snapshot too old within rollback. It can usually be solved by increasing the undo retention or increasing the size of rollbacks.... Read more »
Use the buffer cache advisory over a given workload and then query the v$db_cache_advice table. If a change was necessary then I would use the alter system set db_cache_size... Read more »