setup.sql
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:0k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. spool init.log
  2. --创建用户
  3. create user &1. identified by &2. default tablespace SYSTEM temporary tablespace TEMP;
  4. --赋予权限
  5. grant connect,resource,dba to &1.;
  6. --登陆用户
  7. connect &1./&2.
  8. /*导入表结构*/
  9. @@table.sql
  10. /*导入表数据*/
  11. @@data.sql
  12. spool off
  13. exit