pears.IXSResult

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Used for temporarily storing Index Server search results.

Column Type Null Default Comment
IXSQueryID char(20) NOT NULL
RecordID char(20) NOT NULL
Score integer NULL
HitCount integer NULL
Rank integer NULL
  • IXSQueryID, RecordID
Constraint Columns References Delete/update action
IXSStatus IXSQueryID pears.IXSStatus (IXSQueryID) NOT NULL; ON DELETE CASCADE
  • No incoming foreign keys found.
Name Type Columns Detail
IXSResultRecID Unique index RecordID, IXSQueryID
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."IXSResult"
-- Table comment: Used for temporarily storing Index Server search results.
-- Statement count: 4
 
CREATE TABLE "pears"."IXSResult" (
    "IXSQueryID"                     CHAR(20) NOT NULL
   ,"RecordID"                       CHAR(20) NOT NULL
   ,"Score"                          INTEGER NULL
   ,"HitCount"                       INTEGER NULL
   ,"Rank"                           INTEGER NULL
   ,PRIMARY KEY ("IXSQueryID" ASC,"RecordID" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."IXSResult" IS 
	'Used for temporarily storing Index Server search results.'
GO
 
 
ALTER TABLE "pears"."IXSResult"
    ADD NOT NULL FOREIGN KEY "IXSStatus" ("IXSQueryID" ASC)
    REFERENCES "pears"."IXSStatus" ("IXSQueryID")
    ON DELETE CASCADE
GO
 
 
CREATE UNIQUE INDEX "IXSResultRecID" ON "pears"."IXSResult"
    ( "RecordID","IXSQueryID" )
GO
  • database/tables/pears_ixsresult.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1