I have an SQL Server 2008 database, which contains about 40 tables. Most of them contain at least a couple of varchar
columns, and I want to convert every single one of those to nvarchar
(of the same length). Also want to convert a number of text
fields to nvarchar(MAX)
. Is there a simple, straightforward way to do this?
Asked
Active
Viewed 639 times
0

DanM
- 7,037
- 11
- 51
- 86
1 Answers
1
This seems very similar to the following question:
SQL Server Script to Update Database Columns from varchar to nvarchar...
Hope this helps!
-
Yep, that does it -- didn't find that in my initial search. Thanks! – DanM Mar 10 '09 at 12:54