Oracle Fachvokabular
Begriffe und Erklärungen (Oracle Fachvokabular)
Begriffe und Erklärungen (Oracle Fachvokabular)
Fichier Détails
Cartes-fiches | 300 |
---|---|
Langue | English |
Catégorie | Informatique |
Niveau | Autres |
Crée / Actualisé | 23.02.2017 / 23.02.2017 |
Lien de web |
https://card2brain.ch/box/20170223_oracle_sql
|
Intégrer |
<iframe src="https://card2brain.ch/box/20170223_oracle_sql/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
|
connection
The communication channel between the user process and the server process.
consistency
A state maintained by the database. A statement/transaction sees a timeconsistent image of the data plus any uncommitted data from the statement/transaction.
consistent backup
A backup performed while the database is shut down and unavailable.
This is also referred to as offline backup.
Database Control
A web-based component of the Enterprise Management Framework for managing Oracle Database 10g. Database Control allows you to monitor and administer a single Oracle Database instance or a single Real Application Clusters (RAC) environment.
database templates
XML-based documents that the DBCA creates to store information about database definitions. The documents contain everything the DBCA needs to create a database. See also Database Configuration Assistant (DBCA).
Database Writer (DBWn)
The Oracle background process that is responsible for writing changed data-block buffers from the database buffer cache back to the data files on disk.
data files
The physical database files that store the database’s segments, such as tables, indexes, rollback, and partition.
datatype
A characteristic assigned to each column in a table that defines what type of data can be stored in the column and its valid values.
DATE
Datatype used to store date and time information.
DB Time
A cumulative measure of time spent by the database responding to user requests, including wait times for access to resources such as memory, disk, and CPU for all nonidle user sessions.
DBMS_DATAPUMP
The Procedural Language SQL (PL/SQL) package that is an API to Data Pump.
deadlock
A special kind of lock conflict that prevents two or more transactions from completing because each transaction has a lock on a resource needed by the other transaction.
declarative constraints
Constraints that are not enforced. These constraints will have a state of DISABLE NOVALIDATE.
dedicated server
A type of connection in which every client connection has an associated dedicated server process on the machine where the Oracle server exists. See also shared server process.
default role
A role initially enabled for every user session.
default tablespace
The tablespace where a user’s tables and indexes are stored if not declared explicitly.
deferred constraint checking
Constraint checking that is deferred to a transaction level. By default, constraints are checked at the statement level.
constraint
An optional schema object that restricts values in the dependent table to a specified condition. Constraints enforce business rules about data.
control file
A small binary file that contains metadata about the physical structure of the database, such as the database name, locations of the data files and redo logs, and recovery information.
conversion functions
Single-row functions used to convert the datatype of input between numeric, character, and datetime values.
correlated subquery
A subquery that references the column names of the parent query.
cost-based optimizer
The Oracle optimizer mode that uses statistics about the size, selectivity, and dispersion of the tables and indexes in the database to formulate the most efficient execution plan.
cross join
A join that joins two tables with no common condition, also known as a Cartesian join. Each row from the first table is joined against every row in the second table.
CURVAL
The sequence pseudocolumn that will return the last number generated from the sequence-number generator.
data block
The smallest unit of disk allocation in data or temp files, composed of one or more file-system blocks.
Data Control Language (DCL)
The category of SQL commands used to create objects in the database, including CREATE, ALTER and DROP.
Data Manipulation Language (DML)
The category of SQL commands used to create, modify, or remove data from a table, including INSERT, UPDATE and DELETE.
Data Recovery Advisor
A tool to identify failures, recommend resolution, and perform recovery action.
database
A collection of control files, data files, and redo logs.
database buffer cache
The portion of the system global area (SGA) where copies of the data blocks are cached in memory. See also system global area (SGA).
Database Configuration Assistant (DBCA)
A Java-based tool you can use to create Oracle databases. The DBCA can store and manage definitions of your databases in the form of templates that can be used to make copies of a database.
DELETE
SQL statement used to remove rows from a table.
DIAGNOSTIC_DEST
Parameter specifying the location of the parent directory where all trace, log, and dump files will be written on the server.
directory object
A database object that identifies a file-system location. Directory objects are used by Data Pump jobs.
dispatcher
A process in an Oracle Shared Server environment that manages requests from one or more client connections.
DUAL
A dummy table in the Oracle Database. DUAL has one column and one row. It is mainly used to query the system variables such as SYSDATE and USER.
dynamic service registration
The ability of an Oracle instance to automatically register its existence with a listener.
Emctl
The command-line utility used to stop and start the Oracle Management agent.
Enterprise Manager (EM) Database Control
The web-based GUI tool for managing Oracle environments.
environment variables
Variables that define the SQL*Plus environment. These variables are set using the SET command. The SHOW command is used to display the value of the variables.