当前位置: 代码迷 >> Oracle开发 >> 批处理文件建立数据库解决思路
  详细解决方案

批处理文件建立数据库解决思路

热度:30   发布时间:2016-04-24 07:55:47.0
批处理文件建立数据库
有人用过批处理文件建立数据库么?能不能给一点意见...
在线等...

------解决方案--------------------
excetueCreateDatabase.bat file
---------------
sqlplus system/manager @createdatabase.txt

--------createdatabase.txt--------
create user username identified by userpassword default tablespace users temporary tablespace temp;
exit;