if exists (select * from dbo.sysobjects where id = object_id(N '[dbo].[usp_Getall] ') and OBJECTPROPERTY(id, N 'IsProcedure ') = 1)
drop procedure [dbo].[usp_Getall]
为什么要在子查询的系统表前面加上dbo呢?比如说:dbo.sysobjects 这是为什么啊!
------解决方案--------------------
表的所有者