View previous topic :: View next topic
|
Author |
Message |
r.ravikumar
New User
Joined: 05 Jan 2007 Posts: 18 Location: chennai
|
|
|
|
I want to load the reports to IBM OnDemand server. But while loading the report files using the utility program ARSLOAD it is throughing the error "Generic Indexer requires the data to have already been indexed". Please help me to resolve this |
|
Back to top |
|
|
Bill Dennis
Active Member
Joined: 17 Aug 2007 Posts: 562 Location: Iowa, USA
|
|
|
|
The Generic Indexed requires two files. The Data file and an Index file. The Index file contains control information and the index fields and their values to be assigned. Name the file like your data file with .ind suffix.
Sample:
Code: |
COMMENT: COMMENT: Generic Indexer Example 1
COMMENT: Different input file for each document
COMMENT:
COMMENT: Specify code page of the index data
CODEPAGE:500
COMMENT: Document #1
COMMENT: Index field #1
GROUP_FIELD_NAME:rdate
GROUP_FIELD_VALUE:07/13/99
COMMENT: document data starts at beginning of file
GROUP_OFFSET:0
COMMENT: document data goes to end of file
GROUP_LENGTH:0
GROUP_FILENAME:ARS.GENERIC1.OUTPUT |
|
|
Back to top |
|
|
|