PRINTER_CURRENT_STATUS
This table represents the printer status when data was collected. There is a row in this table for each status condition on a given printer, all pointing to the same PRINTER_ID.
|
Field Name |
Data Type |
Description |
|---|---|---|
|
STATUS_ID |
BIGINT |
The primary key. |
|
STATUS_MESSAGE |
VARCHAR(255) |
The text for this status (for example, Tray 1 Low). |
|
STATUS_SEVERITY |
VARCHAR(255) |
The severity of this status (for example, Warning). |
|
STATUS_TYPE |
VARCHAR(255) |
The type of this status (for example, Printer or Supply). |
|
PRINTER_ID |
BIGINT |
The foreign key to NETWORK_PRINTER.PRINTER_ID. |