Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9022603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T05:33:13+00:00 2026-06-16T05:33:13+00:00

i am creating a stored procedure in sql server 2008 such as this —

  • 0

i am creating a stored procedure in sql server 2008 such as this

-- the code
create procedure proce
@database varchar(50)
as
begin
select * from [@database].[dbo].[sometable]
end

the procedure is compiled

but when i execute the procedure using

-- here i execute it
execute proce 'somedatabase'

it throws an error

-- me gets error :(
Invalid object name '@database.dbo.sometable'

where am i going wrong???????

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T05:33:15+00:00Added an answer on June 16, 2026 at 5:33 am

    You cannot directly parameterized the tableName. The only way you can do that is to make a dynamic SQL Statement.

    eg,

    CREATE PROCEDURE proce @database VARCHAR(50)
    AS
    BEGIN
        DECLARE @SQLQuery AS NVARCHAR(500)
        SET @SQLQuery = 'SELECT * FROM [' + @database + '].[dbo].[sometable]'
        EXECUTE(@SQLQuery)
    END
    GO
    
    • Building Dynamic SQL In a Stored Procedure
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am creating a stored procedure in Sql Server 2008 database. I want to
I am creating a simple stored procedure in VS 2010/SQL Server 2008 as follows:
After creating stored procedure in SQL Server why to replace Create with Alter ?
Im creating a Stored Procedure on an 2008 SQL server. I cant find how
Okay so I'm writing a SQL Server 2008 Stored Procedure (maintenance script). In doing
Using SQL Server 2008 I created a Stored Procedure called MyStoreProc and it runs
I am creating a stored procedure in SQL Server via SSMS. I have written
I am using SQL Server 2005. I want to create a stored procedure that
I'm having trouble creating this stored procedure on IBM Informix Dynamic Server Version 10.00.FC9
In a stored procedure, when is #Temptable created in SQL Server 2005? When creating

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.