QUOTA_Quota table
This table holds information about quotas that have been defined for the project.
Definition
CREATE TABLE dbo.QUOTA_Quota (
Quota_ID int IDENTITY NOT NULL ,
Project_ID nvarchar (255) NOT NULL ,
Name nvarchar (512) NOT NULL ,
Expression nvarchar (512) NOT NULL ,
Matrix_ID int NULL,
Flag int NOT NULL
MetaData nvarchar (255) NULL,
InUse int NOT NULL,
)
Columns
Quota_ID
The quota number.
Project_ID
This project name.
Name
The name of the quota that is defined by the user, or assigned by the UNICOM Intelligence Quota application.
Expression
The expression that is defined by the user, or generated by the UNICOM Intelligence Quota application. The expression is used to calculate the quota pend result.
Matrix_ID
The quota matrix number to which the quota belongs.
Flag
Identifies the quota behavior, as defined by QuotaFlags.
Metadata
Defines the priority for the Priority pending mode (the lower the number, the higher priority).
InUse
Indicates whether the Quota is in use.
See also