Search found 79 matches

by luca
Sat May 03, 2003 4:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI8 Stage error on Date/Timestamp
Replies: 5
Views: 2127

Yes, I let DS generate the query. The query was generated without a to_char function.
Moretheless, I manage to convert the date using to char, but then it cannot be stored in a timestamp field (or u get the error: ORA-01722: invalid number).
Then bug or not bug ?
by luca
Sat May 03, 2003 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: select & update the same table in the same job
Replies: 4
Views: 2780

select & update the same table in the same job

Hi ! The job we want to do is the following: 1/ ORAOCI8 to select all the rows from a table, 2/ transformer and calculation of columns of this table, 3/ ORAOCI8 to update the same table. What do we have to take care about for this kind of job ? Will the query be a "select for update" ? Mor...
by luca
Fri May 02, 2003 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI8 Stage error on Date/Timestamp
Replies: 5
Views: 2127

ORAOCI8 Stage error on Date/Timestamp

With DS 5.2.1, in a ORAOCI8 Stage, I have the following error message when I try to do a "view data": DSBrowser..Repository: At row 2, link "DSLink1", while processing column "START_DATE" Attempt to convert String value "16-FEB-03" to Timestamp type unsuccessf...
by luca
Mon Apr 28, 2003 2:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting sysdate into Timestamp field
Replies: 7
Views: 2702

One " overly:
Oconv(@DATE,"D-MDY[4,2,2]"):" ":Oconv(@TIME,"MTS")
will work.
by luca
Mon Apr 28, 2003 2:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting sysdate into Timestamp field
Replies: 7
Views: 2702

Oconv(@DATE,"D-MDY[4,2,2]")":" ":Oconv(@TIME,"MTS")
for getting the system date/time when the job started (constant for one run).
Date() Time() function to get the date/time at the moment of the call of the function (changing for the same execution).
by luca
Sat Apr 26, 2003 12:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job control loosing control of running child job
Replies: 6
Views: 1985

Job control loosing control of running child job

Hi all, I have a problem with some of the jobs controls that launches child jobs. The Error Message is: J0CmdSrcCla..JobControl (fatal error from UtilityAbortToLog): USER INFO: CMD/SRC/CLA : Source Clarify Extraction Failed JOB=> J0CmdSrcCla STAGE=> JobControl LINK=> -8 The jobs controls are jobs se...
by luca
Fri Mar 14, 2003 11:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instances
Replies: 1
Views: 679

Multiple Instances

Hi! Is it possible to determine, apart from by generating an error trying to attach a job whose name includes an invocation ID, whether a job has its "Allow Multiple Instances" property set? Preferably without having to peer under the covers of the DataStage repository. I want to avoid err...
by luca
Thu Mar 06, 2003 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file name with system date and time
Replies: 10
Views: 2202

By the way (for ranjan), to insert a parameter value in the name of a file, the syntax is:
FILE_#parameterName#
by luca
Thu Mar 06, 2003 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file name with system date and time
Replies: 10
Views: 2202

Thank you for your anwers, to be more precise:
I want to do this in a job server (with a flow design)
and don't want to use a parameter (as this is not a parameter)
...
any other ideas?
by luca
Thu Mar 06, 2003 2:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file name with system date and time
Replies: 10
Views: 2202

sequential file name with system date and time

How can I insert the system variable @date and @time in the name of a file ? Hope it is possible.
Thanks.
by luca
Wed Mar 05, 2003 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hats off to Ray Wurlod
Replies: 16
Views: 4603

For the help you provide us in the past and for the future,
From Paris and Mumbai, THANK YOU RAY !
by luca
Fri Feb 28, 2003 5:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to make a job sequence abort
Replies: 2
Views: 873

how to make a job sequence abort

I want to make a job sequence abort when one of its activity aborts or finishs with warning.
how can i do this ?
thanks
by luca
Fri Feb 28, 2003 12:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSetParam
Replies: 4
Views: 1484

"I suspect that the variable is not being correctly assigned in the first place."

That's true, I was keeping the Quote characters from the file.
Thanks Ray !
by luca
Thu Feb 27, 2003 6:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSetParam
Replies: 4
Views: 1484

DSSetParam

Hi ! I have code created by a job sequencer which I have copy in an other job control to add some code for retrieving parameters for the jobs runned by this job control. I changed my code for DSSetParam like this: err$code = DSSetParam(h$5, ParamName, ParamValue) (where ParamName is the variable whi...
by luca
Thu Feb 27, 2003 3:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: user status area
Replies: 5
Views: 1205

Well I don't know if the problem is when storing the value in the user status area (in the after job subroutine) or in retrieving theis value in the job controler. The point is that from the job controler, after the line: Result = DSGetJobInfo (h$4, DSJ.USERSTATUS) I print the value of Result in the...