Glosario de Bases de Datos Sybase, "D"

Termino or Word
Description  - Descripcion
data cache

See buffer cache

data definition

The process of setting up databases and creating database objects such as tables, indexes, rules, defaults, procedures, triggers, and views. See also source text .

data dictionary

The system tables that contain a description of each database object and how it is structured.

data integrity

The correctness and completeness of data within a database.

data modification

Adding, deleting, or changing information in the database with the insert, delete, and update commands.

data retrieval

The act of requesting data from the database and receiving the results. See also query .

data warehouse

A subject-oriented information store specifically designed for decision support and analytical processing. A data warehouse contains large amounts of information used by managers, strategic marketers, and merchandisers to help them understand and predict market trends and make crucial business decisions. The information in a data warehouse is not usually modified by the people who use it. See also database .

database

See relational database .

database administration

The tasks involved in maintaining, designing, implementing changes to, tuning, and expanding a database. See also system administration .

database device

A device dedicated to the storage of the objects that make up databases.

database file

See table .

database integrity

A characteristic of a database evidenced by the database being both valid and complete. Database integrity consists of two complementary components: validity, which guarantees that all false information is excluded from the database, and completeness , which guarantees that all true information is included in the database. See also integrity constraints .

database object

One of the components of a database: table, column, view, index, procedure, trigger, default, or rule. See also object .

Database Object Owner

A user who creates a database object .

Database Owner

The creator of a database. The Database Owner has control over all the database objects in that database. The login name for the Database Owner is "dbo."

datatype

Specifies what kind of information each column will hold and how the data will be stored. Datatypes include char, int, money , and so on. Users can construct their own datatypes based on the Adaptive Server system datatypes.

datatype conversion function

A function that is used to convert expressions of one datatype into another datatype, whenever these conversions are not performed automatically by Adaptive Server.

datatype hierarchy

The hierarchy that determines the results of computations using values of different datatypes.

date function

A function that displays information about dates and times, or manipulates date or time values. The date functions include getdate, datename, datepart, datediff, and dateadd.

date part

Parts of a date, such as day, month, or year, recognized by the Transact-SQL date functions.

DBMS

Database Management System. The Adaptive Server DBMS component performs query processing and transaction management for the current task. For example, the DBMS parses, compiles, and executes SQL statements and returns any results.

"dbo" account

See Database Owner .

deadlock

A deadlock occurs when two or more user processes each have a lock on a separate page or table and each wants to acquire a lock on the other process's page or table. The transaction with the least accumulated CPU time is killed and all of its work is rolled back.

Decision Support System (DSS)

A database system that supports queries involving large amounts of data. Commonly used to make business decissions. DSS queries typically access entire tables or large portions of tables, involve joins between many tables, and return summaries of large result sets. DSS applications are often run on a scheduled basis; for example, to produce the same report at the close of every business day. See also data warehouse .

default

The option chosen by the system when no other option is specified.

default clause

Specifies the default value for a column in the create table statement.

default database

The database that users connect to when they log in.

default language

For a user, the language that displays that user's prompts and messages, set with sp_modifylogin or the language option of the set command. For Adaptive Server, the language used to display prompts and messages for all users unless a user chooses a different language.

deferred update

An update operation that takes place in two steps. First, the log records for deleting existing entries and inserting new entries are written to the log, but only the delete changes to the data pages and indexes take place. In the second step, the log pages are rescanned, and the insert operations are performed on the data pages and indexes. See also direct update .

definition statement

See source text .

degree of parallelism

The number of worker processes that the optimizer chooses to execute the query in parallel. The degree of parallelism depends on both the upper limit of parallelism for the query and the level of parallelism suggested by the optimizer.

delete/insert direct update

A type of direct update operation. The row is deleted from its original location, and inserted at a new location.

delimited identifiers

Object names enclosed in double quotes that avoid certain restrictions on object names.

demand lock

A demand lock prevents any more shared locks from being set on a table or data page. Any new shared lock request has to wait for the demand lock request to finish.

density

The average fraction of all the rows in an index that have the same key value.
Density is 1 if all of the data values are the same and 1/N if every data value is unique.

dependent

Data is logically dependent on other data when master data in one table must be kept synchronized with detail data in another table in order to protect the logical consistency of the database.

detail

Data that logically depends on data in another table. For example, in the pubs2 database, the salesdetail table is a detail table. Each order in the sales table can have many corresponding entries in salesdetail. Each item in salesdetail is meaningless without a corresponding entry in the sales table.

development tool

Software such as PowerBuilder that helps you build specialized GUI applications for accessing SQL Server databases.

device

Any piece of disk (such as a partition ) or a file in the file system used to store databases and their objects. See also database device .

device I/O

The action of reading to or writing from a database device .

direct update

An update operation that takes place in a single step, that is, the log records are written and the data and index pages are changed. Direct updates can be performed in three ways: in-place update , on-page update , and delete/insert direct update . See also deferred update .

dirty read

Occurs when one transaction modifies a row, and then a second transaction reads that row before the first transaction commits the change. If the first transaction rolls back the change, the information read by the second transaction becomes invalid.

discretionary access controls (DAC)

Restrict your access to objects based on your identity and/or your group membership. The controls are discretionary in the sense that a user with a certain access permission is capable of passing that permission onto any other user (such as with the grant command). See also permissions .

disk allocation pieces

Disk allocation pieces are the groups of allocation units from which Adaptive Server constructs a new database file. The minimum size for a disk allocation piece is one allocation unit .

disk initialization

The process of preparing a database device or file for Adaptive Server use. After the device is initialized, it can be used for storing databases and database objects. The command used to initialize a database device is disk init.

disk mirror

A duplicate of a Adaptive Server database device. All writes to the device being mirrored are copied to a separate physical device, making the second device an exact copy of the device being mirrored. If one of the devices fails, the other contains an up-to-date copy of all transactions. The command disk mirror starts the disk mirroring process.

display precision

The number of significant binary digits offered by the default display format for real and float values. Internally, real and float values are stored with a precision less than or equal to that of the platform-specific datatypes on which they are built. For display purposes, Sybase real values have 9 digits of precision; Sybase float values, 17.

DLL

Dynamic Link Library. Software used by Microsoft Windows and IBM OS/2 to provide services to applications.

driver

ASybase library that provides an interface to an external service provider.

dump

The action of making a backup of an entire database, including the data and the transaction log , which you accomplish with the dump database command. Also, the data that results from this action. See also load .

dump striping

Interleaving of dump data across several dump volumes.

dump volume

A single tape, partition, or file used for a database or transaction dump. A dump can span many volumes, or many dumps can be made to a single tape volume.

dynamic dump

A dump made while the database is active.

dynamic index

A worktable built by Adaptive Server for the resolution of queries using or . As each qualifying row is retrieved, its row ID is stored in the worktable. The worktable is sorted to remove duplicates, and the row IDs are joined back to the table to return the values.

[ HOME-PRINCIPAL ] [ INFORMATICA ] [ SYBASE ] [ ENLACES ] [ CONTACTENOS ]

© Derechos Reservados, Copyright, DATA-2013, 1999-2003.