如何将CLOB的数据,从一个tablespace 移到到另一个tablespace?

[复制链接]
查看11 | 回复1 | 2005-2-28 12:57:00 | 显示全部楼层 |阅读模式
CLOB的数据在Oracle中和表的其他数据是分开存放的,生成一个索引来保存!
如何将真正的数据从一个tablespace 移到到另一个tablespace?
谢谢:)
回复

使用道具 举报

千问 | 2005-2-28 12:57:00 | 显示全部楼层
SQL> create table t4(c1 clob) tablespace users;
Table created.
SQL> alter table t4 move lob(c1) store as (tablespace tools);
Table altered.
Under 8i and 9i, the LOB index is located in the same tablespace as the LOB segment. The tablespace specification and storage values for LOB index are ignored.
Alternatively, you can exp, pre-create CLOB tables, and imp with "ignore=y".
Also see Metalink Doc ID 159995.1
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行