Search found 6 matches

by madelong
Fri Jun 19, 2009 9:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: EXPORT command on client
Replies: 3
Views: 1781

any details? (what didn't work - error message(s) & command line scheduled in AT) Yes : the command was : C:\Program Files\Ascential\DataStage7.5.2 dsexport.exe /H=parh01-serv05 /U=dsuser /P=dsuser /O=0 IM_Devpt D:/Data_IM/D/DSBackup/Lastsave.dsx I dont have any error message from WinAT, or i d...
by madelong
Fri Jun 19, 2009 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: EXPORT command on client
Replies: 3
Views: 1781

EXPORT command on client

Hello,

I would like to use the dsexport.exe command (or dscmdexport...).

I know i have to run it from the Client, i understand what it means but i don't know how to do it.

I tryed to run it scheduled with WinAT, but it does not work.

Any ideas ?
by madelong
Thu Feb 05, 2009 3:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I put arguments in a dynamic array?
Replies: 8
Views: 3397

I know that DSJ.PARAMLIST returns names... That is my main problem, I need a list of Argument's Values...

So my problem is not resolved yet...

Thank you again.
by madelong
Wed Feb 04, 2009 11:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I put arguments in a dynamic array?
Replies: 8
Views: 3397

Thank you for your time and your answers, i realy apriciate it... But When i do : PARAMS(1) = arg1 I get in PARAMS(1) the value of the parameter Arg1. (wich i want) But if i Do ArgString = DSGetJobInfo(DSJ.ME, DSJ.PARAMLIST) for i=1 To NbArgument ; PARAMS(i) = Field(ArgString,",",i,1) Next...
by madelong
Wed Feb 04, 2009 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I put arguments in a dynamic array?
Replies: 8
Views: 3397

Thanks !

Do you have an example of the code ?
I don't see how to list my arguments one by one...
cauz now i do :
DIM ParamValue(NbParameters)
ParamValue(1) = arg1
ParamValue(2) = arg2
ParamValue(3) = arg3
...



{sorry for beeing a newbee....}
by madelong
Wed Jan 14, 2009 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CREATING PARAMETERS
Replies: 2
Views: 1346

CREATING PARAMETERS

Hello world, I would like to create sevral JobParameters from a Job Control to an other Job. Is it possible to create them with a DS Basic Function ? DSSetParam(hJob2, "GPAR_DIRDS", GPAR_DIRDS) If GPAR_DIRDS does not exist in hJob2, will the function create it or will it fail ? Thank you all