當前位置

首頁 > 商務英語 > 計算機英語 > 講述計算機DBMS的編排技巧的英語

講述計算機DBMS的編排技巧的英語

推薦人: 來源: 閱讀: 2.55W 次

英語和計算機是對於我們的生活都很經常用的東西了,所以小編今天就給大家整理了有關於計算機的英語,大家要閱讀一下哦

講述計算機DBMS的編排技巧的英語

  計算機英語

sequential 順序的,連續的

integrate 綜合,使成整體

access v. 訪問

retrieve v.找回,檢索

employ v.使用

list structure n.連結串列結構

invoice n. 發票

pointer n.指標

hierarchical structure 樹結構

subordinate adj. 從屬的

network structure 網狀結構

relational structure 關係結構

physical structure 物理結構

Abbreviations:

DBMS(Database Management System) 資料庫管理資訊系統

DBMS is able to access and retrieve data from nonkey record fields. That is, the DBMS is able to structure and tie together the logically related data from several large files.

DBMS可綜合幾個檔案的資料項以回答使用者對資訊的查詢,這就意味著DBMS能夠訪問和檢索非關鍵記錄欄位的資料,即DBMS能夠將幾個大檔案中邏輯相關的資料組織並連線在一起。

Logical Structures. Identifying these logical relationships is a job of the data administrator. A data definition language is used for this purpose. The DBMS may then employ one of the following logical structuring techniques during storage access, and retrieval operations [1]:

邏輯結構。確定這些邏輯關係是資料管理者的任務,由資料定義語言完成。DBMS在儲存、訪問和檢索操作過程中可選用以下邏輯構造技術:

1. List structures. In this logical approach, records are linked together by the use of pointers. A pointer is a data item in one record that identifies the storage location of another logically related record. Records in a customer master file, for example, will contain the name and address of each customer, and each record in this file is identified by an account number. During an accounting period, a customer may buy a number of items on different days. Thus, the company may maintain an invoice file to reflect these transactions.

連結串列結構。在該邏輯方式中,記錄通過指標連結在一起。指標是記錄中的一個數據項,它指出另一個邏輯相關的記錄的儲存位置,例如,顧客主檔案中的記錄將包含每個顧客的姓名和地址,而且該檔案中的每個記錄都由一個賬號標識。在記賬期間,顧客可在不同時間購買許多東西,公司儲存一個發票檔案以反映這些交易。

A list structure could be used in this situation to show the unpaid invoices at any given time. Each record in the customer file would contain a field that would point to the record location of the first invoice for that customer in the invoice file (fig11-1). This invoice record, in turn, would be linked to later invoices for the customer. The last invoice in the chain would be identified by the use of a special character as a pointer.

這種情況下可使用連結串列結構,以顯示給定時間內未支付的發票。顧客檔案中的每個記錄都包含這樣一個欄位,該欄位指向發票檔案(圖11-1)中該顧客的第一個發票的記錄位置,該發票記錄又依次與該顧客的下一個發票記錄相連,此連結的最後一個發票記錄由一個作為指標的特殊字元標識。