문제

Is there a way in SSMS to check if a column is indexed?

The reason I ask is because I am thinking of changing a varchar(500) to varchar(MAX) and have read that if the column is indexed then you cannot insert data greater than 900b. I want to make sure that this won't be a problem.

도움이 되었습니까?

해결책

USE database;
EXEC sp_helpindex 'yourTable';
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top