Tables [dbo].[c2oworkflowsArchive]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count110
Created11:42:02 AM Friday, March 26, 2010
Last Modified11:42:02 AM Friday, March 26, 2010
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
mode1varchar(25)25
Yes
wfDatasettextmax
Yes
Cluster Primary Key PK__c2oworkflowsArch__5441852A: OIDForeign Keys c2oworkflowsarch_ibfk_1: [dbo].[C2ORuntimeObjectsArch].OIDOIDint4
No
DefinitionXmltextmax
Yes
compressedDeftinyint1
Yes
((0))
wfIcnStatesXMLtextmax
Yes
compressedDstinyint1
Yes
((0))
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__c2oworkflowsArch__5441852A: OIDPK__c2oworkflowsArch__5441852AOID
Yes
Foreign Keys Foreign Keys
NameDeleteColumns
c2oworkflowsarch_ibfk_1CascadeOID->[dbo].[C2ORuntimeObjectsArch].[OID]
SQL Script
CREATE TABLE [dbo].[c2oworkflowsArchive]
(
[mode1] [varchar] (25) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[wfDataset] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[OID] [int] NOT NULL,
[DefinitionXml] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[compressedDef] [tinyint] NULL CONSTRAINT [DF__c2oworkfl__compr__52593CB8] DEFAULT ((0)),
[wfIcnStatesXML] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[compressedDs] [tinyint] NULL CONSTRAINT [DF__c2oworkfl__compr__534D60F1] DEFAULT ((0))
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[c2oworkflowsArchive] ADD CONSTRAINT [PK__c2oworkflowsArch__5441852A] PRIMARY KEY CLUSTERED ([OID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[c2oworkflowsArchive] ADD CONSTRAINT [c2oworkflowsarch_ibfk_1] FOREIGN KEY ([OID]) REFERENCES [dbo].[C2ORuntimeObjectsArch] ([OID]) ON DELETE CASCADE
GO
Uses