Including Multiple Statements

The TRY statement can include compound statements or procedure calls. For example, the following statement form is valid:

TRY
	<procedure call>
ELSE
	BEGIN
	 <multiple statements>
	END;