We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Msg 448, Level 16, State 2, Line 29 Invalid collation 'utf8_general_ci'.
find the equivalent and write a function that corrects each collation to the proper MSSQL standard
string ConvertCollate(string MySQLCollate) { switch(MySQLCollate) { case "utf8_general_ci": { return "whatever_it_is"; // SQL_Latin1_General_CP1_CI_AS is SQLServer default break; } // etc... } }
The text was updated successfully, but these errors were encountered:
acnicholls
No branches or pull requests
Msg 448, Level 16, State 2, Line 29
Invalid collation 'utf8_general_ci'.
find the equivalent and write a function that corrects each collation to the proper MSSQL standard
The text was updated successfully, but these errors were encountered: