Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 Oracle 中向用户添加表空间?
这意味着用户有两个以上的表空间;为什么我问这个是我想在每个表空间中安装产品,只有一个用户。
创建表、索引以安装 Product 的最低权限是多少?
表空间不归用户所有,但您可以使用 QUOTA ON TABLESPACE 命令将表空间的配额授予用户,例如ALTER USER username QUOTA UNLIMITED ON tablespacename;
ALTER USER username QUOTA UNLIMITED ON tablespacename;
要创建表或索引,所需的权限分别是CREATE TABLE和CREATE INDEX。
CREATE TABLE
CREATE INDEX