I am trying to rename some tables programmatically with both greek and english characters (example :Δοκιμή_Tab) but the characters are shown as ??μ?φ_Tab? .etc
using (Command = new SqlCommand($"EXEC SP_RENAME '{OriginalNameTab}','{RenamedTab}';", ConnectionString))
Searching for a solution I came accross
Collate SQL_Latin1_General_CP1253_CI_AI
but if I try to use it withc EXEC it generates error.
Thanks in advance!