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 8966505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T17:02:18+00:00 2026-06-15T17:02:18+00:00

I wonder if ColdFusion can get the execution plan from Microsoft SQL Server? Or

  • 0

I wonder if ColdFusion can get the execution plan from Microsoft SQL Server?
Or even the Estimated execution plan.
It would be nice to get a query back of all the costs.

  • 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-15T17:02:18+00:00Added an answer on June 15, 2026 at 5:02 pm

    As mentioned in the link @James posted, there are several methods you can use to retrieve the information about the execution plan using a simple cfquery. A couple things to keep in mind:

    • SET SHOWPLAN options are usually applied to the session connection meaning they may persist beyond the current request if you are using connection pooling (which is undesirable). Be sure to always disable the setting at the end of the query – even if an error occurs.

    • Some SET SHOWPLAN options return multiple resultsets. CFQuery only returns a single resultset. So it may not capture all of the data returned.

    • Most of the system views and procedures (sys.dm_exec_sql_text, etcetera …) require elevated permissions. The datasource user must be granted special access to use these objects. So keep in mind the security implications.

    …To execute sys.dm_exec_query_plan, a user must be a member of the
    sysadmin fixed server role or have the VIEW SERVER STATE permission on
    the server.


    UPDATE:
    As @Travis mentioned in the comments, SET SHOWPLAN options must be run separately. So you need separate cfquery’s to toggle the setting ON|OFF before and after the main query. Here is a quick and dirty example. Note, the transaction is to ensure the same connection is used throughout. It may be overkill, but should not hurt anything.

    <cftransaction>
        <cftry>
            <!--- note, SHOWPLAN_ALL does NOT execute the SQL --->
            <cfquery name="toggleStats" datasource="someDSN">
                SET SHOWPLAN_ALL ON
            </cfquery>
            <cfquery name="getQueryStats" datasource="someDSN">
                --- some sql query here 
            </cfquery>
            <cfcatch>
                <!--- rethrow and rollback automatically --->
                <cfrethrow>
            </cfcatch>
            <cffinally>
                <!--- always disable the setting --->
                <cfquery name="toggleStats" datasource="someDSN">
                    SET SHOWPLAN_ALL OFF
                </cfquery>
            </cffinally>
        </cftry>
    </cftransaction>
    
    <cfif structKeyExists(variables, "getQueryStats")>
        <cfdump var="#getQueryStats#" label="Query Statistics">
    </cfif>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wonder about that can I write native SQL to add or delete operations
I wonder why the result of an SQL query in PHP PDO is called
I wonder if there is an equivalent to the MySQL-Query: SELECT COUNT(*) FROM users
wonder whether someone can help me with the following one... I have a struct
Getting thrown into ColdFusion dev at work and just starting out, I wonder if
wonder if I could get some advice on the best way to solve this
i wonder what is the best solution to send an email from my app.
I wonder if it's possible to create a stored procedure in MySQL5 via ColdFusion's
I'm familiar with this sort of syntax in SQL Server, to concatenate strings in
Wonder if anyone can help me, the map displays fine but the marker does.

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.