oracle创建用户

--创建表空间
--create tablespace new_tablespace datafile 'F:\oracle\product\10.2.0\oradata\news\news_data.dbf' size 500M;


--创建用户
--create user ceshi identified by ceshi default tablespace new_tablespace;


--授权给用户
--grant connect,resource to ceshi;
--grant dba to ceshi;

猜你喜欢

转载自blog.csdn.net/qq616774576/article/details/79741240
今日推荐