In MS SQL Server Manager Studio 2008 Express, the Included Columns field is always grayed out in the Indexes / Keys window in the database diagram design.
For reference, this should be available until I create a clustered index.
Also, if I run a query to create an index (which works fine), the created query does not display the table in which it was added.
I do not see anywhere where MS says that this feature is not available in the Express version.
Any ideas?
Additional data:
This is the script that creates the table:
CREATE UNIQUE INDEX IX_SocialTypes_Cover ON ClientSocialTypes(ClientID, SocialTypeID, [Source]) INCLUDE (URLID)
Here is the gen script table (no index):
CREATE TABLE [dbo].[ClientSocialTypes]( [SocialTypeID] [int] IDENTITY(1,1) NOT NULL, [ClientID] [int] NOT NULL, [SocialTypeClassID] [tinyint] NOT NULL, [Source] [nvarchar](50) NOT NULL, [TagCount] [int] NOT NULL, [URLID] [int] NULL, CONSTRAINT [PK_ClientSources] PRIMARY KEY CLUSTERED ( [SocialTypeID] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO ALTER TABLE [dbo].[ClientSocialTypes] WITH CHECK ADD CONSTRAINT [FK_ClientSocialTypes_Clients] FOREIGN KEY([ClientID]) REFERENCES [dbo].[Clients] ([ClientID]) ON UPDATE CASCADE ON DELETE CASCADE GO ALTER TABLE [dbo].[ClientSocialTypes] CHECK CONSTRAINT [FK_ClientSocialTypes_Clients] GO ALTER TABLE [dbo].[ClientSocialTypes] WITH CHECK ADD CONSTRAINT [FK_ClientSocialTypes_SocialTypeClasses] FOREIGN KEY([SocialTypeClassID]) REFERENCES [dbo].[SocialTypeClasses] ([SocialTypeClassID]) GO ALTER TABLE [dbo].[ClientSocialTypes] CHECK CONSTRAINT [FK_ClientSocialTypes_SocialTypeClasses] GO ALTER TABLE [dbo].[ClientSocialTypes] ADD CONSTRAINT [DF_ClientSocialTypes_SocialTypeClassID] DEFAULT ((1)) FOR [SocialTypeClassID] GO ALTER TABLE [dbo].[ClientSocialTypes] ADD CONSTRAINT [DF_ClientSocialTypes_TagCount] DEFAULT ((0)) FOR [TagCount] GO ALTER TABLE [dbo].[ClientSocialTypes] ADD CONSTRAINT [DF_ClientSocialTypes_HasTrackedURL] DEFAULT ((0)) FOR [URLID] GO
IamIC source share