I have a sp where inside exists a call a Sp which it receives like argument a variable of type ntext well for my surprise i cant declare variable of type ntext like local
example
create proc sp_my @a
as
begin
exec SP_ntext @ntext
end
is impossible to pass a ntext? only can i pass a nvarchar???