- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
分布式数据库答案
分布式计算与分布式系统
:
1.分布式数据库的特点:
*物理分布性:分布式数据库中的数据是分散存储在计算机网络中的多个站点上的。
*逻辑整体性:数据逻辑上是互相联系的。
*站点自治性:各站点上的数据由本地的数据库管理系统管理,完成本站点的应用。
2.分布式数据库和集中式数据库的差别:
*在集中式数据库中,数据独立性指数据的逻辑独立性与物理独立性。在分布式数据库中,还增加了数据分布独立性,即分布透明性。
*在集中式数据库中,对共享数据库的控制是集中的,在分布式数据库中,数据可以局部共享或全局共享。
*在集中式数据库中,尽量减少冗余度是系统目标之一,在分布式数据库中却希望增加冗余数据,存储同一数据的多个副本
*分布式数据库中各局部数据库应满足集中式数据库的一致性、可串行性和可恢复性。除此以外还应保证数据库的全局一致性、并行操作的可串行性和系统的全局可恢复性。
3. 分片的正确性判据:若R={R1,R2,…,Rn},满足:
完整性:如果a∈R,则必有a∈Ri,i=1,2,…,n
可重构性:R=∪Ri(水平分片),或R=∞Ri(垂直分片)
不可相交性:Ri∩Rj=空集,i≠j,i,j=1,2,…,n(水平分片)
Ri∩Rj=主键属性,i≠j,i,j=1,2,…,n(垂直分片)
:
1. create View v(name) as
select name from proj where pname = “CAD”
2. create View v(name) as
select name from proj1
1.
Student1=SL dno=1 Student
Student2=SL dno=2 Student
Student3=SL dno=3 Student
*完整性:
∵{dno=1}∈{dno={1,2,3}},{dno=2}∈{dno={1,2,3}},{dno=3}∈{dno={1,2,3}}
∴Student中有且只有{dno=1},{dno=2}和{dno=3}三个元素,满足完备性。
*可重构性:
∵{dno={1,2,3}}={dno=1}∪{dno=2}∪{dno=3}
∴满足可重构性。
*不可相交性:
∵{dno=1}∩{dno=2}={dno=1}∩{dno=3}={dno=2}∩{dno=3}=空集
∴满足不可相交性。
1.(a)
LEVEL 1: read(terminal,$sno)
Select sname, age, dno, type into $sname, $age, $dno, $type from Student
where sno=$sno
write(terminal, $sname, $age, $dno, $type)
LEVEL2: read(terminal,$sno)
Select sname, age, dno, type into $sname, $age, $dno, $type from Student1
where sno=$sno
if not #FOUND then
Select sname, age, dno, type into $sname, $age, $dno, $type from Student2
where sno=$sno
write(terminal, $sname, $age, $dno, $type)
LEVEL3:read(terminal, $sno)
Select sname, age, dno, type into $sname, $age, $dno, $type
from Student1 at site1
where sno=$sno
if not #FOUND then
Select sname, age, dno, type into $sname, $age, $dno, $type
from Student1 at site2
where sno=$sno
if not #FOUND then
Select sname, age, dno, type into $sname, $age, $dno, $type
from Student2 at site3
where sno=$sno
if not #FOUND then
Select sname, age, dno, type into $sname, $age, $dno, $type
from Student2 at site4
where sno=$sno
write(terminal, $sname, $age, $dno, $type)
1.(b)
LEVEL 1:Update Student
S
文档评论(0)