Tables [dbo].[usm_das_analyzer_attributes]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count0
Created11:43:57 AM Sunday, May 13, 2007
Last Modified1:17:01 PM Tuesday, March 30, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKusm_das_analyzer_attributes: analyzer_attribute_oidanalyzer_attribute_oidint4
No
Foreign Keys XFK01usm_das_analyzer_attributes: [dbo].[usm_das_analyzers].analyzer_oidanalyzer_oidint4
No
attribute_namevarchar(50)50
Yes
attribute_valuevarchar(255)255
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKusm_das_analyzer_attributes: analyzer_attribute_oidXPKusm_das_analyzer_attributesanalyzer_attribute_oid
Yes
Foreign Keys Foreign Keys
NameColumns
XFK01usm_das_analyzer_attributesanalyzer_oid->[dbo].[usm_das_analyzers].[analyzer_oid]
Permissions
TypeActionOwning Principal
GrantDeleteusmgroup
GrantInsertusmgroup
GrantSelectusmgroup
GrantUpdateusmgroup
SQL Script
CREATE TABLE [dbo].[usm_das_analyzer_attributes]
(
[analyzer_attribute_oid] [int] NOT NULL,
[analyzer_oid] [int] NOT NULL,
[attribute_name] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[attribute_value] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_das_analyzer_attributes] ADD CONSTRAINT [XPKusm_das_analyzer_attributes] PRIMARY KEY CLUSTERED ([analyzer_attribute_oid]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_das_analyzer_attributes] ADD CONSTRAINT [XFK01usm_das_analyzer_attributes] FOREIGN KEY ([analyzer_oid]) REFERENCES [dbo].[usm_das_analyzers] ([analyzer_oid])
GO
GRANT SELECT ON  [dbo].[usm_das_analyzer_attributes] TO [usmgroup]
GRANT INSERT ON  [dbo].[usm_das_analyzer_attributes] TO [usmgroup]
GRANT DELETE ON  [dbo].[usm_das_analyzer_attributes] TO [usmgroup]
GRANT UPDATE ON  [dbo].[usm_das_analyzer_attributes] TO [usmgroup]
GO
Uses