Export stored procedure result set to Excel in SSMS

后端 未结 3 974
故里飘歌
故里飘歌 2020-12-02 00:53

i\'m using SSMS and attempting to export the results of a stored procedure to a new excel file. The SP accepts an int parameter but I cannot find a way to call it in the que

3条回答
  •  误落风尘
    2020-12-02 01:30

    I suggest you split your stored procedure into two procedures that each respectively return a separate table and have those called to different worksheets.

    There are a variety of ways to return data to Excel using SQL

    Here is a favourite of mine from code by Joshua (you don't have to use the parameters):

    1. Select the Data tab on Excel's Ribbon, then within the Get Exernal Data group choose the "From other Sources" drop-down. Then Choose "From Microsoft Query"

    2. Within "Choose Data Source" pop-up box, select your SQL Server, then hit OK.

    3. Close the "Add Tables" popup if necessary.

    4. Click on the "SQL" button, or choose View > SQL to open the SQL pop-up editor.

    5. Enter the following syntax: {CALL myDatabaseName.dbo.myStoredProc (?, ?, ?)}

      For example: {CALL northwind.dbo.spGetMaxCost (?, ?, ?)}

      Be sure to include the squiggly braces around the call statement. Each Question Mark (?) indicates a parameter. If your stored procedure calls for more or less parameters, add or subtract question marks as needed.

    6. Hit the OK button. A question box should pop-up saying "SQL Query can't be represented graphically, continue anyway?", just hit the OK button.

    7. You will now be asked for sample parameters for each question mark you included above. Enter valid parameter values for the data you are querying.

    8. Once you have entered the last parameter, you should get some results back in Microsoft Query. If they look good, close Microsoft Query.

    9. You should now be looking at an "Import Data" pop-up. Click the Properties button, which will bring up the "Connection Properties" pop-up.

    10. Select the Definition tab, then select the Parameters button. You should now see a "Parameters" pop-up, where you can connect the parameter to a specific cell.

    11. Select Get the value from the following cell, and then connect to an appropriate cell in Excel that will hold your parameter, by clicking the little box with the arrow.

    12. If you want the data to refresh every time you change the cell containing the parameter, check the box stating "Refresh automatically when cell value changes"

    13. Continue as above for the other parameters. When finished, click OK, to return to the Connection Properties pop-up. Click OK to return to the Import Data pop-up, and click OK again.

    14. You should now have some data straight from your stored procedure.

    You will end up with connection information similar to:

    Connection info

    And, if you use parameters from sheet then, for my example,

提交回复
热议问题