devxlogo

Invalid Object in SQL 7.0

Invalid Object in SQL 7.0

Question:
I write a stored procedure and it works fine. But when I do write a “select statement” as below:

"select * from sp_name"

I get an error message:

"Server: Msg 208, Level 16, State 3, Line 1Invalid object name 'sp_name'.

Why does this happen?

Answer:
I think the problem may be in the way the stored procedure is called. A SELECT statement can’t be issued against a stored procedure. The SELECT statement should be inside the procedure, and you can call it from Query Analyzer like this:

EXEC sp_name

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist