Search found 53125 matches
- Tue Nov 03, 2009 2:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DB2 API vs Dataset
- Replies: 1
- Views: 852
- Tue Nov 03, 2009 2:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: String truncate while calling stored procedure from DS
- Replies: 11
- Views: 4682
- Tue Nov 03, 2009 2:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to create control files for oracle bulk loader
- Replies: 6
- Views: 1565
- Tue Nov 03, 2009 2:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: data stage questions
- Replies: 3
- Views: 945
Both UniVerse and Unidata are independent database products. Between 2000 and 2009 they were owned and marketed by IBM; in October 2009 they were sold to Rocket Sotftware. Both were created in the mid-1980s to try to take some of the market share of Prime INFORMATION. The original vendor of UniVerse...
- Tue Nov 03, 2009 1:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Status in Server transformer
- Replies: 11
- Views: 3936
- Tue Nov 03, 2009 1:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: upgrading DS to a 64 bit server
- Replies: 3
- Views: 1321
Not because of that. But the new server may well have faster CPUs, which will make a difference. DataStage 7.5 is a 32-bit application, so does not take any advantage of a 64-bit architecture. You must make sure that 32-bit versions of commands and libraries are found by DataStage before the 64-bit ...
- Tue Nov 03, 2009 1:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retrieving characters from the source file name
- Replies: 1
- Views: 792
- Tue Nov 03, 2009 1:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting Sequencer name from the job name
- Replies: 16
- Views: 5933
Something like the following code would appear to meet the requirement. FUNCTION GetController(JobName) $IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOBCONTROL.H $ENDIF If UnAssigned(JobName) Or (Len(JobName) = 0) Then Ans = @NULL End Else hJob = DSAttachJob(JobName, DSJ.ERRNONE) Controller = DSGetJobInf...
- Tue Nov 03, 2009 1:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting Sequencer name from the job name
- Replies: 16
- Views: 5933
But how u call this function in server transformer.... Your original question was how to do it in a routine. People have been answering that question. I doubt that U (one of our posters) is interested in calling this function at all, but I could be wrong. The second person personal pronoun in Engli...
- Tue Nov 03, 2009 1:40 pm
- Forum: General
- Topic: List of inbuilt routines
- Replies: 2
- Views: 1269
Welcome aboard. Never reinvent the wheel if you don't have to. There are already written routines here.
- Tue Nov 03, 2009 1:38 pm
- Forum: General
- Topic: Information Analyzer certification
- Replies: 2
- Views: 1694
- Tue Nov 03, 2009 2:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Using XML stage in parallel execution mode
- Replies: 7
- Views: 2987
- Tue Nov 03, 2009 2:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: -2 DSJE_BADSTATE
- Replies: 1
- Views: 2494
You can begin by effecting a Search of DSXchange. This error code has been discussed many times before. You could even read the documentation associated with the definition of the constant in the JOBCONTROL.H header file in DSINCLUDE. Bad state means that the job (instance) was not in a runnable sta...
- Tue Nov 03, 2009 2:53 am
- Forum: General
- Topic: OR operation in Look Up Stage
- Replies: 2
- Views: 940
- Tue Nov 03, 2009 1:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence related query
- Replies: 3
- Views: 1137
OK triggers do not have any effect. When automatic handling is enabled one of the following occurs: if there is an explicit Failure trigger this handles the failure if there is no explicit Failure trigger but there is an Exception handler, then the Exception handler will fire if there is neither an ...