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.
我正在创建一个带有表空间的表:
CREATE TABLE SALARY..... IN ACCOUNTING INDEX IN ACCOUNT_IDX
会计和 Account_IDX 将在哪里创建?
上面的脚本将在 ACCOUNTING 表空间中创建 SALARY,并在 ACCOUNT_IDX 表空间中为该表创建索引。
ACCOUNTING 和 ACCOUNT_IDX 表空间需要在具有 CREATE TABLESPACE 语句的单独脚本中创建。
如果您查看 CREATE TABLESPACE 的语法,语句的 USING 部分将告诉 DB2 将表空间的文件放在哪里。
DB2 创建表空间参考