Breaking News

The Role of Claws in Diamond Rings: A Guide to Settings and Durability Lab Grown Diamonds Current News in the USA: What’s Happening Now? DWI Consequences Transforming Business Operations Through AI and Big Data Integration

I have an issue with Cyrillic characters. In my create procedure script, there is

select
    ...
    case 
        when aug.IsGroup = 0 then N'Нет' 
        else N'Да' 
    end as IsGroupFact
    ...

There are all variables which related to Cyrillic characters contains in nvarchar(max).

After adding .sql file of stored procedure into the project and pushing it to the main CI/CD branch, the characters becomes to the

select
    ...
    case 
        when aug.IsGroup = 0 
            then N'???' 
            else N'??' 
    end as IsGroupFact
    ...

What should I do?

Share Article: