create tablespace incremental datafile size 1g autoextend off;
select tablespace_name from dba_tablespaces where tablespace_name='INCREMENTAL';
create user c##incremental identified by test default tablespace incremental;
select username, default_tablespace from dba_users where default_tablespace='INCREMENTAL';
grant dba to incremental;
conn incremental/test
19c多租户创建表空间和用户
最新推荐文章于 2024-12-15 08:40:05 发布
这篇博客介绍了如何在Oracle数据库中创建表空间、设置增量数据文件大小,并详细展示了创建用户、指定默认表空间以及授予DBA权限的过程。
578

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



