一些常用的操作命令记录
SQLPlus连接
sqlplus {username}/{password}@{ip}:{port}/{sid}
创建用户
create user testuser identified by testpassword;
创建表空间
create tablespace ts_test datafile '/u01/app/oracle/oradata/db/ts_test.dbf' size 300m autoextend on next 10m maxsize unlimited;
alter user testuser default tablespace ts_test; //指定用户testuser的默认表空间为ts_test
grant unlimited tablespace to testuser; //指定用户testuser的表空间利用限制
为用户赋予权限
grant connect, resource to testuser;
grant create table, create view, create sequence to testuser; //个别权限赋予
表空间属性变更
alter tablespace ts_test offline/online; //表空间上下线
alter tablespace ts_test rename datafile '/u01/app/oracle/ordata/db/ts_test.dbf' to '/u01/app/oracle/ordata/db/ts_test_bkp.dbf'; //移动,改名表空间文件
alter database datafile '/u01/app/oracle/ordata/db/ts_test.dbf' autoextend on next 20m maxsize unlimited; //修改表空间属性