Possible Duplicate:
overstating field size in database design
I have a "description" column in one of my tables which as of now I dont know the maximum size of. But I am assuming it should not be greater than 1000 characters.
Question: If I make it nvarchar(4000) [just to be safe] will it have any adverse impact on performance ?
Thanks.