When I try to include two With statements in my stored procedure, I get a syntax error:
Alter Procedure [dbo].[RemoteLink]
@LinkedServerName Varchar(50)
With Encryption
With Execute As 'RemoteLink'
As
If I use either one, no error. How do you stack "With" statements?