Tables [dbo].[SakariOptions]
Properties
PropertyValue
Row Count (~)1
Created1:46:31 PM Wednesday, April 10, 2024
Last Modified1:46:31 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key PK_SakariOptions: SakariOptionsIDSakariOptionsIDint4
No
((1))
NewMessagePollingThrottleint4
No
CurrentConversationPollingThrottleint4
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_SakariOptions: SakariOptionsIDPK_SakariOptionsSakariOptionsID
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[SakariOptions]
(
[SakariOptionsID] [int] NOT NULL CONSTRAINT [DF_SakariOptions_SakariOptionsID] DEFAULT ((1)),
[NewMessagePollingThrottle] [int] NOT NULL,
[CurrentConversationPollingThrottle] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SakariOptions] ADD CONSTRAINT [PK_SakariOptions] PRIMARY KEY CLUSTERED  ([SakariOptionsID]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[SakariOptions] TO [MssExec]
GRANT INSERT ON  [dbo].[SakariOptions] TO [MssExec]
GRANT DELETE ON  [dbo].[SakariOptions] TO [MssExec]
GRANT UPDATE ON  [dbo].[SakariOptions] TO [MssExec]
GO
Uses