Project
>
DEVSQL2016EA172
>
User databases
>
CoSample_17_2
>
Tables
> dbo.GLAccounts2
[dbo].[GLAccounts2]
Properties
Property
Value
Row Count (~)
0
Created
12:57:21 AM Thursday, March 21, 2019
Last Modified
1:12:04 AM Thursday, March 21, 2019
Columns
Key
Name
Data Type
Max Length (Bytes)
Allow Nulls
AccountID
int
4
False
timestamp
timestamp
8
True
Indexes
Key
Name
Key Columns
Unique
Fill Factor
PK_GLAccounts2
AccountID
True
80
SQL Script
CREATE
TABLE
[dbo]
.
[GLAccounts2]
(
[AccountID]
[int]
NOT
NULL
,
[timestamp]
[timestamp]
NULL
)
ON
[PRIMARY]
GO
ALTER
TABLE
[dbo]
.
[GLAccounts2]
ADD
CONSTRAINT
[PK_GLAccounts2]
PRIMARY
KEY
CLUSTERED
(
[AccountID]
)
ON
[PRIMARY]
GO
Used By
[dbo].[ICExpenseCodes]
[dbo].[ICInventoryCodes]
[dbo].[ICJournalDetails]
[dbo].[ICMfgMaterials]
[dbo].[ICMfgs]
[dbo].[ICSalesCodes]
[dbo].[ICServiceCodes]