Show pageOld revisionsBacklinksExport to PDFFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== pears.IXSStatus ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Description ===== Status of current searches. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **IXSQueryID** | char(20) | NOT NULL | | | | IXSQueryGroup | char(20) | NULL | | For group deletions | | Catalog | char(100) | NULL | | | | Scope | char(250) | NULL | | | | Query | char(250) | NULL | | | | QueryTime | timestamp | NULL | current timestamp | | | Status | smallint | NULL | 0 | 0=newly added, Positive=successfully completed, Negative=completed with error | ===== Primary Key ===== * IXSQueryID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== ^ Table ^ Constraint ^ Columns ^ Referenced columns ^ | [[database:tables:pears_ixsresult|pears.IXSResult]] | IXSStatus | IXSQueryID | IXSQueryID | ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."IXSStatus" -- Table comment: Status of current searches. -- Statement count: 4 CREATE TABLE "pears"."IXSStatus" ( "IXSQueryID" char(20) NOT NULL ,"IXSQueryGroup" char(20) NULL ,"Catalog" char(100) NULL ,"Scope" char(250) NULL ,"Query" char(250) NULL ,"QueryTime" timestamp NULL DEFAULT current timestamp ,"Status" smallint NULL DEFAULT 0 ,PRIMARY KEY ("IXSQueryID" ASC) ) go COMMENT ON COLUMN "pears"."IXSStatus"."IXSQueryGroup" IS 'For group deletions' go COMMENT ON COLUMN "pears"."IXSStatus"."Status" IS '0=newly added, Positive=successfully completed, Negative=completed with error' go COMMENT ON TABLE "pears"."IXSStatus" IS 'Status of current searches.' go </code> database/tables/pears_ixsstatus.txt Last modified: 2026/08/07 19:24by 127.0.0.1