Jmeter returns 'The statement did not return a result set' for a SQL Query
I have below SQL Query which is running fine in SQL Server but its showing error while executing in JMETER
declare @LogSpace table (DatabaseName varchar(255), [Log Size (MB)] float, [Log Space Used (%)] float, [Status] int) insert into @LogSpace execute('dbcc sqlperf(''LogSpace'')') select cast(round([Log Space Used (%)],2,0) as decimal(18,2)) from @LogSpace where DatabaseName = 'PUB_SUB_E2E';
Error: Response message:
com.microsoft.sqlserver.jdbc.SQLServerException: The statement did not
return a result set.
I am using the JDBC Request Query Type as 'SELECT Statement'
Any help would be appreciated.
jmeter
add a comment |
I have below SQL Query which is running fine in SQL Server but its showing error while executing in JMETER
declare @LogSpace table (DatabaseName varchar(255), [Log Size (MB)] float, [Log Space Used (%)] float, [Status] int) insert into @LogSpace execute('dbcc sqlperf(''LogSpace'')') select cast(round([Log Space Used (%)],2,0) as decimal(18,2)) from @LogSpace where DatabaseName = 'PUB_SUB_E2E';
Error: Response message:
com.microsoft.sqlserver.jdbc.SQLServerException: The statement did not
return a result set.
I am using the JDBC Request Query Type as 'SELECT Statement'
Any help would be appreciated.
jmeter
add a comment |
I have below SQL Query which is running fine in SQL Server but its showing error while executing in JMETER
declare @LogSpace table (DatabaseName varchar(255), [Log Size (MB)] float, [Log Space Used (%)] float, [Status] int) insert into @LogSpace execute('dbcc sqlperf(''LogSpace'')') select cast(round([Log Space Used (%)],2,0) as decimal(18,2)) from @LogSpace where DatabaseName = 'PUB_SUB_E2E';
Error: Response message:
com.microsoft.sqlserver.jdbc.SQLServerException: The statement did not
return a result set.
I am using the JDBC Request Query Type as 'SELECT Statement'
Any help would be appreciated.
jmeter
I have below SQL Query which is running fine in SQL Server but its showing error while executing in JMETER
declare @LogSpace table (DatabaseName varchar(255), [Log Size (MB)] float, [Log Space Used (%)] float, [Status] int) insert into @LogSpace execute('dbcc sqlperf(''LogSpace'')') select cast(round([Log Space Used (%)],2,0) as decimal(18,2)) from @LogSpace where DatabaseName = 'PUB_SUB_E2E';
Error: Response message:
com.microsoft.sqlserver.jdbc.SQLServerException: The statement did not
return a result set.
I am using the JDBC Request Query Type as 'SELECT Statement'
Any help would be appreciated.
jmeter
jmeter
asked Jan 20 at 0:05
Rakesh133Rakesh133
568
568
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
As per JMeter documentation:
JDBC Request
This sampler lets you send a JDBC Request (an SQL query) to a database.
In your case there are multiple queries of different nature which cannot be executed in a single shot. So the options are in:
- Split the statement into separate queries so only a single query would be executed by a JDBC Request sampler
- Convert your query into a Stored Procedure and execute it using
Callable Statement
- Use BEGIN and END statements to specify logical blocks
- Move to JSR223 Sampler and write your queries in Groovy language (however you will still have to split it as suggested in the point 1 and use execute() function for parts which don't produce results and executeQuery for the parts which do.
Yes that worked perfectly fine. I just created a Stored Procedure and executed it using the Callable Statement. Thanks Dmitri for the answer.
– Rakesh133
Jan 22 at 11:29
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f54272458%2fjmeter-returns-the-statement-did-not-return-a-result-set-for-a-sql-query%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As per JMeter documentation:
JDBC Request
This sampler lets you send a JDBC Request (an SQL query) to a database.
In your case there are multiple queries of different nature which cannot be executed in a single shot. So the options are in:
- Split the statement into separate queries so only a single query would be executed by a JDBC Request sampler
- Convert your query into a Stored Procedure and execute it using
Callable Statement
- Use BEGIN and END statements to specify logical blocks
- Move to JSR223 Sampler and write your queries in Groovy language (however you will still have to split it as suggested in the point 1 and use execute() function for parts which don't produce results and executeQuery for the parts which do.
Yes that worked perfectly fine. I just created a Stored Procedure and executed it using the Callable Statement. Thanks Dmitri for the answer.
– Rakesh133
Jan 22 at 11:29
add a comment |
As per JMeter documentation:
JDBC Request
This sampler lets you send a JDBC Request (an SQL query) to a database.
In your case there are multiple queries of different nature which cannot be executed in a single shot. So the options are in:
- Split the statement into separate queries so only a single query would be executed by a JDBC Request sampler
- Convert your query into a Stored Procedure and execute it using
Callable Statement
- Use BEGIN and END statements to specify logical blocks
- Move to JSR223 Sampler and write your queries in Groovy language (however you will still have to split it as suggested in the point 1 and use execute() function for parts which don't produce results and executeQuery for the parts which do.
Yes that worked perfectly fine. I just created a Stored Procedure and executed it using the Callable Statement. Thanks Dmitri for the answer.
– Rakesh133
Jan 22 at 11:29
add a comment |
As per JMeter documentation:
JDBC Request
This sampler lets you send a JDBC Request (an SQL query) to a database.
In your case there are multiple queries of different nature which cannot be executed in a single shot. So the options are in:
- Split the statement into separate queries so only a single query would be executed by a JDBC Request sampler
- Convert your query into a Stored Procedure and execute it using
Callable Statement
- Use BEGIN and END statements to specify logical blocks
- Move to JSR223 Sampler and write your queries in Groovy language (however you will still have to split it as suggested in the point 1 and use execute() function for parts which don't produce results and executeQuery for the parts which do.
As per JMeter documentation:
JDBC Request
This sampler lets you send a JDBC Request (an SQL query) to a database.
In your case there are multiple queries of different nature which cannot be executed in a single shot. So the options are in:
- Split the statement into separate queries so only a single query would be executed by a JDBC Request sampler
- Convert your query into a Stored Procedure and execute it using
Callable Statement
- Use BEGIN and END statements to specify logical blocks
- Move to JSR223 Sampler and write your queries in Groovy language (however you will still have to split it as suggested in the point 1 and use execute() function for parts which don't produce results and executeQuery for the parts which do.
answered Jan 21 at 3:00
Dmitri TDmitri T
71.1k33660
71.1k33660
Yes that worked perfectly fine. I just created a Stored Procedure and executed it using the Callable Statement. Thanks Dmitri for the answer.
– Rakesh133
Jan 22 at 11:29
add a comment |
Yes that worked perfectly fine. I just created a Stored Procedure and executed it using the Callable Statement. Thanks Dmitri for the answer.
– Rakesh133
Jan 22 at 11:29
Yes that worked perfectly fine. I just created a Stored Procedure and executed it using the Callable Statement. Thanks Dmitri for the answer.
– Rakesh133
Jan 22 at 11:29
Yes that worked perfectly fine. I just created a Stored Procedure and executed it using the Callable Statement. Thanks Dmitri for the answer.
– Rakesh133
Jan 22 at 11:29
add a comment |
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.
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%2f54272458%2fjmeter-returns-the-statement-did-not-return-a-result-set-for-a-sql-query%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