A column insert or update conflicts with a rule imposed by a previous CREATE RULE statement

前端 未结 1 766
慢半拍i
慢半拍i 2021-01-21 06:39

I\'m working on a online game. I got some problems with inserting new data to table. I\'m getting

2010-4-8 2:14, 37000, 513, [Microsoft][ODBC SQL Serve

相关标签:
1条回答
  • 2021-01-21 07:00

    You'd want to:

    a) Understand why someone bound the rule in the first place. If you don't know why the rule is there, I'd suggest a bit of investigation before proceeding. Are you going to break some other area of the application by putting in inappropriate characters?

    b) Use the stored procedure sp_unbindrule (2008 link, but applies to 2000 equally well), to unbind the rule from the column.

    0 讨论(0)
提交回复
热议问题