INF: Executing SQL Server Stored Procedures from ExcelID: Q67903
|
The QE.XLM macro that comes with Q+E allows you to execute simple
SELECT statements and extract data from SQL Server into Excel
worksheets. However, it does not include options for executing SQL
Server stored procedures. You can implement this type of functionality
by creating a custom Excel macro. A macro of this type initiates a
dynamic data exchange (DDE) channel with Q+E, sends a command, and
processes any results that might be returned.
The method for initiating a channel with Q+E and sending commands is
described in the "Using Dynamic Data Exchange (DDE)" section of the
"Microsoft Excel Q+E User's Guide." In addition, an in-depth
discussion of Excel macros can be found in the "Microsoft Excel
Functions and Macros" guide.
An example of an Excel macro that executes the sp_helpdb stored
procedure is listed below:
chan=INITIATE("QE","SYSTEM")
=EXECUTE(chan,"[OPEN('master..sp_helpdb')]")
NR=REQUEST(chan,"NUMROWS")
NC=REQUEST(chan,"NUMCOLS")
=EXECUTE(chan,"[FETCH('EXCEL','SHEET1','R1C1:R"&NR&"C"&NC&"','ALL')]")
=EXECUTE(chan,"[CLOSE()]")
=TERMINATE(chan)
=RETURN()
Additional query words: Q+E
Keywords : kbinterop SSrvServer
Version : 4.2
Platform : OS/2
Issue type :
Last Reviewed: March 10, 1999