W testtable
bazie danych utworzyłem tabelę testbase
o następującej strukturze:
product_no (int, not null)
product_name (varchar(30), not null)
price (money, null)
expire_date (date, null)
expire_time (time(7), null)
którego użyłem Microsoft SQL Server 2008 Management Studio.
Utworzyłem procedurę składowaną testtable_pricesmaller
w następujący sposób
use testbase
go
create procedure testtable_pricesmaller
@pricelimit money
as
select * from testtable where price = @pricelimit;
go
i mogą przeglądać Procedury przechowywane Object Explorer
w Microsoft SQL Server Management Studio. (Jest wymienione w poniższej strukturze drzewa Object Explorer
)
Databases
+ testbase
+ Tables
+ dbo.testtable
+ Programmability
+ Stored Procedures
+ dbo.testtable_pricesmaller
To bardzo dziwne, gdy pojawia się następujący błąd:
Could not find the stored procedure 'dbo.testtable_pricesmaller'.
kiedy wykonuję następującą instrukcję SQL:
execute dbo.testtable_pricesmaller 50
Czego mogło brakować?
USE
instrukcję, ale daje mi błąd.