Aşağıdaki yapıya sahip testtable
veritabanında bir tablo oluşturdum testbase
:
product_no (int, not null)
product_name (varchar(30), not null)
price (money, null)
expire_date (date, null)
expire_time (time(7), null)
ki Microsoft SQL Server 2008 Management Studio'yu kullandım.
testtable_pricesmaller
Aşağıdaki gibi saklı bir prosedür oluşturdum
use testbase
go
create procedure testtable_pricesmaller
@pricelimit money
as
select * from testtable where price = @pricelimit;
go
Object Explorer
Microsoft SQL Server Management Studio'daki Kayıtlı İşlemleri görüntüleyebilir . (Aşağıdaki ağaç yapısında listelenmiştir Object Explorer
)
Databases
+ testbase
+ Tables
+ dbo.testtable
+ Programmability
+ Stored Procedures
+ dbo.testtable_pricesmaller
Aşağıdaki hatayı aldığımda çok garip buluyorum:
Could not find the stored procedure 'dbo.testtable_pricesmaller'.
aşağıdaki SQL deyimini çalıştırdığımda:
execute dbo.testtable_pricesmaller 50
Ne eksik olabilir?
USE
ifadeyi ekledim ama bu bana hatayı verdi.