Tables [dbo].[action]
Properties
PropertyValue
Row Count0
Created11:07:58 AM Wednesday, March 07, 2007
Last Modified11:09:57 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKaction: actionidactionidint4
No
requesttimedatetime8
Yes
starttimedatetime8
Yes
finishtimedatetime8
Yes
actiongroupidint4
No
Foreign Keys $actio_r00003db000000000: [dbo].[actiontype].actiontypeactiontypeint4
Yes
actionstatusint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKaction: actionidXPKactionactionid
Yes
Foreign Keys Foreign Keys
NameColumns
$actio_r00003db000000000actiontype->[dbo].[actiontype].[actiontype]
SQL Script
CREATE TABLE [dbo].[action]
(
[actionid] [int] NOT NULL,
[requesttime] [datetime] NULL,
[starttime] [datetime] NULL,
[finishtime] [datetime] NULL,
[actiongroupid] [int] NOT NULL,
[actiontype] [int] NULL,
[actionstatus] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[action] ADD CONSTRAINT [XPKaction] PRIMARY KEY CLUSTERED ([actionid]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[action] ADD CONSTRAINT [$actio_r00003db000000000] FOREIGN KEY ([actiontype]) REFERENCES [dbo].[actiontype] ([actiontype])
GO
Uses
Used By