Vous pouvez créer une colonne calculée persistante, puis l'indexer, voir Creating Indexes on Computed Colonnes
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);
Vous pouvez créer une colonne calculée persistante, puis l'indexer, voir Creating Indexes on Computed Colonnes
alter table add newcolumn as cast(oldcolumn as varchar(24)) persisted;
create index table_newcolumn on table (newcolumn);