|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Tables > CfgPatch Table |
Navigation: iVend Database Database > Tables >
iVend 6.6 Database Help
CfgPatch Table
Collapse All Expand All
iVend Database Database : CfgPatch Table |
Description
Stores patches information.
Properties
Creation Date |
7/28/2017 10:09 AM |
File Group |
PRIMARY |
Text File Group |
PRIMARY |
System Object |
|
Published for Replication |
|
Rows |
0 |
Data Space Used |
0.00 KB |
Index Space Used |
0.00 KB |
Columns
|
Column Name |
Description |
Datatype |
Length |
Allow Nulls |
Default |
Formula |
|
PatchKey |
Primary key for the table |
VarWChar |
50 |
|
|
|
|
Name |
Stores the Name of the Patch |
VarWChar |
100 |
|
|
|
|
Description |
Stores the Description of the patch |
VarWChar |
500 |
|
|
|
|
Created |
Date of creation of this record |
DBTimeStamp |
4 |
|
|
|
|
CreatedBy |
Reference of user who has created this record. See also Security User |
VarWChar |
50 |
|
|
|
|
Modified |
Date of last modification of this record |
DBTimeStamp |
4 |
|
|
|
|
ModifiedBy |
Reference of user who has modified this record. See also Security User |
VarWChar |
50 |
|
|
|
|
IsDeleted |
Value is True if the record has been deleted from the system. Record is always Soft Deleted |
Boolean |
1 |
|
|
|
|
PatchData |
Stores files assciated with the patch |
LongVarBinary |
16 |
|
|
|
|
PatchVersion |
Version of the Patch |
Numeric |
9 (20,5) |
|
|
|
|
ApplicationType |
Captures the Application type. Valid values are : None = -1, POS = 0, ManagementConsole = 1, Database = 2 |
Integer |
4 |
|
|
|
|
ApplicationVersion |
Version of POS / Management Console / Database |
VarWChar |
20 |
|
|
|
Indexes
Index |
Description |
Primary |
Unique |
|
|
|
SQL
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON CREATE TABLE [dbo].[CfgPatch]( [PatchKey] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Name] [nvarchar](100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Description] [nvarchar](500) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [Created] [datetime] NOT NULL, [CreatedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [Modified] [datetime] NOT NULL, [ModifiedBy] [nvarchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, [IsDeleted] [bit] NOT NULL, [PatchData] [varbinary](max) NOT NULL, [PatchVersion] [decimal](20, 5) NOT NULL, [ApplicationType] [int] NOT NULL, [ApplicationVersion] [nvarchar](20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, CONSTRAINT [PK_CfgPatch] PRIMARY KEY CLUSTERED ( [PatchKey] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] |
See Also
© 2019 All Rights Reserved.
Send comments on this topic.