There was a production change that changed a field from char(2) to char(3). I didn't realize that this field is being used by views. When the view was called by a stored proc, an error came up saying that "The (maximum) expected data length is 2, while the returned data length is 3.". So since views are static and need to be recompiled is this a disadvantage of using a view? Could an alternative be to use functions?
Thanks for the help!
Thanks for the help!