Results 1 to 4 of 4

Thread: how to drop the identity on a colum from sql

  1. #1
    varadish Guest

    how to drop the identity on a colum from sql


    HI,
    how can i drop the identity on a column from the table.
    I have no access to the sql enterprise manager, i have to do it thru query analyser only.
    regards,
    varadish

  2. #2
    Guest

    how to drop the identity on a colum from sql (reply)


    Use the alter table statement

    ------------
    varadish at 2/14/01 9:33:38 AM


    HI,
    how can i drop the identity on a column from the table.
    I have no access to the sql enterprise manager, i have to do it thru query analyser only.
    regards,
    varadish

  3. #3
    varadish Guest

    how to drop the identity on a colum from sql (reply)

    hi,
    can u be more specific.
    i am trying with alter table but, couldn't find the correct syntax.
    thanx,
    varadish


    ------------
    at 2/14/01 9:35:53 AM


    Use the alter table statement

    ------------
    varadish at 2/14/01 9:33:38 AM


    HI,
    how can i drop the identity on a column from the table.
    I have no access to the sql enterprise manager, i have to do it thru query analyser only.
    regards,
    varadish

  4. #4
    Peter Main Guest

    how to drop the identity on a colum from sql (reply)

    ALTER TABLE table_name
    DROP COLUMN column_name


    ------------
    varadish at 2/14/01 9:40:21 AM

    hi,
    can u be more specific.
    i am trying with alter table but, couldn't find the correct syntax.
    thanx,
    varadish


    ------------
    at 2/14/01 9:35:53 AM


    Use the alter table statement

    ------------
    varadish at 2/14/01 9:33:38 AM


    HI,
    how can i drop the identity on a column from the table.
    I have no access to the sql enterprise manager, i have to do it thru query analyser only.
    regards,
    varadish

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •