मैंने 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 प्रबंधन स्टूडियो का उपयोग किया था।
मैंने testtable_pricesmaller
निम्नानुसार एक संग्रहीत प्रक्रिया बनाई
use testbase
go
create procedure testtable_pricesmaller
@pricelimit money
as
select * from testtable where price = @pricelimit;
go
और Object Explorer
Microsoft SQL Server प्रबंधन स्टूडियो पर संग्रहीत कार्यविधियाँ देखने में सक्षम हैं । (यह निम्नलिखित वृक्ष संरचना में सूचीबद्ध है Object Explorer
)
Databases
+ testbase
+ Tables
+ dbo.testtable
+ Programmability
+ Stored Procedures
+ dbo.testtable_pricesmaller
जब मुझे निम्न त्रुटि मिलती है तो मुझे यह बहुत अजीब लगता है:
Could not find the stored procedure 'dbo.testtable_pricesmaller'.
जब मैं निम्नलिखित एसक्यूएल बयान निष्पादित करता हूं:
execute dbo.testtable_pricesmaller 50
यह क्या गायब हो सकता है?
USE
बयान जोड़ दिया लेकिन यह मुझे त्रुटि देता है।