免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2045 | 回复: 1
打印 上一主题 下一主题

如何利用脚本实现如下表空间和用户的自动创建? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-03-02 16:39 |只看该作者 |倒序浏览
10可用积分
建立表空间
1.表空间名称为:test
2.临时表空间名称为:test_TMP

建立帐号
1.建立帐号:test3,密码:test3

帐号使用的表空间如下:
1.缺省表空间(Default tablespace): test
  2.临时表空间(Temporary tablespace): test_TMP

注意:需要给帐号设置test3足够的权限:CONNECT,RESOURCE,CREATE VIEW

[ 本帖最后由 zhengyi158 于 2009-3-3 09:37 编辑 ]

最佳答案

查看完整内容

oracle9i下:sqlplus system/system_pass@conn_str

论坛徽章:
0
2 [报告]
发表于 2009-03-02 16:39 |只看该作者
原帖由 zhengyi158 于 2009-3-2 16:39 发表
建立表空间
1.表空间名称为:test
2.临时表空间名称为:test_TMP

建立帐号
1.建立帐号:test3,密码:test3

帐号使用的表空间如下:
1.缺省表空间(Default tablespace): test
  2.临时表空间(T ...



oracle9i下:

sqlplus system/system_pass@conn_str <<EOF

create tablespace test
    datafile '/oradata/test.dbf' size 30M reuse
        extent management local
        segment space management auto;
create temporary tablespace test_tmp
        TEMPFILE
                '/oradata/test_tmp.dbf' size 1020M reuse
                EXTENT MANAGEMENT LOCAL;

create user test3 identified by test3
default tablespace test
temporary tablespace test_tmp
quota unlimited on test
quota unlimited on test_tmp;

grant connect,resource to test3;
exit
EOF
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP