SQL Unicode characters
Here is small and simple query to check if string contains Unicode characters:
DECLARE @Unicode NVARCHAR(4000), @Regural VARCHAR(4000);
SELECT @Unicode = 'add your string here'
SET @Regural = @Unicode;
IF @Unicode = @Regural
PRINT 'Regural';
ELSE
PRINT 'Unicode';







There are no comments for this entry.
[Add Comment]