Tables [dbo].[TemporaryVendor]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count (~)182
Created6:18:11 PM Tuesday, February 27, 2007
Last Modified9:55:39 AM Sunday, February 16, 2025
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Primary Key PK_TemporaryVendorID: TemporaryVendorIDTemporaryVendorIDint4
No
1 - 1
VendorNumbervarchar(15)15
No
VendorNamevarchar(65)65
Yes
Address1[dbo].[Address]256
Yes
Address2[dbo].[Address]256
Yes
Address3[dbo].[Address]256
Yes
City[dbo].[AddressCity]26
Yes
State[dbo].[AddressState]2
Yes
PostalCode[dbo].[AddressPostalCode]10
Yes
Foreign Keys FK_TemporaryVendor_AccountingVendor: [dbo].[AccountingVendor].AccountingVendorFidAccountingVendorFidint4
Yes
Indexes Indexes
NameColumnsUniqueFill Factor
Primary Key PK_TemporaryVendorID: TemporaryVendorIDPK_TemporaryVendorIDTemporaryVendorID
Yes
80
Foreign Keys Foreign Keys
NameColumns
FK_TemporaryVendor_AccountingVendorAccountingVendorFid->[dbo].[AccountingVendor].[AccountingVendorId]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[TemporaryVendor]
(
[TemporaryVendorID] [int] NOT NULL IDENTITY(1, 1),
[VendorNumber] [varchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[VendorName] [varchar] (65) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[Address1] [dbo].[Address] NULL,
[Address2] [dbo].[Address] NULL,
[Address3] [dbo].[Address] NULL,
[City] [dbo].[AddressCity] NULL,
[State] [dbo].[AddressState] NULL,
[PostalCode] [dbo].[AddressPostalCode] NULL,
[AccountingVendorFid] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[TemporaryVendor] ADD CONSTRAINT [PK_TemporaryVendorID] PRIMARY KEY NONCLUSTERED  ([TemporaryVendorID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[TemporaryVendor] ADD CONSTRAINT [FK_TemporaryVendor_AccountingVendor] FOREIGN KEY ([AccountingVendorFid]) REFERENCES [dbo].[AccountingVendor] ([AccountingVendorId])
GO
GRANT SELECT ON  [dbo].[TemporaryVendor] TO [MssExec]
GRANT INSERT ON  [dbo].[TemporaryVendor] TO [MssExec]
GRANT DELETE ON  [dbo].[TemporaryVendor] TO [MssExec]
GRANT UPDATE ON  [dbo].[TemporaryVendor] TO [MssExec]
GO
Uses
Used By