--查看当前数据库实例 select * from v$instance; --用户表 SELECT a.* from dba_users a; --创建用户 create user mydbuser identified by test; --给用户授权 grant connect,resourc ...
分类:
数据库 时间:
2020-05-28 16:16:52
阅读次数:
99
1、建表空间createtablespace表空间名datafile‘D:\app\Administrator\oradata\orcl\ABC.DBF‘size100Mautoextendonnext50Mextentmanagement2、建用户createuser用户名identifiedbypassworddefaulttablespace表空间名temporarytablespacetemp(默认表空间名)3、给用户赋予权限gran..
分类:
数据库 时间:
2016-10-31 22:45:15
阅读次数:
240
create user ng_zj identified by ng_zjdefault tablespace tbs_testtemporary tablespace tbs_test_tmp;grant connect to ng_zj;grant resource to ng_zj;grant...
分类:
数据库 时间:
2014-09-10 19:07:10
阅读次数:
210