Openquery for executing procedure from linked server with i/p and o/p parameters
up vote
0
down vote
favorite
I need to execute a procedure from the linked server using an openquery()
create procedure test(@ip varchar(10),@op varchar(10) output)
as
begin
if @ip='a'
begin
set @op='Success'
end
end
if suppose the procedure is like above and i need to return the o/p of @op variable by passing i/p as @ip variable
the SP is successfully executed with this code, but need to run using openquery().
declare @op varchar(10)
execute <servername>.<dbname>.dbo.test 'a',@op OUTPUT
select @op
how to pass o/p parameter to openquery
select * from openquery (<servername>,'execute <dbname>.dbo.<sp_name>')
//like this we can run a procedure who don't have any parameter
sql sql-server-2008 database-administration
add a comment |
up vote
0
down vote
favorite
I need to execute a procedure from the linked server using an openquery()
create procedure test(@ip varchar(10),@op varchar(10) output)
as
begin
if @ip='a'
begin
set @op='Success'
end
end
if suppose the procedure is like above and i need to return the o/p of @op variable by passing i/p as @ip variable
the SP is successfully executed with this code, but need to run using openquery().
declare @op varchar(10)
execute <servername>.<dbname>.dbo.test 'a',@op OUTPUT
select @op
how to pass o/p parameter to openquery
select * from openquery (<servername>,'execute <dbname>.dbo.<sp_name>')
//like this we can run a procedure who don't have any parameter
sql sql-server-2008 database-administration
You have to run the query usingsp_executesql
. The following question and answer solve your problem. Take a look at the topic stackoverflow.com/questions/28327092/…
– Mohammad Mohabbati
Nov 20 at 5:48
it not works for me
– Sarvesh Bandekar
Nov 20 at 8:34
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to execute a procedure from the linked server using an openquery()
create procedure test(@ip varchar(10),@op varchar(10) output)
as
begin
if @ip='a'
begin
set @op='Success'
end
end
if suppose the procedure is like above and i need to return the o/p of @op variable by passing i/p as @ip variable
the SP is successfully executed with this code, but need to run using openquery().
declare @op varchar(10)
execute <servername>.<dbname>.dbo.test 'a',@op OUTPUT
select @op
how to pass o/p parameter to openquery
select * from openquery (<servername>,'execute <dbname>.dbo.<sp_name>')
//like this we can run a procedure who don't have any parameter
sql sql-server-2008 database-administration
I need to execute a procedure from the linked server using an openquery()
create procedure test(@ip varchar(10),@op varchar(10) output)
as
begin
if @ip='a'
begin
set @op='Success'
end
end
if suppose the procedure is like above and i need to return the o/p of @op variable by passing i/p as @ip variable
the SP is successfully executed with this code, but need to run using openquery().
declare @op varchar(10)
execute <servername>.<dbname>.dbo.test 'a',@op OUTPUT
select @op
how to pass o/p parameter to openquery
select * from openquery (<servername>,'execute <dbname>.dbo.<sp_name>')
//like this we can run a procedure who don't have any parameter
sql sql-server-2008 database-administration
sql sql-server-2008 database-administration
edited Nov 20 at 8:33
asked Nov 20 at 5:24
Sarvesh Bandekar
768
768
You have to run the query usingsp_executesql
. The following question and answer solve your problem. Take a look at the topic stackoverflow.com/questions/28327092/…
– Mohammad Mohabbati
Nov 20 at 5:48
it not works for me
– Sarvesh Bandekar
Nov 20 at 8:34
add a comment |
You have to run the query usingsp_executesql
. The following question and answer solve your problem. Take a look at the topic stackoverflow.com/questions/28327092/…
– Mohammad Mohabbati
Nov 20 at 5:48
it not works for me
– Sarvesh Bandekar
Nov 20 at 8:34
You have to run the query using
sp_executesql
. The following question and answer solve your problem. Take a look at the topic stackoverflow.com/questions/28327092/…– Mohammad Mohabbati
Nov 20 at 5:48
You have to run the query using
sp_executesql
. The following question and answer solve your problem. Take a look at the topic stackoverflow.com/questions/28327092/…– Mohammad Mohabbati
Nov 20 at 5:48
it not works for me
– Sarvesh Bandekar
Nov 20 at 8:34
it not works for me
– Sarvesh Bandekar
Nov 20 at 8:34
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386706%2fopenquery-for-executing-procedure-from-linked-server-with-i-p-and-o-p-parameters%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You have to run the query using
sp_executesql
. The following question and answer solve your problem. Take a look at the topic stackoverflow.com/questions/28327092/…– Mohammad Mohabbati
Nov 20 at 5:48
it not works for me
– Sarvesh Bandekar
Nov 20 at 8:34