show/hide this revision's text 2 added 82 characters in body

You can wrap it in a try catch... more info in books online

For example:

CREATE TABLE Test_ShortString(

ShortString varchar(10) NULL

)

...

begin Try

insert into 
Test_ShortString (ShortString) 
values ('123456789012345')

End Try

Begin catch

--Select Error_Number() as ErrorNumber

end catch

show/hide this revision's text 1

You can wrap it in a try catch... more info in books online

For example:

CREATE TABLE Test_ShortString( ShortString varchar(10) NULL )

...

begin Try insert into Test_ShortString (ShortString) values ('123456789012345') End Try

Begin catch --Select Error_Number() as ErrorNumber end catch