Tables [dbo].[XmlSystem]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)15
Created4:57:10 PM Thursday, September 7, 2006
Last Modified1:56:27 PM Wednesday, April 10, 2024
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentityDescription
Cluster Primary Key PK_XmlSystem: XmlSystemIDIndexes IX_Unique_Interface_SystemName_Identifier: XmlInterfaceFID\ExternalSystem\XmlSystemIDXmlSystemIDint4
No
1 - 1The primary key.
Foreign Keys FK_XmlSystem_XmlInterface: [dbo].[XmlInterface].XmlInterfaceFIDIndexes IX_Unique_Interface_SystemName_Identifier: XmlInterfaceFID\ExternalSystem\XmlSystemIDXmlInterfaceFIDint4
No
Foreign key to an xml interface.
InternalSystemvarchar(50)50
Yes
The name of the system used by Mover''s Suite.
Indexes IX_Unique_Interface_SystemName_Identifier: XmlInterfaceFID\ExternalSystem\XmlSystemIDExternalSystemvarchar(50)50
Yes
The name of the system used by the external application.
Indexes Indexes
NameColumnsUniqueFill Factor
Cluster Primary Key PK_XmlSystem: XmlSystemIDPK_XmlSystemXmlSystemID
Yes
80
IX_Unique_Interface_SystemName_IdentifierXmlInterfaceFID, ExternalSystem, XmlSystemID
Yes
80
Foreign Keys Foreign Keys
NameColumns
FK_XmlSystem_XmlInterfaceXmlInterfaceFID->[dbo].[XmlInterface].[XmlInterfaceID]
Permissions
TypeActionOwning Principal
GrantDeleteMssExec
GrantInsertMssExec
GrantSelectMssExec
GrantUpdateMssExec
SQL Script
CREATE TABLE [dbo].[XmlSystem]
(
[XmlSystemID] [int] NOT NULL IDENTITY(1, 1),
[XmlInterfaceFID] [int] NOT NULL,
[InternalSystem] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ExternalSystem] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XmlSystem] ADD CONSTRAINT [PK_XmlSystem] PRIMARY KEY CLUSTERED  ([XmlSystemID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XmlSystem] ADD CONSTRAINT [IX_Unique_Interface_SystemName_Identifier] UNIQUE NONCLUSTERED  ([XmlInterfaceFID], [ExternalSystem], [XmlSystemID]) WITH (FILLFACTOR=80) ON [PRIMARY]
GO
ALTER TABLE [dbo].[XmlSystem] ADD CONSTRAINT [FK_XmlSystem_XmlInterface] FOREIGN KEY ([XmlInterfaceFID]) REFERENCES [dbo].[XmlInterface] ([XmlInterfaceID])
GO
GRANT SELECT ON  [dbo].[XmlSystem] TO [MssExec]
GRANT INSERT ON  [dbo].[XmlSystem] TO [MssExec]
GRANT DELETE ON  [dbo].[XmlSystem] TO [MssExec]
GRANT UPDATE ON  [dbo].[XmlSystem] TO [MssExec]
GO
EXEC sp_addextendedproperty N'MS_Description', N'The name of the system used by the external application.', 'SCHEMA', N'dbo', 'TABLE', N'XmlSystem', 'COLUMN', N'ExternalSystem'
GO
EXEC sp_addextendedproperty N'MS_Description', N'The name of the system used by Mover''s Suite.', 'SCHEMA', N'dbo', 'TABLE', N'XmlSystem', 'COLUMN', N'InternalSystem'
GO
EXEC sp_addextendedproperty N'MS_Description', N'Foreign key to an xml interface.', 'SCHEMA', N'dbo', 'TABLE', N'XmlSystem', 'COLUMN', N'XmlInterfaceFID'
GO
EXEC sp_addextendedproperty N'MS_Description', N'The primary key.', 'SCHEMA', N'dbo', 'TABLE', N'XmlSystem', 'COLUMN', N'XmlSystemID'
GO
Uses
Used By