반응형
풀텍스트서치처럼 인덱스된 뷰가 필요할 때 다음과 같이 생성하자.
Create view dbo.ViewName
with schemabinding
as
select
column
from tableName
create unique clustered index idx_view_tableName
on dbo.ViewName(column)
반응형
풀텍스트서치처럼 인덱스된 뷰가 필요할 때 다음과 같이 생성하자.
Create view dbo.ViewName
with schemabinding
as
select
column
from tableName
create unique clustered index idx_view_tableName
on dbo.ViewName(column)