Tables [dbo].[C2OAgendaTask]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count0
Created11:42:02 AM Friday, March 26, 2010
Last Modified11:42:02 AM Friday, March 26, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
CalendarPathtextmax
Yes
VacationCalendarPathtextmax
Yes
Periodint4
Yes
Cluster Primary Key PK__C2OAgendaTask__440B1D61: ROIDForeign Keys c2oagendatask_ibfk_1: [dbo].[C2ORuntimeObjects].ROIDROIDint4
No
TaskIDint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK__C2OAgendaTask__440B1D61: ROIDPK__C2OAgendaTask__440B1D61ROID
Yes
Foreign Keys Foreign Keys
NameDeleteColumns
c2oagendatask_ibfk_1CascadeROID->[dbo].[C2ORuntimeObjects].[ROID]
SQL Script
CREATE TABLE [dbo].[C2OAgendaTask]
(
[CalendarPath] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[VacationCalendarPath] [text] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Period] [int] NULL,
[ROID] [int] NOT NULL,
[TaskID] [int] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[C2OAgendaTask] ADD CONSTRAINT [PK__C2OAgendaTask__440B1D61] PRIMARY KEY CLUSTERED ([ROID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[C2OAgendaTask] ADD CONSTRAINT [c2oagendatask_ibfk_1] FOREIGN KEY ([ROID]) REFERENCES [dbo].[C2ORuntimeObjects] ([ROID]) ON DELETE CASCADE
GO
Uses