Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
dasu
Posting Yak Master
104 Posts |
Posted - 2004-08-18 : 10:06:45
|
| Now my doubt is how to call a stored procedure in the activex scripthere important is i have one out put parameter for above stored procedure.i have to catch that value in activex script and i want to print that.tell me the solution please...active xscript is completely vb code |
|
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2004-08-18 : 10:13:44
|
| http://www.nigelrivett.net/DTSExecuteStoredProcedure.html==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
samsekar
Constraint Violating Yak Guru
437 Posts |
|
|
dasu
Posting Yak Master
104 Posts |
Posted - 2004-08-18 : 10:24:23
|
| ok ur suggested solutions are very high range.i think u knew dts packages in enterprise mangaer in that iam tryingto create one package inthat i have activex scrit like this Function Main() Main = DTSTaskExecResult_Success MsgBox DTSGlobalVariables("shubhanshTest01").ValueEnd Function and execute sql task is like thisDeclare @status Varchar(30)EXEC pr_cbs_pull_request_details 't_cbs_req', 1,1, @status outputSELECT @status AS statusValueso now i want getto output parameter value into active x scriptconection and every thing okjust i want to catch output parameter return by stored procedurei think this is enough info |
 |
|
|
|
|
|