Technology Stack - EBS (MOSC)

MOSC Banner

FILE_FORMAT count mismatch in FND_LOBS

edited Jul 29, 2015 12:57PM in Technology Stack - EBS (MOSC) 3 commentsAnswered

"Rebuild Help Search Index" Concurrent program was running for long time. So in order to troubleshoot followed the note 397757.1 (How to Speed Up Index Creation on FND_LOBS by indexing Only FND_HELP Data).

1. Take a snapshot of the original state of the fnd_lobs entries for comfort sake:

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

select

FILE_FORMAT,

count(*)

from

applsys.fnd_lobs

group by FILE_FORMAT;

FILE_FORMA   COUNT(*)

---------- ----------

TEXT            33378

IGNORE           6401

BINARY           7108

binary          91393

text            15754

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2. Set the file_format column of all rows other than FND_HELP so that they won't get indexed:

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

update applsys.fnd_lobs

set FILE_FORMAT = 'IGNORE'

where NVL(PROGRAM_NAME,'NULL') != 'FND_HELP' ;

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center