freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

華為sybase數(shù)據(jù)庫培訓(xùn)教材-展示頁

2025-04-15 02:06本頁面
  

【正文】 通過局域網(wǎng)或廣域網(wǎng)聯(lián)接起來。更進一步,運行在客戶端的應(yīng)用不必是Sybase公司的產(chǎn)品。Sybase數(shù)據(jù)庫,不只是簡單地提供了預(yù)編譯,而且公開了應(yīng)用程序接口DBLIB,鼓勵第三方編寫DBLIB接口。(3) 它是一種高性能的數(shù)據(jù)庫 Sybase真正吸引人的地方還是它的高性能。存儲過程允許用戶編寫自己的數(shù)據(jù)庫子例程?!?事件驅(qū)動的觸發(fā)器 觸發(fā)器是一種特殊的存儲過程?!?多線索化 Sybase數(shù)據(jù)庫的體系結(jié)構(gòu)的另一個創(chuàng)新之處就是多線索化。當(dāng)有多個用戶連接時,系統(tǒng)的性能會大幅度下降。此外,Sybase的數(shù)據(jù)庫引擎還代替操作系統(tǒng)來管理一部分硬件資源,如端口、內(nèi)存、硬盤,繞過了操作系統(tǒng)這一環(huán)節(jié),提高了性能。 (2) 支持?jǐn)?shù)據(jù)庫應(yīng)用系統(tǒng)的建立與開發(fā)的一組前端工具Sybase SQL Toolset; ISQL是與SQL Server進行交互的一種SQL句法分析器。 DWB是數(shù)據(jù)工作臺,是Sybase SQL Toolset的一個主要組成部分,它的作用在于使用戶能夠設(shè)置和管理SQL Server上的數(shù)據(jù)庫,并且為用戶提供一種對數(shù)據(jù)庫的信息執(zhí)行添加、更新和檢索等操作的簡便方法。 APT是Sybase客戶軟件部分的主要產(chǎn)品之一,也是從事實際應(yīng)用開發(fā)的主要環(huán)境。其用戶界面采用窗口和菜單驅(qū)動方式,通過一系列的選擇完成表格(Form)、菜單和處理的開發(fā)。通過Open Client的DBLIB庫,應(yīng)用程序可以訪問SQL Server。第2章 SYBASE有關(guān)概念 Sybase SQL Server是一個多庫數(shù)據(jù)庫系統(tǒng)。 而不論是系統(tǒng)數(shù)據(jù)庫還是用戶數(shù)據(jù)庫,都建立在數(shù)據(jù)庫設(shè)備上。所謂數(shù)據(jù)庫設(shè)備,不是指一個可識別的物理設(shè)備,而是指用于存儲數(shù)據(jù)庫和數(shù)據(jù)庫對象的磁盤原始分區(qū)或操作系統(tǒng)文件。初始化的過程就是將物理磁盤、磁盤分區(qū)或操作系統(tǒng)文件變?yōu)镾YBASE數(shù)據(jù)庫可以識別的設(shè)備。PHYSNAME是原始磁盤分區(qū)或操作系統(tǒng)文件名。SIZE的單位是2K的塊,對于新創(chuàng)建的數(shù)據(jù)庫,最小的SIZE是model數(shù)據(jù)庫的尺寸,即1024個2K的塊(2M)。當(dāng)用戶創(chuàng)建一個數(shù)據(jù)庫時,SQL SERVER 會自動在該數(shù)據(jù)庫中創(chuàng)建三個段: SYSTEM、LOGSEGMENT 、DEFAULT,這三個段分別用來存儲數(shù)據(jù)庫的系統(tǒng)表、事務(wù)日志和其他數(shù)據(jù)庫對象在數(shù)據(jù)庫中創(chuàng)建段的步驟是:先用Disk init 初始化物理設(shè)備通過使用Create database 和alter database 的on 子句,使數(shù)據(jù)庫設(shè)備對數(shù)據(jù)庫可用,于是新設(shè)備自動增加到數(shù)據(jù)庫的default 和system段。語法如下:Sp_addsegment 段名,數(shù)據(jù)庫名,設(shè)備名 系統(tǒng)數(shù)據(jù)庫安裝Sybase數(shù)據(jù)庫時自動生成的下列系統(tǒng)數(shù)據(jù)庫:● 主數(shù)據(jù)庫master;● 模型數(shù)據(jù)庫model;● 系統(tǒng)過程數(shù)據(jù)庫sybsystemprocs;● 臨時數(shù)據(jù)庫tempdb。(1) master數(shù)據(jù)庫 包含許多系統(tǒng)表和系統(tǒng)過程,從總體上控制用戶數(shù)據(jù)庫和SQL Server的操作,構(gòu)成了SYBASE系統(tǒng)的數(shù)據(jù)字典。當(dāng)我們每次用CREATE DATABASE命令 時,SQL Server都產(chǎn)生一個model數(shù)據(jù)庫的拷貝,然后把它擴展到命令要求的尺寸。下面是幾個通常用到的對model數(shù)據(jù)庫的改變:● 增加用戶數(shù)據(jù)庫類型、規(guī)則或缺?。弧?可存取SQL Server上所有數(shù)據(jù)庫的用戶用sp_adduser增加到model數(shù)據(jù)庫上;● 缺省權(quán)限(特別是guest帳號)可在model中建立;● 諸如select into/bulkcopy那樣的數(shù)據(jù)庫選項可在model中設(shè)置。它們在model中最原始的值是關(guān)(off)。因為model中所有內(nèi)容已拷貝到新數(shù)據(jù)庫中,授權(quán)讀model沒什么意義。(4)臨時數(shù)據(jù)庫tempdb該數(shù)據(jù)庫為臨時表和臨時工作提供了一個存儲區(qū)域。由于這些表都是臨時的,所以每當(dāng)用戶退出或系統(tǒng)失敗,這些表都將消失。 (6)示例數(shù)據(jù)庫pubs2為用戶提供一個學(xué)習(xí)SYBASE的數(shù)據(jù)庫模型。 用戶數(shù)據(jù)庫用戶數(shù)據(jù)庫是指用Create database 命令創(chuàng)建的數(shù)據(jù)庫。SA可以將創(chuàng)建數(shù)據(jù)庫的權(quán)限授予其他用戶。數(shù)據(jù)庫創(chuàng)建時,創(chuàng)建者既為該數(shù)據(jù)庫的 owner, 當(dāng)然創(chuàng)建者可以將這一地位或這一所有權(quán)用系統(tǒng)過程授予別的用戶。一切數(shù)據(jù)都存放在表中。表都以一張二維表的形式存在。 有一類表,它們的名字都是以sys開頭的,這些表稱為系統(tǒng)表,系統(tǒng)表記錄著有關(guān)SQL Server的信息。另外,每個用戶數(shù)據(jù)庫在創(chuàng)建時都有一個系統(tǒng)表的子集。例:use mastergosp_helpgoName Owner Object_type spt_mittab dbo user table spt_datatype_info dbo user table spt_datatype_info_ext dbo user table spt_monitor dbo user tablespt_server_info dbo user table spt_values dbo user tablesysalternates dbo system table syscharsets dbo system tablesyscolumns dbo system tablesysments dbo system tablesysconfigures dbo system tablesysconstraints dbo system tablesyscurconfigs dbo system tablesysdatabases dbo system tablesysdepends dbo system tablesysdevices dbo system table sysengines dbo system tablesysgams dbo system tablesysindexes dbo system tablesyskeys dbo system tablesyslanguages dbo system tablesyslisteners dbo system tablesyslocks dbo system tablesysloginroles dbo system tablesyslogins dbo system table syslogs dbo system table sysmessages dbo system tablesysmonitors dbo system tablesysobjects dbo system tablesysprocedures dbo system tablesysprocesses dbo system tablesysprotects dbo system tablesysreferences dbo system tablesysremotelogins dbo system tablesysroles dbo system tablesyssegments dbo system tablesysservers dbo system tablesyssrvroles dbo system tablesystestlog dbo system tablesysthresholds dbo system tablesystypes dbo system tablesysusages dbo system table sysusermessages dbo system tablesysusers dbo system tablesp_configure dbo stored proceduresp_dboption dbo stored proceduresp_getmessage dbo stored proceduresp_procxmode dbo stored proceduresp_prtsybsysmsgs dbo stored proceduresp_validlang dbo stored p
點擊復(fù)制文檔內(nèi)容
教學(xué)課件相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1