PL/SQL数据表的导入

     今天因为某某原因所以,卸载了Oracle数据库,在卸载前导出数据库里的表,因为接下来还会安装数据库,省的那么麻烦在重新建表,可是在导入表的时候报权限不足,才想起来,忘了给用户创建表的权限,花了我老长一段时间。哎……悲剧,可能初学者都会犯这种错误吧!安慰自己一下,嘻嘻……

create user helen identified by helen51; --创建用户helen,口令为helen51
grant connect to helen;
--授予用户helen log on 权限
alter user helen quota unlimited on users;
--在usrs表空间上授予用户helen unlimited 权限
grant create table to helen; --授予用户helen create table权限

 

PL/SQL数据表的导入