-
仅删除表空间:<br> drop tablespace tablespace_name<br> 删除表空间及数据:<br> drop tablespace tablespace_name including contents仅删除表空间:<br>
drop tablespace tablespace_name<br> 删除表空间及数据:<br> drop tablespace tablespace_name including contents查看全部 -
添加数据文件:<br> alter tablespace 表空间名 add datafile '数据文件名.dbf' size 数据文件大小;<br> 删除数据文件:<br> alter tablespace 表空间名 drop datafile '数据文件名.dbf'; 注意:表空间的第一个数据文件是不可以删除的,除非将整个表空间删除!
查看全部 -
修改表空间状态 1.设置联机或脱机状态 >alter tablespace tablespace_name offline online; //脱机状态是不能使用的 2.查看表空间状态 >select status from dba_tablespaces where tablespace_name='xxx'; //表空间名字要大写 3.设置只读或者可读写状态(表空间必须为联机状态,联机状态默认为读写状态): >alter tablespace tablespace_name read only(只读)/read write(读写); eg: alter tablespace test1_tablespace offline; //脱机 select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE'; //查看状态 alter tablespace test1_tablespace read only; //只读 select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE'; //查看状态
查看全部 -
创建永久表空间:
create tablespace forever_tablespace datafile 'foreverfile.dbf' size 10m;
创建临时表空间:
create temporarry tablespace temporary_tablespace tempfile ‘tempfile.dbf' size 10m;
desc dba_data_files 查看永久数据文件表空间,包含的字段
selecet file_name from dba_data_files where tablespace_name='FOREVERFILE';
查看全部 -
查看用户的表空间<br> dba_tablespaces、user_tablespaces(分别指数据库和用户的表空间数据字段信息)<br> dba_user、user_users(系统用户和普通用户的数据字段信息)<br> 1.desc dba_tablespaces 查看数据库全库表空间中的字段信息<br> 2.select tablespace_name from dba_tablespaces查看数据库中包含的对应类型的表空间详细信息;<br> 3.desc user_tablespaces查看普通用户表空间中的字段信息<br> 4.select tablespace_name from user_tablespaces查看普通用户包含的对应类型的表空间详细信息<br> 5.desc dba_users查看dba_users的用户的字段信息<br> 查看系统用户名下对应的默认表空间和临时表空间的详细信息(这里以system为例)<br> select default_tablespace,temporary_tablespace from dba_user where username='system';<br> 设置用户的默认或临时表空间<br> 1.alter user 用户名 default(temporary )tablespace 表空间名
查看全部 -
表空间:数据库的逻辑存储单元,由多个数据文件组成
表空间分类:永久表空间:数据库中的永久存储对象
临时表空间:数据库使用期间,中间执行的过程,执行结束存储的内容释放
UNDO表空间:用于保存事务修改的旧址,可回滚
查看全部 -
1.系统用户:sys(数据库管理权限最高)、system、sysman、scott(默认密码tiger) 2.使用system用户登录: [username/password][@server][as sysdba|sysoper] eg:system/root @orcl as sysdba (orcl就是自己设置的服务名) 3.SQL语句不分大小写 4.>请输入用户名:system/toor 连接到数据库成功。 >connect sys/toor as sysdba 连接到数据库成功。 ps:数据库和服务器安装的都是在同一台机器就不用@server。
查看全部 -
constraint
查看全部 -
constraiot
查看全部 -
给表里添加部分内容
insert into userinfo (id,username,userpwd) values (2,'yyy','123')
查看表部分内容
select username,userpwd from userinfo;
查看全部 -
添加表内容
insert into userinfo values(1,'xxx','123','xxx@126.com',sysdate);
查看表内容
select * from userinfo;
查看全部 -
oracle安装查看全部
-
删除表及内容
drop table new_userinfo;
查看全部 -
删除表内容
truncate table new userinfo;
查看全部 -
修改表名
rename userinfo to new_userinfo;
查看全部
举报