I have created a sql server script of a large database table (more than 2 GB). while running the script I got this error: "Unclosed quotation mark after the character string." While trying to debug the issue I have found that there is a strange "NUL" value between text. This "NUL" is only visible in Notepad++.
Anyone knows how to make script of database table without this "NUL". {If I remove this manually script works fine. But I am not able to remove it manually as some tables are more than 10 GB}
Thanks

NULliteral: stackoverflow.com/questions/2828333/…. Check for one column with itSELECT col_name, LEN(col_name) , DATA_LENGTH(col_name) FROM table WHERE id = ?NULto empty