Oracle创建,删除,授权用户以及导入dmp

删除用户
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;

猜你喜欢

转载自jin8000608172.iteye.com/blog/1727027