I am trying to call this command from an access data base through RUNAPP macro commande:
"C:\program files\microsoft sql server\80\Tools \Binn\dtsrun.ex e" /S "(local)" /N "mypackage" /E /A mydate:8 = "Forms!Opensitu ation!Combo4"
mypackage: is the name of the dts package in sqlserver
mydate is the name of the global variable used in sql server
8 is the string type
Forms!Opensitua tion!Combo4: is the combo box variable in the access form Opensituation where a string is captured
Instead of getting what is in the combo box Combo4, (that is a string). in the sql server global variable mydate,
i am getting the following string "Forms!Opensitu ation!Combo4"
SO how could i pass a variable parameter from access to dts package in sqlserver?
"C:\program files\microsoft sql server\80\Tools \Binn\dtsrun.ex e" /S "(local)" /N "mypackage" /E /A mydate:8 = "Forms!Opensitu ation!Combo4"
mypackage: is the name of the dts package in sqlserver
mydate is the name of the global variable used in sql server
8 is the string type
Forms!Opensitua tion!Combo4: is the combo box variable in the access form Opensituation where a string is captured
Instead of getting what is in the combo box Combo4, (that is a string). in the sql server global variable mydate,
i am getting the following string "Forms!Opensitu ation!Combo4"
SO how could i pass a variable parameter from access to dts package in sqlserver?
Comment