If IndexingFlags.dtsCheckDiskSpace was set in an IndexJob, and if it appears that disk space is insufficient, then dtsAskDiskFullOverride will be sent to the error handler; the calling program should always allow the update to be cancelled in this case (the default action).
dtsErOpenTemp = 3
Unable to open temporary file.
dtsInfNoFilesToIndex = 4
Obsolete; no longer used.
dtsErIxWrongVersion = 5
Index built by incompatible version of dtSearch
dtsErIxInterrupted = 6
Obsolete; no longer used.
dtsErAccDirectory = 7
Unable to create or access directory
dtsErWorkDirFail = 8
Private directory is already locked
dtsErAccFile = 9
Unable to access input file
dtsErFileCorrupt = 10
File format error reading input file
dtsErIndexFull = 11
Index is full
dtsErPdfLzwNotLicensed = 12
Obsolete; no longer used.
dtsErTimeout = 13
Operation timed out (trigged by timeoutSeconds)
dtsErCreateFailed = 14
Unable to create index
dtsErCommitFailed = 15
Unable to commit changes to index
dtsErFileNotFound = 16
The document was not found in the index (returned when a document listed to be removed from an index is not found in the index)
dtsErFileEncrypted = 17
The document could not be accessed due to encryption
dtsErApiError = 18
Incorrectly configured API structure (for example, invalid dtSearchJob)
dtsErDataSourceException = 19
Exception thrown by data source
dtsErBlankFilename = 20
Filename is blank
dtsErFileEmpty = 21
File contains no data
dtsErInvalidHandle = 22
A handle passed to a dtSearch API function was invalid
dtsErConflictingDocIdRanges = 23
In an index merge, the flag dtsIndexKeepExistingDocIds was set and one or more indexes had overlapping doc id ranges
dtsErLowMemory = 112
Search halted due to low memory available
dtsErBadRequest = 116
Syntax error in search request
dtsErSearchRequestEmpty = 117
Search request is blank
dtsErSearchLimitReached = 120
Search halted because the autoStopLimit for the search job was reached
Index update could not complete due to an error accessing the index
dtsErOutOfMemory = 204
An out-of-memory error occurred
dtsErUnknownException = 205
An unexpected exception occurred
dtsErContainerItemCorrupt = 206
An item stored inside a container format could not be extracted due to data corruption
dtsErContainerItemEncrypted = 207
An item stored inside a container format could not be extracted due to encryption
dtsErContainerFormatUnsupported = 208
A container could be be processed due to an unsupported file format
dtsErMergeIndexesNotCompatible = 209
One or more input indexes for a merge are not compatible with the target index (use IndexJob.CreateCompatibleIndexPath to create indexes that will be compatible with a target index for merging).
dtsErIcuNotInitialized = 210
The ICU library could not be loaded. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErCmapFilesMissing = 211
CMAP files needed to process some PDF files are missing. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErStemmingRulesMissing = 212
Options.StemmingRulesFile could not be read. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErAlphabetFileMissing = 213
Options.AlphabetFile could not be read. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErWordNetMissing = 214
The WordNet synonym database could not be opened. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErUserThesaurusMissing = 215
Options.UserThesaurusFile could not be read. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErTextFieldTableMissing = 216
Options.TextFieldsFile could not be read. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErFileTypeTableFileMissing = 217
Options.FileTypeTableFile could not be read. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErSegmentationRulesFileMissing = 218
Options.SegmentationRulesFile could not be read. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErNoiseWordFileMissing = 219
Options.NoiseWordFile could not be read. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErDtvPdfCryptoLibraryMissing = 220
The crypto-enabled PDF file parser could not be loaded. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErDtvRarLibraryMissing = 221
The Rar file parser could not be loaded. Returned by Options.CheckConfiguration or dtssCheckConfiguration.
dtsErIndexMissing = 222
The index folder either does not exist or does not appear to contain an index
Error codes are returned after a job completes. In the C++ API, use the dtsErrorInfo attached to a job to access error codes. In .NET, use the Errors property of the job. In Java, use getErrors().