CREATE INDEX in SQL Server 2008 not result in "visible index" -


i using sql server 2008 express. in db in question, there 1 schema: dbo.

if run following script:

create unique index ix_clientsocialtypes_cover on clientsocialtypes(clientid, socialtypeclassid, [source]) include (urlid); 

... executes ok, cannot see index when go db diagram , view indexes table. further, "includes" field grayed out, when specify non-clustered index (hence use of script).

any ideas?

where trying see index? did refresh database diagram after creating index?

update: ok, seems in diagram editor, cannot define included columns (always grayed out - in full ssms, on sql server 2008 r2 dev edition).

but in table designer (right-click on (your table name) > indexes > new index in object explorer),

alt text

it's totally visible , usable....

alt text


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -