Oracle创建,删除,授权用户以及导入dmp
程序员文章站
2022-06-14 21:35:56
...
删除用户
drop user cmcs_gx;
创建用户
create user cmcs_gx identified by cmcs_gx;
给用户授权
grant connect,resource to cmcs_gx;
导入dmp
imp cmcs_gx/cmcs_gx@ORACL file=d:\cmcs1115.dmp full=y;
drop user cmcs_gx;
创建用户
create user cmcs_gx identified by cmcs_gx;
给用户授权
grant connect,resource to cmcs_gx;
导入dmp
imp cmcs_gx/cmcs_gx@ORACL file=d:\cmcs1115.dmp full=y;