This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Increase Length of a Custom Column

Hi All ,

How can I increase the length of a Custom Column of PersonwantsOrg/ ShoppingCartItem table ? Is there any Stored Procedure for this Which can be used  ( Identity Manager Version - 7.0.1 )

Thanks in Advance.

Parents
  • Hi,

    If this is indeed a 'custom' column ..... then a migration will leave it as is ..... so you can adjust it simply by using a standard SQL 'ALTER' statement. e.g.

    ALTER TABLE [table_name] ALTER COLUMN [column_name] [DataType]([Length])

    HTH, Barry.

Reply
  • Hi,

    If this is indeed a 'custom' column ..... then a migration will leave it as is ..... so you can adjust it simply by using a standard SQL 'ALTER' statement. e.g.

    ALTER TABLE [table_name] ALTER COLUMN [column_name] [DataType]([Length])

    HTH, Barry.

Children
No Data