Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 How can i change the datatype from varchar to nvar

Author  Topic 

Nazri
Starting Member

8 Posts

Posted - 2007-08-01 : 07:02:01
HI,
How can i change the datatype from varchar to nvarchra. i have more than 1000 tables in a Database and also there is dependency in the tables.

NeilG
Aged Yak Warrior

530 Posts

Posted - 2007-08-01 : 08:32:34
Do you just mean something simple like this
alter table [tablename] alter column [colname] nvarchar(1000)

or are you trying to create something that will find the datatype and change it from there
Go to Top of Page
   

- Advertisement -