Tables [dbo].[MobileUserLogPullHistory]
Properties
PropertyValue
HeapYes
Row Count (~)0
Created8:34:15 AM Friday, December 7, 2018
Last Modified8:34:30 AM Friday, December 7, 2018
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Primary Key PK_MobileUserLogPullHistory: MobileUserLogPullHistoryIDCheck Constraints CK_MobileUserLogPullHistoryID : ([MobileUserLogPullHistoryID]=(1))MobileUserLogPullHistoryIDint4
No
LastDatePulleddatetime8
No
NextDateCanPulldatetime8
No
Foreign Keys FK_MobileUserLogPullHistory_Sysuser: [dbo].[Sysuser].LastPulledByLastPulledByint4
No
RecordsPulledint4
No
TimesPulledint4
No
Indexes Indexes
NameColumnsUnique
Primary Key PK_MobileUserLogPullHistory: MobileUserLogPullHistoryIDPK_MobileUserLogPullHistoryMobileUserLogPullHistoryID
Yes
Check Constraints Check Constraints
NameOn ColumnConstraint
CK_MobileUserLogPullHistoryIDMobileUserLogPullHistoryID([MobileUserLogPullHistoryID]=(1))
Foreign Keys Foreign Keys
NameColumns
FK_MobileUserLogPullHistory_SysuserLastPulledBy->[dbo].[Sysuser].[SysUserID]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[MobileUserLogPullHistory]
(
[MobileUserLogPullHistoryID] [int] NOT NULL,
[LastDatePulled] [datetime] NOT NULL,
[NextDateCanPull] [datetime] NOT NULL,
[LastPulledBy] [int] NOT NULL,
[RecordsPulled] [int] NOT NULL,
[TimesPulled] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[MobileUserLogPullHistory] ADD CONSTRAINT [CK_MobileUserLogPullHistoryID] CHECK (([MobileUserLogPullHistoryID]=(1)))
GO
ALTER TABLE [dbo].[MobileUserLogPullHistory] ADD CONSTRAINT [PK_MobileUserLogPullHistory] PRIMARY KEY NONCLUSTERED  ([MobileUserLogPullHistoryID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[MobileUserLogPullHistory] ADD CONSTRAINT [FK_MobileUserLogPullHistory_Sysuser] FOREIGN KEY ([LastPulledBy]) REFERENCES [dbo].[Sysuser] ([SysUserID])
GO
GRANT SELECT ON  [dbo].[MobileUserLogPullHistory] TO [MssExec]
GRANT INSERT ON  [dbo].[MobileUserLogPullHistory] TO [MssExec]
GRANT DELETE ON  [dbo].[MobileUserLogPullHistory] TO [MssExec]
GRANT UPDATE ON  [dbo].[MobileUserLogPullHistory] TO [MssExec]
GO
Uses