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>
|
Oracle Services
Oracle Corporation’s nonsoftware offerings, such as education and consulting services.
Oracle Shared Server
A connection configuration that enhances the scalability of the Oracle Server through the use of dispatcher processes and Shared Server resources. Shared Server allows the server to support a larger number of lightweight concurrent connections
by allowing them to share resources.
Oracle Transparent Gateway
A connectivity product that seamlessly extends the reach of Oracle to non-Oracle data stores and allows you to treat non-Oracle data sources as if they were part of the Oracle environment.
Oracle Universal Installer (OUI)
The Java-based installation tool for installing Oracle software.
outer join
A join used to select data from a table even if there is no matching row in the joined table. These are the rows that are not returned by using a simple join. An outer join is specified by the outer-join operator (+) or the FULL OUTER JOIN keywords.
multiplexing
Creating multiple copies of a redo log file or control file in different locations so that the loss of one copy does not significantly affect your ability to recover a database.
multitable join
A join that joins more than two tables in a query.
NAMES.DIRECTORY_PATH
An entry found in the sqlnet.ora file that defines the net service name search method hierarchy for a client.
natural join
A join that joins two tables using the columns with the same name and datatype in both tables.
nested subquery
A subquery within another subquery.
Net Service Names
The name of an Oracle service on the network. This is the name the user enters when referring to an Oracle service.
network failure
A failure in the network connection between the client and the database; for example, a router reboot or a failure of a network card in the server.
NEXTVAL
The sequence pseudocolumn that will cause the generation of the next number from the sequence-number generator.
NOARCHIVELOG mode
A database mode in which redo log files are not written to an archive destination before they are overwritten. A database in NOARCHIVELOG mode can recover only from an instance failure.
nonequality join
A join that joins two tables with a nonequality operator.
n-tier architecture
A network architecture involving at least three computers, typically a client computer, a middle-tier computer, and a database server.
NULL
A value that represents unknown or missing data. Most functions return NULL when called with a NULL argument.
NUMBER
Datatype used to store numeric values in table.
object privilege
A database privilege that allows the grantee to perform a specific operation on a database object, such as a SELECT, an UPDATE, or a DELETE operation on a table.
Optimal Flexible Architecture (OFA)
A model for organizing mount points, directory structures, and files so that they will be easier to manage, maintain, and back up.
package
A container for bundling procedures, functions, and data structures.
package body
The part of a package that contains the program implementation.
package specification
The part of a package that declares its external interface.
partial database backup
A backup that includes zero or more tablespaces, which in turn include zero or more data files; a control file is optional in a partial database backup.
password
A secret word associated with each user ID to authenticate a database connection.
password file
The encrypted file that contains the usernames and passwords of users who have been granted SYSDBA and SYSOPER privileges.
pfile
A plain-text file that contains database-initialization parameters. Oracle reads this file at startup and uses the information to configure various aspects of the Oracle instance and database.
ping
A TCP/IP utility that checks basic network connectivity between two computers.
port
Used with TCP/IP to name the ends of logical connections, which carry conversations between two computers.
primary key
A column or combination of column values that can identify a row uniquely. Primary key columns cannot have NULL values.
principle of least privilege
Permits only the minimal set of privileges that are required for the situation.
private synonym
A restricted alias to another object.
privileges
The assigned permissions to create, modify, remove, or use a database object or a feature.
proactive monitoring
Monitoring the Oracle server for potential issues before they occur, thus avoiding the impact on the database’s performance, availability, or manageability.
procedure
A PL/SQL program that is invoked as a stand-alone statement.
Process Monitor (PMON)
The background process that cleans up failed user connections.
profile
A set of limits on database resources or password characteristics.
program global area (PGA)
An area of memory in which information for each client session is maintained. PGA includes bind variable, cursor information, and the client’s sort area.
proxy-based firewall
A firewall that prevents information from outside the firewall from flowing directly into the corporate network. The firewall acts as a gatekeeper, inspecting packets and sending only the appropriate information to the corporate network.
public synonym
A global alias to another object.