Tables [dbo].[ARCTriggeredAlert]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)679
Created7:07:57 PM Thursday, December 17, 2009
Last Modified9:12:02 AM Wednesday, January 29, 2025
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Key IX_ARCTriggeredAlert_ARCAlertDescription: ARCAlertDescriptionARCAlertDescriptionvarchar(128)128
No
Indexes IX_ARCTriggeredAlert_CustomerNumber: CustomerNumberCustomerNumbervarchar(15)15
No
CustomerNamevarchar(65)65
No
LastAcivityDatedatetime8
Yes
Foreign Keys FK_ARCTriggeredAlert_AccountingCustomer: [dbo].[AccountingCustomer].AccountingCustomerFidIndexes IX_AccountingCustomerFid_AccountingCustomerFid: AccountingCustomerFidAccountingCustomerFidint4
Yes
Indexes Indexes
NameColumnsFill Factor
IX_AccountingCustomerFid_AccountingCustomerFidAccountingCustomerFid
Cluster Key IX_ARCTriggeredAlert_ARCAlertDescription: ARCAlertDescriptionIX_ARCTriggeredAlert_ARCAlertDescriptionARCAlertDescription80
IX_ARCTriggeredAlert_CustomerNumberCustomerNumber80
Foreign Keys Foreign Keys
NameColumns
FK_ARCTriggeredAlert_AccountingCustomerAccountingCustomerFid->[dbo].[AccountingCustomer].[AccountingCustomerId]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[ARCTriggeredAlert]
(
[ARCAlertDescription] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CustomerNumber] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[CustomerName] [varchar] (65) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[LastAcivityDate] [datetime] NULL,
[AccountingCustomerFid] [int] NULL
) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_AccountingCustomerFid_AccountingCustomerFid] ON [dbo].[ARCTriggeredAlert] ([AccountingCustomerFid]) ON [PRIMARY]
GO
CREATE CLUSTERED INDEX [IX_ARCTriggeredAlert_ARCAlertDescription] ON [dbo].[ARCTriggeredAlert] ([ARCAlertDescription]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_ARCTriggeredAlert_CustomerNumber] ON [dbo].[ARCTriggeredAlert] ([CustomerNumber]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ARCTriggeredAlert] ADD CONSTRAINT [FK_ARCTriggeredAlert_AccountingCustomer] FOREIGN KEY ([AccountingCustomerFid]) REFERENCES [dbo].[AccountingCustomer] ([AccountingCustomerId])
GO
GRANT SELECT ON  [dbo].[ARCTriggeredAlert] TO [MssExec]
GRANT INSERT ON  [dbo].[ARCTriggeredAlert] TO [MssExec]
GRANT DELETE ON  [dbo].[ARCTriggeredAlert] TO [MssExec]
GRANT UPDATE ON  [dbo].[ARCTriggeredAlert] TO [MssExec]
GO
Uses