Change datatype varchar to nvarchar in existing SQL Server 2005 database. Any issues?

前端 未结 5 704
梦如初夏
梦如初夏 2021-01-03 18:14

I need to change column datatypes in a database table from varchar to nvarchar in order to support Chinese characters (currently, the varchar

5条回答
  •  悲&欢浪女
    2021-01-03 18:57

    Check all the dependencies for this table as stored procs, functions, temp tables based on this table and variables used for inserts/updates etc may also need to be updated to NVARCHAR. Also check if the table is in replication! That could cause you a new set of problems!

提交回复
热议问题