sql实验5(一)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实验报告专用纸
实验5 索引和视图
三、实验内容
1.分别使用企业管理器和Transact-SQL语句为studentsdb数据库的student_info和curriculum创建主键索引。
①、使用企业管理器为studentsdb数据库的student_info创建主键索引。
②使用企业管理器为studentsdb数据库的curriculum创建主键索引。(将课程表的课程编号属性设为主键,系统将自动创建主键索引)
③使用Transact-SQL语句为studentsdb数据库的student_info创建主键索引。(将先前创建好的主键移除)
create clustered index student_info_idx on student_info(学号)
④使用Transact-SQL语句为studentsdb数据库的curriculum创建主键索引。(将先前创建好的主键移除)
create clustered index curriculum_idx on curriculum(课程编号)
2.使用企业管理器按curriculum的课程编号列创建唯一性索引。
3.分别使用企业管理器和Transact-SQL语句为studentsdb数据库的grade表的“分数”字段创建一个非聚集索引,命名为grade_index
①使用企业管理器为studentsdb数据库的grade表的“分数”字段创建一个非聚集索引。
②使用Transact-SQL语句为studentsdb数据库的grade表的“分数”字段创建一个非聚集索引。(删除之前所创建的索引)
create nonclustered index grade_index on grade(分数)
4.为studentsdb数据库的grade表的“学号”和“课程编号”字段创建一个复合唯一索引,命名为grade_id_c_ind
create unique index grade_id_c_ind on grade(学号,课程编号)
5.分别使用企业管理器和系统存储过程sp_helpindex查看《成绩表》和《学生表》上的索引信息。
①使用SQL Server管理平台查看grade表和student_info表上的索引信息。
②使用系统存储过程sp_helpindex查看grade表和student_info表上的索引信息。Grade表索引信息:
student_info表索引信息:
6.使用企业管理器的“向导”工具对grade表创建一个聚集索引和唯一索引。
7.使用系统存储过程sp_rename将索引grade_index更名为grade_ind
sp_rename grade.grade_index','grade_ind','index'
更名前:
更名后:
8.分别使用企业管理器和Transact-SQL语句DROP INDEX删除索引grade_ind再次使用系统存储过程sp_helpindex查看grade上的索引信息。
①使用企业管理器删除索引grade_ind
②使用Transact-SQL语句DROP INDEX删除索引grade_ind
drop index grade.grade_ind
成绩:教师签名:_____________