本文介绍了如何在sql server 2008 R2中取消绑定规则的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

sp_unbindrule rule1





如何在SQL Server 2008 R2中运行它?



How to Run this in SQL Server 2008 R2?

推荐答案

create rule dbo.rule1
as
@x not in('vashi')

sp_bindrule 'rule1','dbo.t3.A'
sp_unbindrule 't3.A'


这篇关于如何在sql server 2008 R2中取消绑定规则的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 08:04