为了账号安全,请及时绑定邮箱和手机立即绑定

Oracle数据库开发必备利器之SQL基础

难度入门
时长 4小时14分
学习人数
综合评分9.67
338人评价 查看评价
9.8 内容实用
9.7 简洁易懂
9.5 逻辑清晰
drop tablespace test1_tablespace including contents;
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m;
select file_name from dba_files where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace drop datafile 'test2_file.dbf';
select file_name from dba_files where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1tablespace read only;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace read write;
alter tablespace test1_tablespace offline;
desc dba_tablespaces;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
alter tablespace test1_tablespace online;
select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';
desc dba_data_files
select file_name from dba_data_files where tablespace_name='TEST1_TABLESPACE';
select file_name from dba_temp_files where tablespace_name='TEMPTEST1_TABLESPACE';
create tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
create temporary tablespace teptest1_tablespace tempfile 'tempfile1.dbf' size 10m;
desc dba_users
select defaut_tablespaces,temporary_tablespaces from dba_users where username='SYSTEM';
alter user system
default tablespace system
desc dba_tablespaces
select tablespace_name frome dba_tablespaces;
desc user_tablespaces
select tablespance_name frome user_tablespaces;
connect scott/tiger
select tablespace_name from dba_tablespaces;
select tablespace_name from user_tablespaces;
alter user scott account unlock;
connect scott
show user
Dba_tablespaces该数据字典针对的系统管理员级的用户来查看的数据字典,
user_tablespace该数据字典为普通用户登录后来查看的数据字典。
作为系统管理员登录的时候,对应的表空间(dba_tablespaces下面的表空间)默认情况下为这6个:
System:用来存放sys用户的表、视图以及存储过程的数据库对象,也被我们称为是一个系统表空间。
Sysaux:作为example的一个辅助表空间。
Undotbs1:主要用于存储撤销信息的。
Temp:存储sql语句处理的表和索引信息的,他是一个临时表空间。
Users:属于一个永久性表空间,存储数据库用户创建的数据库对象。
一八年的有没有
讲到表才听懂 表空间听不懂
这位老师的讲课我听的比较认真。不知道是不是因为性别的原因(*^__^*) 嘻嘻……
课程须知
只要知道数据库是什么就可以来学习本课程呦!
老师告诉你能学到什么?
掌握Oracle的SQL语句基础,为后续的课程学习打好基础。

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消