How to Add Extra Column In Existing Table?

Can Anyone Help Me Out From This Problem

  Discussion posts and replies are publicly visible

Parents Reply
  • It might be even easier to just add the new field to your CDT in the designer without having to download and update the XSD. Although it used to be common to need XSD, now most properties can be defined right in the CDT designer. Then when you save your CDT, it will give you the DDL script with the alter table statement.

    Keep in mind that you must update in both places: update the CDT and the database table. The order you update doesn't matter, but you must verify that it the data store publishes after you make both changes. (Note: if you change the CDT first, then you can publish the data store and it will automatically make the change in the database).

Children