摘要:
--范围分区--建表create table orders(order_id number(12),order_date date not null,order_total number(8,2)) partition by RANGE(order_date)(partition p1 VALUES 阅读全文
摘要:
--私有同义词--私有同义词权限grant create synonym to scott;--创建私有同义词create synonym dp for scott.dept;--将查询dept的权限授予qjt这个用户GRANT SELECT ON dept to QJT --公有同义词--公有同义 阅读全文
摘要:
--创建表空间权限grant create tablespace to QJT--删除表空间权限grant DROP tablespace to QJT --创建表空间create tablespace qjttestdatafile 'F:\app\QiuShao\oradata\orcl\qjt 阅读全文
摘要:
--创建用户create user qjt identified by 1234 --权限grant connect to qjt grant resource to qjt --建表create table userinfo(id number primary key not null) --查询 阅读全文