How to ALTER the Table Value Parameter

前端 未结 4 1396
南方客
南方客 2020-12-08 10:59

I am not getting option like \'ALTER TO\' when am right clicking on TVP

4条回答
  •  暖寄归人
    2020-12-08 11:08

    Can't do it. You must drop/recreate. If you have dependencies on the TVP, you must:

    1. create new TVP under new name
    2. alter dependencies to use (1)
    3. drop old TVP
    4. recreate (1) under original name
    5. alter dependencies to use (4)
    6. drop (1)

提交回复
热议问题