Tables [dbo].[GLSubAccounts]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)33
Created4:57:10 PM Thursday, September 7, 2006
Last Modified3:48:38 PM Thursday, December 6, 2018
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_GLSubAccounts: PriKeyPriKeyint4
No
1 - 1
SubAcctvarchar(50)50
Yes
GLNumbervarchar(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_GLSubAccounts: PriKeyPK_GLSubAccountsPriKey
Yes
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[GLSubAccounts]
(
[PriKey] [int] NOT NULL IDENTITY(1, 1),
[SubAcct] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[GLNumber] [varchar] (16) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[GLSubAccounts] ADD CONSTRAINT [PK_GLSubAccounts] PRIMARY KEY CLUSTERED  ([PriKey]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[GLSubAccounts] TO [MssExec]
GRANT INSERT ON  [dbo].[GLSubAccounts] TO [MssExec]
GRANT DELETE ON  [dbo].[GLSubAccounts] TO [MssExec]
GRANT UPDATE ON  [dbo].[GLSubAccounts] TO [MssExec]
GO
Uses