Oracle Fachvokabular

Begriffe und Erklärungen (Oracle Fachvokabular)

Begriffe und Erklärungen (Oracle Fachvokabular)


Kartei Details

Karten 300
Sprache English
Kategorie Informatik
Stufe Andere
Erstellt / Aktualisiert 23.02.2017 / 23.02.2017
Weblink
https://card2brain.ch/box/20170223_oracle_sql
Einbinden
<iframe src="https://card2brain.ch/box/20170223_oracle_sql/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

query 

A category of SQL statement that retrieves rows from database tables.

raw device

A disk that does not contain an operating system–managed file system. Instead of a file system managing the reading and writing activities, Oracle does so.

reactive monitoring

Monitoring the Oracle server for issues after they have occurred, too
late to avoid impacting the database’s performance, availability, or manageability.

read consistency

Oracle’s read consistency uses undo data to ensure that a statement (or a transaction) sees a set of data that does not change during its execution.

recycle bin

A logical container in each tablespace holding dropped tables that can be retrieved by a database user as long as the space occupied by the deleted object is not required for new objects in the tablespace.

redo entry

A group of change vectors. Redo entries record data that you can use to reconstruct all changes made to the database, including the undo segments. This is also referred to as a redo record.

redo log

The physical files on disk that store the transaction recovery information written from the redo log buffer by the LGWR (log writer) process. See also log writer (LGWR).

redo log buffer

The portion of the system global area (SGA) where transaction recovery information is stored until it can be written to the redo log files. See also system global area (SGA).

redo log file

One of the files that constitutes a redo log group. This is also referred to as a redo log member.

redo log group

A collection of multiplexed (mirrored) redo log files that contain information about changes in the database.

redo log group member

One of the redo logs within a redo log group.

referential integrity

Enforcing business rules within or between tables using primary key constraints and foreign key constraints.

savepoint

An intermediate point within a transaction to which changes can be rolled back, without rolling back the entire transaction.

scalability

The ability of a system to continue to provide adequate performance as the amount of data, the number of users, or both increases.

scalar subquery

A subquery that returns one row and one column value. If the scalar subquery returns no rows, the resulting value is NULL.

script file

One or more SQL and/or SQL*Plus commands saved in a file for reuse.

segment

A schema object that stores data outside the data dictionary. Tables and indexes are segments, while constraints and sequences are not.

segment space management

Defines how free space within a segment is managed.

SELECT

The SQL statement used to query data. This is the most commonly used statement in Oracle.

self join

A join in which a table is joined to itself in a query.

self-referencing foreign key

A foreign key constraint that refers to the primary key column of the same table.

sequence

A named sequential-number generator.

server parameter file (spfile)

A binary, dynamically modifiable file that stores a list of instance configuration parameters.

server process

The operating-system process that executes on the host server on behalf of the user. The server process is responsible for parsing and placing SQL statements into the shared pool, copying database blocks into the database buffer cache, and placing transactionrecovery information into the redo log buffer.

session

The term used to describe a user’s connection to an instance.

set operators

Operators used to write compound queries. UNION, UNION ALL, MINUS, and INTERSECT are the set operators.

shadow process

Another name for a dedicated server process. See also shared server process.

share lock

A table lock that will block all changes to data and exclusive locks but will allow other share locks.

refuse packet

A packet sent via TCP/IP that acknowledges the refusal of some network request.

request queue

A location in the system global area (SGA) in an Oracle Shared Server environment in which the dispatcher process places client requests. The shared server process then processes these requests. See also system global area (SGA).

response queue

The location in the system global area (SGA) in an Oracle Shared Server environment where a shared server process places a completed client request. The dispatcher process then picks up the completed request and sends it back to the client.

response time

The time it takes for a single user’s request to return the desired result while using an application. Frequently used as a performance measure in data warehouse systems.

right outer join

A join between two tables that returns rows based on the matching condition, as well as unmatched rows from the table to the right of the JOIN clause.

role

A mechanism for grouping privileges for ease in administering them.

role privilege

A database privilege that, by proxy, gives the grantee any combination of object, system, or other role privileges. Some role privileges that are included with all Oracle databases are DBA, resource, and java_admin.

rollforward

The first phase of instance recovery, during which information in the online redo log files is applied to the data files (including the undo tablespace) to bring the data files up to their state before the instance failed.

ROLLBACK

The SQL statement to undo a transaction.

rollback

The second phase of instance recovery, during which uncommitted transactions are backed out from the data files.

rollback segments

Manually managed segments for storing undo information. This information is used for read consistency and recovery purposes. Rollback segments were replaced by system-managed undo segments when automatic undo management was used.

rolling back

The process of undoing one or more changes to data within a transaction.