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?
views:
294answers:
1
+1
A:
This seems very similar to the following question:
SQL Server Script to Update Database Columns from varchar to nvarchar...
Hope this helps!
mwigdahl
2009-03-10 12:49:57
Yep, that does it -- didn't find that in my initial search. Thanks!
DanM
2009-03-10 12:54:06