create tablespace overmind datafile 'D:/oracle920/oradata/overmind/mydbfile.ora' size 100m autoextend on next 4m
也可以在pl/sql里面的tablespaces里面new一个。
create user aa
identified by bb
default tablespace overmind
temporary tablespace temp
profile default
也可以在pl/sql里面的users里面new一个。
博客介绍了在Oracle中创建表空间和用户的操作。创建表空间可通过语句 'create tablespace...' 实现,也能在pl/sql的tablespaces里新建;创建用户可使用 'create user...' 语句,同样也能在pl/sql的users中新建。
1567

被折叠的 条评论
为什么被折叠?



