暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

Troubleshooting waits for enq TX - allocate ITL entry - Document 1472175.1

原创 不吃草的牛_Nick 2022-11-19
373

1) Set INITRANS to 50 and pct_free to 40
alter table <table_name> INITRANS 50;
alter table <table_name> PCTFREE 40 INITRANS 50;
2) Re-organize the table using move (alter table <table_name> move;)
alter table <table_name> move;
3) Then rebuild all the indexes of the table as below
alter index <index_name> rebuild INITRANS 50;
alter index <index_name> rebuild online PCTFREE 20;
alter index <index_name> rebuild PCTFREE 40 INITRANS 50;
alter index <index_name> rebuild online PCTFREE 20 INITRANS 50;

ALTER TABLE ORGANIZATION PCTFREE 20 INITRANS 16;
ALTER TABLE ORGANIZATION MOVE;
ALTER INDEX PK_ORGANIZATION REBUILD PCTFREE 20 INITRANS 16 NOLOGGING;


ALTER TABLE TLHR.TLHRBOKBAL PCTFREE 20 INITRANS 16 ;
ALTER TABLE TLHR.TLHRBOKBAL MOVE NOLOGGING PARALLEL 12;
ALTER TABLE TLHR.TLHRBOKBAL LOGGING NOPARALLEL;
ALTER INDEX TLHR.PK_TLHRBOKBAL REBUILD PCTFREE 20 INITRANS 16 NOLOGGING PARALLEL 12;
ALTER INDEX TLHR.PK_TLHRBOKBAL LOGGING NOPARALLEL;

「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论