Viewing 7 posts - 1 through 7 (of 7 total)
If a procedure takes for example 3 parameters, then {CALL uspThreeParm (?,?,?)}
The procedure might look like this :
ALTER PROCEDURE uspThreeParm ( Parm1 int , Parm2 int , Parm3 datetime )
AS
....etc
WHERE...
September 6, 2010 at 5:22 am
LadyReader (10/9/2009)
October 9, 2009 at 9:17 am
And well played also. Not one to give up easily however! You can set refresh every x minutes in Data Range properties (agreed can't do seconds). If it...
October 9, 2009 at 9:08 am
Maybe better to do the work on the SQL side? If not maybe you could establish a zone on the sheet that combines the results of the ,Net automation...
October 9, 2009 at 8:28 am
Indeed, I guess I just prefer to keep VBA out of the picture for security compliance where possible. You can wrap the view with a patameterized proc and call...
October 9, 2009 at 8:24 am
Yes, but without parameters. A View works just like a table. so the SQL could be as simple as SELECT * FROM [ViewName] in the MS query, or simpler still...
October 9, 2009 at 7:32 am
By using {Call [Proc Name] (?)} you can still use the native parameter handling without VBA code.
October 9, 2009 at 5:38 am
Viewing 7 posts - 1 through 7 (of 7 total)