SUS_FACILITIES
Table to store facilities. Facilities refer to the physical buildings owned or operated by a company or organization such as manufacturing plants, offices, warehouses, distribution centers, retail stores, and any other sites where business operations take place.
Details
-
Schema: FUSION
-
Object owner: SUS
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
SUS_FACILITIES_PK |
FACILITY_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| FACILITY_ID | NUMBER | 18 | Yes | Unique identifier of the facility. | |
| FACILITY_NAME | VARCHAR2 | 240 | Stores the unique name of the Facility. | ||
| DESCRIPTION | VARCHAR2 | 4000 | Stores the description of the facility. | ||
| HEADCOUNT | NUMBER | 18 | Number of people who work at the facility. | ||
| BUILDING_AREA | NUMBER | Stores the area of the Building. | |||
| BUILDING_AREA_UOM_CODE | VARCHAR2 | 3 | Unit of measure of the building area. | ||
| LOCATION_ID | NUMBER | 18 | Unique identifier of the location of the facility. | ||
| GRID_REGION_CODE | VARCHAR2 | 100 | Code for a specific grid region. | ||
| OWNERSHIP_TYPE_CODE | VARCHAR2 | 100 | Code for type of facility ownership. | ||
| LAND_AREA | NUMBER | Land area occupied by the facility. | |||
| LAND_AREA_UOM_CODE | VARCHAR2 | 3 | Unit of measure of the land area. | ||
| LEGAL_ENTITY_ID | NUMBER | 18 | Unique identifier of the facility's legal entity. | ||
| START_DATE | DATE | Date from when the facility is active. | |||
| END_DATE | DATE | Date till when the facility stays active. | |||
| WATER_STRESS_CODE | VARCHAR2 | 100 | Water stress level at facility location. Possible values are low, medium, and high. | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| SUS_FACILITIES_PK | Unique | Default | FACILITY_ID |