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 |
| Constraint | Columns | References | Delete/update action |
|---|---|---|---|
| IXSStatus | IXSQueryID | pears.IXSStatus (IXSQueryID) | NOT NULL; ON DELETE CASCADE |
| Name | Type | Columns | Detail |
|---|---|---|---|
| IXSResultRecID | Unique index | RecordID, IXSQueryID |
-- 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