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

正文內(nèi)容

數(shù)據(jù)庫系統(tǒng)概論實(shí)驗(yàn)設(shè)計(jì)答案-資料下載頁

2025-06-22 15:05本頁面
  

【正文】 ========================*/create index 租借_FK on 租借 (購買人卡號(hào) ASC)。/*==============================================================*//* Index: 租借2_FK *//*==============================================================*/create index 租借2_FK on 租借 (工號(hào) ASC)。/*==============================================================*//* Table: 租借流水帳 *//*==============================================================*/create table 租借流水帳 ( 租借記錄單號(hào) char(20) not null, 數(shù)量 tinyint null, 歸還日期 time null, 經(jīng)辦員工號(hào) char(10) null, 租借人卡號(hào) char(20) null, VCD編碼 char(20) null, constraint PK_租借流水帳 primary key (租借記錄單號(hào)))。/*==============================================================*//* Index: 租借流水帳_PK *//*==============================================================*/create unique index 租借流水帳_PK on 租借流水帳 (租借記錄單號(hào) ASC)。/*==============================================================*//* Table: 逾期罰款通知 *//*==============================================================*/create table 逾期罰款通知 ( 罰款金額 numeric(8,2) null, 記錄罰款單號(hào) char(20) not null, constraint PK_逾期罰款通知 primary key (記錄罰款單號(hào)))。/*==============================================================*//* Index: 逾期罰款通知_PK *//*==============================================================*/create unique index 逾期罰款通知_PK on 逾期罰款通知 (記錄罰款單號(hào) ASC)。/*==============================================================*//* Table: 預(yù)約登記 *//*==============================================================*/create table 預(yù)約登記 ( 預(yù)約登記單號(hào) tinyint not null, 租借卡卡號(hào) char(20) null, VCD編碼 char(20) null, 數(shù)量 tinyint null, 經(jīng)辦員工號(hào) char(10) null, constraint PK_預(yù)約登記 primary key (預(yù)約登記單號(hào)))。/*==============================================================*//* Index: 預(yù)約登記_PK *//*==============================================================*/create unique index 預(yù)約登記_PK on 預(yù)約登記 (預(yù)約登記單號(hào) ASC)。alter table Association_4 add constraint FK_ASSOCIAT_ASSOCIATI_商店管理員 foreign key (工號(hào)) references 商店管理員 (工號(hào)) on update restrict on delete restrict。alter table Association_4 add constraint FK_ASSOCIAT_ASSOCIATI_逾期罰款通知 foreign key (記錄罰款單號(hào)) references 逾期罰款通知 (記錄罰款單號(hào)) on update restrict on delete restrict。alter table 同意租借 add constraint FK_同意租借_同意租借_商店管理員 foreign key (工號(hào)) references 商店管理員 (工號(hào)) on update restrict on delete restrict。alter table 同意租借 add constraint FK_同意租借_同意租借2_租借流水帳 foreign key (租借記錄單號(hào)) references 租借流水帳 (租借記錄單號(hào)) on update restrict on delete restrict。alter table 沒有庫存 add constraint FK_沒有庫存_沒有庫存_商店管理員 foreign key (工號(hào)) references 商店管理員 (工號(hào)) on update restrict on delete restrict。alter table 沒有庫存 add constraint FK_沒有庫存_沒有庫存2_預(yù)約登記 foreign key (預(yù)約登記單號(hào)) references 預(yù)約登記 (預(yù)約登記單號(hào)) on update restrict on delete restrict。alter table 登記 add constraint FK_登記_登記_商店管理員 foreign key (工號(hào)) references 商店管理員 (工號(hào)) on update restrict on delete restrict。alter table 登記 add constraint FK_登記_登記2_歸還登記 foreign key (歸還單號(hào)) references 歸還登記 (歸還單號(hào)) on update restrict on delete restrict。alter table 租借 add constraint FK_租借_租借_客戶 foreign key (購買人卡號(hào)) references 客戶 (購買人卡號(hào)) on update restrict on delete restrict。alter table 租借 add constraint FK_租借_租借2_商店管理員 foreign key (工號(hào)) references 商店管理員 (工號(hào)) on update restrict on delete restrict。六、思考題 試述數(shù)據(jù)庫物理設(shè)計(jì)的內(nèi)容和步驟答:為一個(gè)給定的邏輯數(shù)據(jù)模型選取一個(gè)最適合應(yīng)用要求的物理結(jié)構(gòu)的過程,就是數(shù)據(jù)庫的物理設(shè)計(jì),分兩步:A、確定數(shù)據(jù)庫的物理結(jié)構(gòu),、對(duì)物理結(jié)構(gòu)進(jìn)行評(píng)價(jià),評(píng)價(jià)的重點(diǎn)是時(shí)間和空間效率。 什么是數(shù)據(jù)庫的再組織和重構(gòu)?為什么要進(jìn)行數(shù)據(jù)庫的再組織和重構(gòu)?答:數(shù)據(jù)庫運(yùn)行一段時(shí)間后,由于記錄不斷增、刪、改,會(huì)使數(shù)據(jù)庫的物理存儲(chǔ)情況變壞,降低了數(shù)據(jù)的存取效率,數(shù)據(jù)庫性能下降,這時(shí)DBA就要對(duì)數(shù)據(jù)庫進(jìn)行重組織,或部分重組織(只對(duì)頻繁增、刪的表進(jìn)行重組織)。在重組織的過程中,按原設(shè)計(jì)要求重新安排存儲(chǔ)位置、回收垃圾、減少指針鏈等,提高系統(tǒng)性能。數(shù)據(jù)庫的重組織,并不修改原設(shè)計(jì)的邏輯和物理結(jié)構(gòu),而數(shù)據(jù)庫的重構(gòu)造則不同,它是指部分修改數(shù)據(jù)庫的模式和內(nèi)模式。分別以MSSQLServer2000或Anywhere為DBMS,試述在PD環(huán)境中當(dāng)出一個(gè)PDM時(shí),完成其數(shù)據(jù)庫創(chuàng)建的操作步驟。第 28 頁 共 28 頁
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1