I am using Visual C # 2008 Express Edition Explorer / Database Explorer with SQL Server Express 2008.
I created a table and want to add an index. But the index will exceed 900 bytes. One way is to use included columns in the index. Unfortunately, the Enabled Columns property is disabled in the index designer, and I have not found a way to enable it.
Can someone tell me how to enable a property? Is there any other way to add included columns to the index using the constructor? Is this feature generally supported by SQL Server Express?
, , "" " ...". , , .
, , . , . CREATE INDEX MSDN, .
, , Express Express :
create table T1 ( ID int not null, Val1 varchar(10) not null ) go create unique nonclustered index IX_T1 on T1 (ID) INCLUDE (Val1) go
, , . , (, , GUI), , INCLUDE . , , , .
Source: https://habr.com/ru/post/1722942/More articles:Usage: order and: restrictions - Ruby On Rails - ruby-on-railsHow to parse mysql slow query query log into something useful? - mysqlHow to use Unix exec C (++) command correctly? - c ++PHP html email using html template - htmlLogin / password storage in Twitter client - securityGrails: GORM and BitSets? - grailsAssembly @@ label question - assemblyGCC: force a function call after each statement (for multi-threaded testing)? - cHow to add the whole rule to this makefile? - makefileWhat happened to this yacc file? - yaccAll Articles