Tables [dbo].[usm_object_wf_instance_ref]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count869
Created12:31:32 PM Sunday, December 05, 2010
Last Modified11:19:23 AM Monday, December 13, 2010
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key XPKusm_object_wf_instance_ref: object_workflow_instance_idobject_workflow_instance_idint4
No
object_id1int4
No
object_id2int4
Yes
process_instance_idvarchar(128)128
No
statusint4
No
object_typeint4
No
created_datedatetime8
Yes
('today')
modified_datedatetime8
Yes
('today')
workflow_typeint4
Yes
object_infontextmax
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKusm_object_wf_instance_ref: object_workflow_instance_idXPKusm_object_wf_instance_refobject_workflow_instance_id
Yes
Permissions
TypeActionOwning Principal
GrantDeleteusmgroup
GrantInsertusmgroup
GrantSelectusmgroup
GrantUpdateusmgroup
SQL Script
CREATE TABLE [dbo].[usm_object_wf_instance_ref]
(
[object_workflow_instance_id] [int] NOT NULL,
[object_id1] [int] NOT NULL,
[object_id2] [int] NULL,
[process_instance_id] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[status] [int] NOT NULL,
[object_type] [int] NOT NULL,
[created_date] [datetime] NULL CONSTRAINT [DF__usm_objec__creat__44B5F42E] DEFAULT ('today'),
[modified_date] [datetime] NULL CONSTRAINT [DF__usm_objec__modif__45AA1867] DEFAULT ('today'),
[workflow_type] [int] NULL,
[object_info] [ntext] COLLATE SQL_Latin1_General_CP1_CS_AS NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO
ALTER TABLE [dbo].[usm_object_wf_instance_ref] ADD CONSTRAINT [XPKusm_object_wf_instance_ref] PRIMARY KEY CLUSTERED ([object_workflow_instance_id]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[usm_object_wf_instance_ref] TO [usmgroup]
GRANT INSERT ON  [dbo].[usm_object_wf_instance_ref] TO [usmgroup]
GRANT DELETE ON  [dbo].[usm_object_wf_instance_ref] TO [usmgroup]
GRANT UPDATE ON  [dbo].[usm_object_wf_instance_ref] TO [usmgroup]
GO
Uses