It can auto register itself if someone with sufficient privileges called a
BTS function. You will have to drop the objects that the BTS blade
created. That would include the CASTs, PROCEDURES, types (row type
bts_fsestoragerow
and opaque type sysbldsqltext), and the tables systraceclasses and
systracemsgs. No easy way around it. The unregister doesn't clean these
up in case they are being used by other blades.
Art
Art S. Kagel, President and Principal Consultant
ASK Database Management
www.askdbmgt.com
Blog: http://informix-myview.blogspot.com/
Disclaimer: Please keep in mind that my own opinions are my own opinions
and do not reflect on the IIUG, nor any other organization with which I am
associated either explicitly, implicitly, or by inference. Neither do
those opinions reflect those of other individuals affiliated with any
entity with which I am affiliated nor those of the entities themselves.
On Mon, May 18, 2015 at 11:53 AM, BillHatVerizon <garage_dba@verizon.net>
wrote:
> Thanks, Art.
> There was one blade registered - namely bts.3.00 .
> I don't know how it got registered. I did not do it. Nobody else has
> access.
> I unregistered it. That reduced the number of lines of junk in the export
> from 1500 down to 234.
> How do I get rid of these?
> create opaque type "informix".sysbldsqltext
>
> (
>
> internallength=variable,
>
> maxlen=24000,
>
> alignment=1
>
> );
>
> grant usage on type "informix".sysbldsqltext to 'public' as "informix";
>
> create implicit cast (lvarchar as sysbldsqltext with
> "informix".sysbldsqltextin);
>
> create explicit cast (sysbldsqltext as lvarchar with
> "informix".sysbldsqltextout);
>
> create explicit cast (sysbldsqltext as sendrecv with
> "informix".sysbldsqltextsend);
>
> create implicit cast (sendrecv as sysbldsqltext with
> "informix".sysbldsqltextrecv);
>
> create implicit cast (impexp as sysbldsqltext with
> "informix".sysbldsqltextimpt);
>
> create explicit cast (sysbldsqltext as impexp with
> "informix".sysbldsqltextexpt);
>
> create implicit cast (impexpbin as sysbldsqltext with
> "informix".sysbldsqltextimpb);
>
> create explicit cast (sysbldsqltext as impexpbin with
> "informix".sysbldsqltextexpb);
>
> create function "informix".sysbldsqltextin (lvarchar)
> returns SYSBldSQLText
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextIn)'
> language c;
>
> create function "informix".sysbldsqltextout (SYSBldSQLText)
> returns lvarchar
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextIn)'
> language c;
>
> create function "informix".sysbldsqltextsend (SYSBldSQLText)
> returns sendrecv
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextOut)'
> language c;
>
> create function "informix".sysbldsqltextrecv (sendrecv)
> returns SYSBldSQLText
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextIn)'
> language c;
>
> create function "informix".sysbldsqltextimpt (impexp)
> returns SYSBldSQLText
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextIn)'
> language c;
>
> create function "informix".sysbldsqltextexpt (SYSBldSQLText)
> returns impexp
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextOut)'
> language c;
>
> create function "informix".sysbldsqltextimpb (impexpbin)
> returns SYSBldSQLText
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextIn)'
> language c;
>
> create function "informix".sysbldsqltextexpb (SYSBldSQLText)
> returns impexpbin
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextOut)'
> language c;
>
> create function "informix".equal (SYSBldSQLText,SYSBldSQLText)
> returns boolean
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextEqual)'
> language c;
>
> create function "informix".sysbldlike (SYSBldSQLText,SYSBldSQLText)
> returns boolean
> external name '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextLike)'
> language c;
>
> create function "informix".sysbldprepare() returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldPrepare2)'
>
> language C variant;
>
> create function "informix".sysbldregister(CHAR(64), CHAR(18)) returns
> integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldRegister)'
>
> language C variant;
>
> create function "informix".sysbldregister(CHAR(64)) returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldRegister2)'
>
> language C variant;
>
> create function "informix".sysbldunregister(CHAR(64), CHAR(18)) returns
> integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldUnregister)'
>
> language C variant;
>
> create function "informix".sysbldunregister(CHAR(64)) returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldUnregister2)'
>
> language C variant;
>
> create function "informix".sysbldtrace(CHAR(64), integer) returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSetTraceFile)'
>
> language C variant;
>
> create function "informix".sysbldtrace(integer) returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSetTraceFile2)'
>
> language C variant;
>
> create function "informix".sysbldcleanuptables() returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldCleanupTables)'
>
> language C variant;
>
> create function "informix".sysbldrelease() returns lvarchar
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(MackRelease)'
>
> language C not variant;
>
> create function "informix".sysbldgetsrvrfile(lvarchar, lvarchar) returns
> integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(FetchSrvrFile)'
>
> language C variant;
>
> create function "informix".sysbldlstbldtoprep() returns lvarchar
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(LstBldToPrep)'
>
> language C variant;
>
> create function "informix".sysbldprepblade(lvarchar) returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(PrepBlade)'
>
> language C variant;
>
> create function "informix".sysbldtstsbspace (lvarchar) returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldTstSBSpace)'
>
> language c variant;
>
> create function "informix".sysbldtstvp (lvarchar) returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldTstVP)'
>
> language c variant;
>
> create function "informix".sysbldunprepare() returns integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldUnPrepare)'
>
> language C variant;
>
> create function "informix".sysbldaddblddir(lvarchar, lvarchar) returns
> integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldAddBldDir)'
>
> language C variant;
>
> create function "informix".sysbldputsrvrfile(lvarchar, lvarchar) returns
> integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldPutSrvrFile)'
>
> language C variant;
>
> create function "informix".sysbldgetanysrvrfile(lvarchar, lvarchar) returns
> integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldGetAnySrvrFile)'
>
> language C variant;
>
> create function "informix".sysbldhtmltableize(lvarchar,lvarchar) returns
> integer
>
> external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldHTMLTableize)' language c;
>
> create function "informix".sysbldhtmlobjdependents(lvarchar,lvarchar)
> returns integer
>
> external name
> "$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldHTMLObjDependents)" language
> c;
>
> create function "informix".sysbldhtmlobjdependencies(lvarchar,lvarchar)
> returns integer
>
> external name
> "$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldHTMLObjDependencies)"
> language c;
>
> create function "informix".sysbldhtmlblddependencies(lvarchar,lvarchar)
> returns integer
>
> external name
> "$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldHTMLBldDependencies)"
> language c;
>
> create function "informix".sysbldhtmlbeginfile(lvarchar,lvarchar) returns
> integer
>
> external name
> "$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldHTMLBeginFile)" language c;
>
> create function "informix".sysbldhtmlendfile(lvarchar) returns integer
>
> external name
> "$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldHTMLEndFile)" language c;
>
> create function "informix".sysbldhtmlbldobjs(lvarchar,lvarchar) returns
> integer
>
> external name
> "$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldHTMLBldObjs)" language c;
>
> insert into informix.syserrors values ('UGEN2', 'en_us.1252', 0, 1, 'Memory
> allocation has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN3', 'en_us.1252', 0, 1, 'Error
> creating large object from client file in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN4', 'en_us.1252', 0, 1, 'Large
> object handle is invalid in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN5', 'en_us.1252', 0, 1, 'Error
> creating large object from client file in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN6', 'en_us.1252', 0, 1, 'Error
> saving large object to client file in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN7', 'en_us.1252', 0, 1,
> 'Double-quoted string expected in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN8', 'en_us.1252', 0, 1,
> 'Interval format conversion has failed in FLUDT.');
> insert into informix.syserrors values ('UGEN9', 'en_us.1252', 0, 1, 'Input
> string is not terminated with double-quote in %FUNCTION%.');
> insert into informix.syserrors values ('UGENA', 'en_us.1252', 0, 1, 'Input
> string is too long in %FUNCTION%.');
> insert into informix.syserrors values ('UGENB', 'en_us.1252', 0, 1, 'Input
> data format error in %FUNCTION%.');
> insert into informix.syserrors values ('UGENC', 'en_us.1252', 0, 1, 'Output
> LO file creation has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGEND', 'en_us.1252', 0, 1,
> 'Entering function %FUNCTION%.');
> insert into informix.syserrors values ('UGENE', 'en_us.1252', 0, 1,
> 'Successfully exiting %FUNCTION%.');
> insert into informix.syserrors values ('UGENF', 'en_us.1252', 0, 1, 'The
> collection could not be created in %FUNCTION%.');
> insert into informix.syserrors values ('UGENG', 'en_us.1252', 0, 1,
> 'Insertion into the collection has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGENH', 'en_us.1252', 0, 1,
> 'Invalid
> iterator state used in %FUNCTION%.');
> insert into informix.syserrors values ('UGENI', 'en_us.1252', 0, 1,
> 'Opening
> the trace file has failed.');
> insert into informix.syserrors values ('UGEN1', 'en_us.1252', 0, 1,
> 'Connection has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGENJ', 'en_us.1252', 0, 1,
> 'Setting
> the trace threshold has failed.');
> insert into informix.syserrors values ('UGENJ', 'en_us.8859', 0, 1,
> 'Setting
> the trace threshold has failed.');
> insert into informix.syserrors values ('UGEN1', 'en_us.8859', 0, 1,
> 'Connection has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN2', 'en_us.8859', 0, 1, 'Memory
> allocation has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN3', 'en_us.8859', 0, 1, 'Error
> creating large object from client file in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN4', 'en_us.8859', 0, 1, 'Large
> object handle is invalid in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN5', 'en_us.8859', 0, 1, 'Error
> creating large object from client file in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN6', 'en_us.8859', 0, 1, 'Error
> saving large object to client file in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN7', 'en_us.8859', 0, 1,
> 'Double-quoted string expected in %FUNCTION%.');
> insert into informix.syserrors values ('UGEN8', 'en_us.8859', 0, 1,
> 'Interval format conversion has failed in FLUDT.');
> insert into informix.syserrors values ('UGEN9', 'en_us.8859', 0, 1, 'Input
> string is not terminated with double-quote in %FUNCTION%.');
> insert into informix.syserrors values ('UGENA', 'en_us.8859', 0, 1, 'Input
> string is too long in %FUNCTION%.');
> insert into informix.syserrors values ('UGENB', 'en_us.8859', 0, 1, 'Input
> data format error in %FUNCTION%.');
> insert into informix.syserrors values ('UGENC', 'en_us.8859', 0, 1, 'Output
> LO file creation has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGEND', 'en_us.8859', 0, 1,
> 'Entering function %FUNCTION%.');
> insert into informix.syserrors values ('UGENE', 'en_us.8859', 0, 1,
> 'Successfully exiting %FUNCTION%.');
> insert into informix.syserrors values ('UGENF', 'en_us.8859', 0, 1, 'The
> collection could not be created in %FUNCTION%.');
> insert into informix.syserrors values ('UGENG', 'en_us.8859', 0, 1,
> 'Insertion into the collection has failed in %FUNCTION%.');
> insert into informix.syserrors values ('UGENH', 'en_us.8859', 0, 1,
> 'Invalid
> iterator state used in %FUNCTION%.');
> insert into informix.syserrors values ('UGENI', 'en_us.8859', 0, 1,
> 'Opening
> the trace file has failed.');
> insert into informix.systracemsgs values ('UGEN1', 360, 'en_us.8859-1',
> NULL, 'Connection has failed in %FUNCTION% (%FILENAME%, %LINENO%).');
> insert into informix.systracemsgs values ('UGEN2', 361, 'en_us.8859-1',
> NULL, 'Memory allocation has failed in %FUNCTION% (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGEN3', 362, 'en_us.8859-1',
> NULL, 'Error creating large object from client file in %FUNCTION%
> (%FILENAME%, %LINENO%).');
> insert into informix.systracemsgs values ('UGEN4', 363, 'en_us.8859-1',
> NULL, 'Large object handle is invalid in %FUNCTION% (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGEN5', 364, 'en_us.8859-1',
> NULL, 'Error creating large object from client file in %FUNCTION%
> (%FILENAME%, %LINENO%).');
> insert into informix.systracemsgs values ('UGEN6', 365, 'en_us.8859-1',
> NULL, 'Error saving large object to client file in %FUNCTION% (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGEN7', 366, 'en_us.8859-1',
> NULL, 'Double-quoted string expected in %FUNCTION% (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGEN8', 367, 'en_us.8859-1',
> NULL, 'Interval format conversion has failed in FLUDT (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGEN9', 368, 'en_us.8859-1',
> NULL, 'Input string is not terminated with double-quote in %FUNCTION%
> (%FILENAME%, %LINENO%).');
> insert into informix.systracemsgs values ('UGENA', 369, 'en_us.8859-1',
> NULL, 'Input string is too long in %FUNCTION% (%FILENAME%, %LINENO%).');
> insert into informix.systracemsgs values ('UGENB', 370, 'en_us.8859-1',
> NULL, 'Input data format error in %FUNCTION% (%FILENAME%, %LINENO%).');
> insert into informix.systracemsgs values ('UGENC', 371, 'en_us.8859-1',
> NULL, 'Output LO file creation has failed in %FUNCTION% (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGEND', 372, 'en_us.8859-1',
> NULL, 'Entering function %FUNCTION% (%FILENAME%).');
> insert into informix.systracemsgs values ('UGENE', 373, 'en_us.8859-1',
> NULL, 'Successfully exiting %FUNCTION% (%FILENAME%).');
> insert into informix.systracemsgs values ('UGENF', 374, 'en_us.8859-1',
> NULL, 'The collection could not be created in %FUNCTION% (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGENG', 375, 'en_us.8859-1',
> NULL, 'Insertion into the collection has failed in %FUNCTION% (%FILENAME%,
> %LINENO%).');
> insert into informix.systracemsgs values ('UGENH', 376, 'en_us.8859-1',
> NULL, 'Invalid iterator state used in %FUNCTION% (%FILENAME%, %LINENO%).');
> insert into informix.systracemsgs values ('UGENI', 377, 'en_us.8859-1',
> NULL, 'Opening the trace file has failed.');
> insert into informix.systracemsgs values ('UGENJ', 378, 'en_us.8859-1',
> NULL, 'Setting the trace threshold has failed.');
> insert into informix.systraceclasses values ('blademgr', 1);
>
> -----Original Message-----
> From: Art Kagel
> Sent: Sunday, May 17, 2015 5:51 PM
> To: ids@iiug.org
> Subject: Re: dbimport schema has changed [35114]
>
> Run "blademgr" then, at the prompt, enter the command:
>
> my_servername> list <database name>
>
> That will print out a list of datablades registered to that database. Then
> you can use the "unregister <module name> <database name>
>
> You can see the blademgr command list by entering a question mark (?) at
> the command prompt.
>
> Art
>
> Art S. Kagel, President and Principal Consultant
> ASK Database Management
> www.askdbmgt.com
>
> Blog: http://informix-myview.blogspot.com/
>
> Disclaimer: Please keep in mind that my own opinions are my own opinions
> and do not reflect on the IIUG, nor any other organization with which I am
> associated either explicitly, implicitly, or by inference. Neither do
> those opinions reflect those of other individuals affiliated with any
> entity with which I am affiliated nor those of the entities themselves.
>
> On Sun, May 17, 2015 at 5:13 PM, BillHatVerizon <garage_dba@verizon.net>
> wrote:
>
> > We have never intentionally used any BTS feature or created such an
> index.
> > Maybe there was a typo someplace last week.
> > How could I find out where the datablade is that caused this ?
> >
> > -----Original Message-----
> > From: Art Kagel
> > Sent: Sunday, May 17, 2015 12:30 PM
> > To: ids@iiug.org
> > Subject: Re: dbimport schema has changed [35110]
> >
> > These are related to using any Basic Text Search (BTS) features in this
> > database. Using any BTS function or creating a BTS based index will
> create
> > several tables and many stored routines that are part of the BTS
> > Datablade. This is what dbexport/dbschema is including in the export.
> >
> > You can use the --no-blade-procs option to myschema to eliminate the
> > stored
> > procedures belonging to that database, but the tables and data types
> > created by its installation are too hard for myschema to identify.
> > Myschema
> > will generate a script compatible with dbimport if you also add the -l
> > option.
> >
> > Art
> >
> > Art S. Kagel, President and Principal Consultant
> > ASK Database Management
> > www.askdbmgt.com
> >
> > Blog: http://informix-myview.blogspot.com/
> >
> > Disclaimer: Please keep in mind that my own opinions are my own opinions
> > and do not reflect on the IIUG, nor any other organization with which I
> am
> > associated either explicitly, implicitly, or by inference. Neither do
> > those opinions reflect those of other individuals affiliated with any
> > entity with which I am affiliated nor those of the entities themselves.
> >
> > On Sun, May 17, 2015 at 1:18 PM, BillHatVerizon <garage_dba@verizon.net>
> > wrote:
> >
> > > This question concerns IBM Informix Dynamic Server Version 12.10.TC1IE
> > > running
> > > on Windows Server 2008R2 .
> > >
> > > The dbexport utility has started writing about 1500 of lines that were
> > not
> > > there before.
> > > These are near the top of the schema file.
> > > What could have caused this? How do I get the old behavior back?
> > >
> > > create opaque type "informix".sysbldsqltext
> > >
> > > (
> > >
> > > internallength=variable,
> > >
> > > maxlen=24000,
> > >
> > > alignment=1
> > >
> > > );
> > >
> > > grant usage on type "informix".sysbldsqltext to 'public' as "informix";
> > >
> > > create row type "informix".bts_fsestoragerow
> > >
> > > (
> > >
> > > sto_name lvarchar,
> > >
> > > num_buckets integer,
> > >
> > > bucket_num integer,
> > >
> > > bucket blob
> > >
> > > );
> > > grant usage on type "informix".bts_fsestoragerow to 'public' as
> > > "informix";
> > >
> > > create implicit cast (lvarchar as sysbldsqltext with
> > > "informix".sysbldsqltextin);
> > >
> > > create explicit cast (sysbldsqltext as lvarchar with
> > > "informix".sysbldsqltextout);
> > >
> > > create explicit cast (sysbldsqltext as sendrecv with
> > > "informix".sysbldsqltextsend);
> > >
> > > create implicit cast (sendrecv as sysbldsqltext with
> > > "informix".sysbldsqltextrecv);
> > >
> > > create implicit cast (impexp as sysbldsqltext with
> > > "informix".sysbldsqltextimpt);
> > >
> > > create explicit cast (sysbldsqltext as impexp with
> > > "informix".sysbldsqltextexpt);
> > >
> > > create implicit cast (impexpbin as sysbldsqltext with
> > > "informix".sysbldsqltextimpb);
> > >
> > > create explicit cast (sysbldsqltext as impexpbin with
> > > "informix".sysbldsqltextexpb);
> > >
> > > create function "informix".sysbldsqltextin (lvarchar)
> > > returns SYSBldSQLText
> > > external name
> '$INFORMIXDIR/extend/ifxmngr/ifxmngr.bld(SYSBldSQLTextIn)'
> > > language c;
> > >
> > > -- etc, etc...
> > > -- ====== at the end it has this...
> > > insert into informix.systracemsgs values ('BTSF9', 338, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - there is no snowball stemmer language specified after the
> > > period');
> > > insert into informix.systracemsgs values ('BTSG0', 339, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - there is no snowball stemmer language support for the
> > > $DB_LOCALE
> > > setting: %PARAM1%');
> > > insert into informix.systracemsgs values ('BTSG1', 340, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - there is no snowball stemmer language support for the
> > > specified
> > > language: %PARAM1%');
> > > insert into informix.systracemsgs values ('BTSG2', 341, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - internal index length %PARAM1% is too long. The maximum is
> > > %PARAM2%');
> > > insert into informix.systracemsgs values ('BTSG3', 342, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - bts_lock_setup: cannot get virtual processor lock
> > > pointer');
> > > insert into informix.systracemsgs values ('BTSG4', 343, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - bts_lock_setup: virtual processor is not locked');
> > > insert into informix.systracemsgs values ('BTSG5', 344, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - bts_lock_setup: virtual processor is not locked by the
> > > current
> > > transaction');
> > > insert into informix.systracemsgs values ('BTSG6', 345, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - not (-) operator cannot be specified in thesaurus');
> > > insert into informix.systracemsgs values ('BTSG7', 346, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - and (+) operator cannot be specified in thesaurus');
> > > insert into informix.systracemsgs values ('BTSG8', 347, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - cannot determine index owner of thesaurus index
> %PARAM1%');
> > > insert into informix.systracemsgs values ('BTSG9', 348, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - cannot lock thesaurus index %PARAM1%');
> > > insert into informix.systracemsgs values ('BTSH0', 349, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - cannot read thesaurus index parameters for %PARAM1%');
> > > insert into informix.systracemsgs values ('BTSH1', 350, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - the index %PARAM1% does not have the thesaurus parameter
> > > set');
> > > insert into informix.systracemsgs values ('BTSH2', 351, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - thesaurus index cannot be fragmented');
> > > insert into informix.systracemsgs values ('BTSH3', 352, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - invalid term found in thesaurus. Only word terms can be
> > > specified');
> > > insert into informix.systracemsgs values ('BTSH4', 353, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - the %PARAM1% attribute must be specified');
> > > insert into informix.systracemsgs values ('BTSH5', 354, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - the text or file attribute must be specified');
> > > insert into informix.systracemsgs values ('BTSH6', 355, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - the copy_temp attribute can only be specified on an index
> > > in
> > > an
> > > sbspace');
> > > insert into informix.systracemsgs values ('BTSH7', 356, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - the field is not in the document');
> > > insert into informix.systracemsgs values ('BTSH8', 357, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - the directory cannot contain a bts index');
> > > insert into informix.systracemsgs values ('BTSH9', 358, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - the ID is out of bounds');
> > > insert into informix.systracemsgs values ('BTSI0', 359, 'en_us.8859-1',
> > > NULL,
> > > 'bts error - must be a DBSA to use parameter %PARAM1%');
> > > insert into informix.systraceclasses values ('blademgr', 1);
> > > insert into informix.systraceclasses values ('bts', 2);
>
>
>
> *******************************************************************************
> Forum Note: Use "Reply" to post a response in the discussion forum.
>
>
--001a113f8a9eb8485305165dea46