create user BZZDK
  identified by "12345678"
  default tablespace chinapetro
  temporary tablespace TEMP
  profile DEFAULT;
grant connect to BZZDK;
grant dba to BZZDK;
grant unlimited tablespace to BZZDK;
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
怎样把上面的数据导到oracle中???
具体点!!!谢谢了,我是菜鸟,哈哈

解决方案 »

  1.   

    imp user/pwd@orcl fromuser=XX touser=XX file=d:\file.dmp
      

  2.   

    fromuser
    touser
    都是什么呀?
      

  3.   

    用SQLPLUS
    你的那些不是数据,是一个脚本,登陆SQLPLUS执行
    〉@文件名
      

  4.   

    你可以这样
    运行-->cmd-->sqlplus /nolog-->connect system /manager as sysdba-->
    执行
    create user BZZDK
      identified by "12345678"
      default tablespace chinapetro
      temporary tablespace TEMP
      profile DEFAULT;
    grant connect to BZZDK;
    grant dba to BZZDK;
    grant unlimited tablespace to BZZDK;就可以了
      

  5.   

    fromuser 导出用户
    touser  导入用户