testtable
데이터베이스 내부 에 테이블을 만들었습니다testbase
다음과 같은 구조를 가진 .
product_no (int, not null)
product_name (varchar(30), not null)
price (money, null)
expire_date (date, null)
expire_time (time(7), null)
Microsoft SQL Server 2008 Management Studio를 사용했습니다.
testtable_pricesmaller
다음과 같이 저장 프로 시저 를 만들었습니다.
use testbase
go
create procedure testtable_pricesmaller
@pricelimit money
as
select * from testtable where price = @pricelimit;
go
Object Explorer
Microsoft SQL Server Management Studio 에서 저장 프로 시저를 볼 수 있습니다 . (의 다음 트리 구조에 나열되어 있습니다 Object Explorer
)
Databases
+ testbase
+ Tables
+ dbo.testtable
+ Programmability
+ Stored Procedures
+ dbo.testtable_pricesmaller
다음과 같은 오류가 발생하면 매우 이상합니다.
Could not find the stored procedure 'dbo.testtable_pricesmaller'.
다음 SQL 문을 실행할 때
execute dbo.testtable_pricesmaller 50
무엇을 놓칠 수 있습니까?
USE
진술을 추가 했지만 오류가 발생합니다.