How do I

  • Thread starter Thread starter Ather Ali Shaikh
  • Start date Start date
A

Ather Ali Shaikh

Hello All,
How do I change SqlServer Table's Field length from 50 to 250 through the
script . As I don't want to change the table through design view because my
table is on the web and design view takes 5 hrs to open a table.

Regards,

Ather Ali Shaikh
Software Engineer
eIntelligence (Pvt.) Limited.
Ph. (+92-21) 2434070, 2415929-30
email. (e-mail address removed)
web. www.eintelligencesoft.com
 
Hello All,
How do I change SqlServer Table's Field length from 50 to 250 through the
script . As I don't want to change the table through design view because my
table is on the web and design view takes 5 hrs to open a table.

ALTER TABLE table MODIFY column VARCHAR(250)
 
Back
Top