给定以下存储过程定义
create procedure myproc
as
select *
from sometablethatdoesnotexist
select somecolumnthatdoesnotexist
from sometablethatdoesexist
如果在创建存储过程时这些对象不存在,是否可以将 sql-server(或 localdb)配置为无法创建存储过程?(列或表)
给定以下存储过程定义
create procedure myproc
as
select *
from sometablethatdoesnotexist
select somecolumnthatdoesnotexist
from sometablethatdoesexist
如果在创建存储过程时这些对象不存在,是否可以将 sql-server(或 localdb)配置为无法创建存储过程?(列或表)