Hi,
I have the following SP.
create proc Sample
(
@sample varchar(10)
)
as
Begin
print @sample
End
When I execute
exec sample 'sampletest^'
It just shows 'sampletest' and the '^' symbol is missing. This happens with all the symbols. But if I pass the symbol alone it works fine.
Can somebody help with this?