Tables [dbo].[HARUSDCOMPUTERNAMES]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count1
Created5:00:14 AM Monday, March 02, 2009
Last Modified5:00:14 AM Monday, March 02, 2009
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes HARUSDCOMPUTERNAMES_NAME_IND: COMPUTERNAMECOMPUTERNAMEvarchar(40)40
No
COMPUTERUUIDchar(32)32
No
Indexes Indexes
NameColumns
HARUSDCOMPUTERNAMES_NAME_INDCOMPUTERNAME
Extended Properties
NameLevel 2 TypeLevel 2 NameValue
CaptionThe HARUSDCOMPUTERNAMES table maintains USD target computer names. It is updated periodically by an HServer based on an HBroker.arg parameter that specifies at what interval the information is to be resynchronized.
CaptionCOLUMNCOMPUTERNAMEThe computer name of the target.
CaptionCOLUMNCOMPUTERUUIDThe USD UUID of the target
SQL Script
CREATE TABLE [dbo].[HARUSDCOMPUTERNAMES]
(
[COMPUTERNAME] [varchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[COMPUTERUUID] [char] (32) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [HARUSDCOMPUTERNAMES_NAME_IND] ON [dbo].[HARUSDCOMPUTERNAMES] ([COMPUTERNAME]) ON [PRIMARY]
GO
EXEC sp_addextendedproperty N'Caption', N'The HARUSDCOMPUTERNAMES table maintains USD target computer names. It is updated periodically by an HServer based on an HBroker.arg parameter that specifies at what interval the information is to be resynchronized. ', 'SCHEMA', N'dbo', 'TABLE', N'HARUSDCOMPUTERNAMES', NULL, NULL
GO
EXEC sp_addextendedproperty N'Caption', N'The computer name of the target.', 'SCHEMA', N'dbo', 'TABLE', N'HARUSDCOMPUTERNAMES', 'COLUMN', N'COMPUTERNAME'
GO
EXEC sp_addextendedproperty N'Caption', N'The USD UUID of the target', 'SCHEMA', N'dbo', 'TABLE', N'HARUSDCOMPUTERNAMES', 'COLUMN', N'COMPUTERUUID'
GO
Uses