Oracle Fachvokabular
Begriffe und Erklärungen (Oracle Fachvokabular)
Begriffe und Erklärungen (Oracle Fachvokabular)
Set of flashcards Details
Flashcards | 300 |
---|---|
Language | English |
Category | Computer Science |
Level | Other |
Created / Updated | 23.02.2017 / 23.02.2017 |
Weblink |
https://card2brain.ch/box/20170223_oracle_sql
|
Embed |
<iframe src="https://card2brain.ch/box/20170223_oracle_sql/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
|
Active Session History (ASH)
Sampled data at specified intervals from the current state
of all active sessions. The data is collected in memory and can be accessed by v$ views.
aggregate functions
Functions that operate on groups of rows, also known as group
functions. The exact number of inputs for aggregate functions is not determined until the
query is executed and all rows are fetched. This differs from single-row functions, in which
the number of inputs is known at parse time, before the query is executed.
alert log file
A file where Oracle Database writes information about the database startups,
shutdown, check points, redo log switches, errors, and warning information.
anonymous block
An unnamed PL/SQL program.
archived redo log file
A file that contains the contents of a previously used redo log file.
It’s created only when the database is operating in ARCHIVELOG mode.
ARCHIVELOG mode
A database configuration in which redo log files are copied to the
archive log destination, which ensures that they won’t be overwritten and lost. These
archived logs are used primarily for media recovery.
ARCn
An Oracle background process that copies the online redo log files to an archived
log destination.
arithmetic operators
Operators used to manipulate information in the arithmetic expressions.
Addition (+), subtraction (–), multiplication (*), and division (/) are the arithmetic
operators.
auditing
The monitoring and recording of specific database activities.
Automated Database Diagnostic Monitoring (ADDM)
The process that analyzes the data in the Automatic Workload Repository (AWR) to identify
sources of potential performance bottlenecks and that recommends solutions for correcting
the problem. See also Automatic Workload Repository (AWR).
automated maintenance tasks
Tasks performed by Oracle Database to gather database
statistics, run the segment-space advisor periodically, and so on.
Automated Storage Management (ASM)
A type of storage mechanism that is new in
Oracle 10g. Oracle manages the storage definitions of the database within a second database
used exclusively by ASM to keep track of the disk allocations for your databases.
Automatic Memory Management (AMM)
A mechanism to manage the memory requirement automatically by allocating the total memory to Oracle. Oracle will manage the SGA and PGA based on demand.
Automatic Shared Memory Management (ASMM)
mechanism to manage the shared memory requirement automatically by allocating the memory to Oracle. Oracle will manage
the individual pools in SGA based on demand.
Automatic Workload Repository (AWR)
The collection of tables, owned by the SYSMAN schema, that stores the performance statistics gathered from the system global area (SGA)
by the Memory Monitor (MMON) background process.
B-tree index
An index database object that organizes table data in a binary tree format.
back up to trace
A method of backing up the control file contents to a text file in the location specified.
backup sets
A set of Recovery Manager (RMAN) files that contains the saved data from a backup.
base tables
The tables used to define a view.
baseline metrics
A collection of performance statistics against which current or future database performance is measured to determine whether a significant performance deviation has occurred.
bigfile tablespace
A tablespace built on a single data file that can be up to 232 data blocks in size.
binary operators
Operators that take two operands. All operators are binary, except the + or – used to represent the sign of a numeric value.
bitmap index
An index database object that organizes table data in a series of bitmaps. A bitmap index is analogous to a two-dimensional matrix, where index keys and table rows are the axes.
block
The smallest unit of data storage in the database.
block change tracking file
A file that tracks the blocks changed since the last incremental backup, saving time during an incremental backup because not all blocks in every data file need to be checked for changes.
cardinality
The number of distinct values. If a table has a cardinality of 1,000, it has 1,000 rows. If a column has a cardinality of 30, it has 30 distinct values (there may be 1,000 rows but only 30 distinct values).
Cartesian join
A join that joins two tables with no common condition, also known as a cross join. Each row from the first table is joined against every row in the second table.
CASE
An expression that can be used to derive IF... THEN... ELSE logic in SQL.
change vectors
A description of a change made to a single block in the database.
CHAR
Datatype used to store fixed-length character data.
checkpoint
An event during which the dirty data-block buffers are flushed to disk and database files are updated to reflect this action. The database is put into a consistent state.
checkpoint (CKPT)
process The Oracle background process that updates the control file and the data file headers to reflect the last successful transaction by recording the last system change number (SCN).
column
The vertical space in a table or a view that holds a specific domain of data. In the relational model, an entity has attributes. When this model is implemented in an Oracle Database, an entity becomes a table, and an attribute becomes a column.
column alias
Another name for the column to display with the query results. Alias names can provide meaningful names for the result set.
COMMIT
The SQL command for making permanent the changes made during a transaction.
comparison operators
Operators that compare two values or expressions and give a Boolean result of TRUE, FALSE or NULL.
complex join
A join that includes additional filter criteria along with the join conditions in the WHERE clause.
compound query
A query that includes a set operator to join two or more queries.
concatenation operator
Operator used to join two text strings. The operator is ||.
concurrency
The condition where many users/sessions can access and modify data at the same time.