|
<< Click to Display Table of Contents >> Navigation: iVend Database Database > Tables > RepReplicationStatus Table |
Navigation: iVend Database Database > Tables >
iVend 6.6 Database Help
RepReplicationStatus Table
Collapse All Expand All
iVend Database Database : RepReplicationStatus Table |
Description
Stores the current status for the replication data
Properties
Creation Date |
4/13/2015 12:00 PM |
File Group |
PRIMARY |
Text File Group |
|
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 |
|
SiteID |
Primary Key holds the Site Id of the Sending Site. |
Integer |
4 |
|
|
|
|
SequenceNo |
Refers to the Last Send Dump Sequence Number that was successfully received from the Sending site. |
BigInt |
8 |
|
((0)) |
|
|
BackupSequenceNo |
Backup sequence number |
BigInt |
8 |
|
((0)) |
|
Indexes
Index |
Description |
Primary |
Unique |
|
|
|
SQL
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON CREATE TABLE [dbo].[RepReplicationStatus]( [SiteID] [int] NOT NULL, [SequenceNo] [bigint] NOT NULL, [BackupSequenceNo] [bigint] NOT NULL, CONSTRAINT [PK_RepReplicationStatus] PRIMARY KEY CLUSTERED ( [SiteID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] ALTER TABLE [dbo].[RepReplicationStatus] ADD CONSTRAINT [DF_RepReplicationStatus_SequenceNo] DEFAULT ((0)) FOR [SequenceNo] ALTER TABLE [dbo].[RepReplicationStatus] ADD CONSTRAINT [DF_RepReplicationStatus_BackupSequenceNo] DEFAULT ((0)) FOR [BackupSequenceNo] |
See Also
© 2019 All Rights Reserved.
Send comments on this topic.