oracle 创建用户 导入数据库

--创建用户
create user 账号 identified by 密码;
--授权
grant connect,resource,dba to 账号 ;
--导入数据库
imp 账号/密码@表空间 file= 路径;   --d:\bdp2_16.dmp


你可能感兴趣的:(oracle 创建用户 导入数据库)