Search found 53125 matches

by ray.wurlod
Thu Feb 03, 2011 12:43 am
Forum: General
Topic: How to store Job start time,end time,job name in Oracle
Replies: 51
Views: 37920

Probably, but you're not allowed to download any external applications.

You will need DSGetJobInfo() function. The InfoType argument for end date and time is DSJ.JOBLASTTIMESTAMP
by ray.wurlod
Thu Feb 03, 2011 12:40 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: DSN's for Information Analyzer
Replies: 11
Views: 9139

Can you connect to these data sources using an ODBC Connector in a DataStage job?
by ray.wurlod
Thu Feb 03, 2011 12:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rows are not inserting in Oracle Table
Replies: 9
Views: 3805

Can they be written to a text file? If so, I suspect that the user does not have INSERT privilege to this particular Oracle table.
by ray.wurlod
Thu Feb 03, 2011 12:35 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Audit Web services Call
Replies: 3
Views: 3350

Your example does not match your problem. How are you doing the Lookup? Are you using a conditional lookup based on the parameter having the value 1? Please provide more detail of your design.
by ray.wurlod
Thu Feb 03, 2011 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while loading oracle table
Replies: 1
Views: 1238

First off, remember that counting is zero based, so field 2 is actually the third field. What is the value in the third field and what is its data type as recorded (a) in your metadata and (b) in the Data Set? Note that the error is from getInputFieldAsString() function.
by ray.wurlod
Thu Feb 03, 2011 12:30 am
Forum: General
Topic: How to store Job start time,end time,job name in Oracle
Replies: 51
Views: 37920

Download ETLstats (for free) from Kim Duke's website - it will do all that and more.
by ray.wurlod
Wed Feb 02, 2011 7:49 pm
Forum: General
Topic: Some users can't log in to DS7.5 after a restore
Replies: 4
Views: 2742

Just encountered this error on an 8.5 system. Turned out the underlying problem was the fact that the root file system had become full, because /tmp was mounted on / and developers had been using /tmp for all kinds of stuff, primarily the ODBC trace file (and didn't bother to switch tracing off). Al...
by ray.wurlod
Wed Feb 02, 2011 7:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype issue:
Replies: 7
Views: 2225

There's no such thing as Integer(15) - the largest possible signed int32 only has 10 digits. Hence the recommendation to try BigInt. What happens in binary when you try to store too large an integer is that you get "arithmetic overflow". The most significant bit tends to be set, which sign...
by ray.wurlod
Wed Feb 02, 2011 7:08 pm
Forum: General
Topic: Sequence Fail but all jobs inside Success in rerun ?
Replies: 4
Views: 2106

Did you use -mode reset in your dsjob command? Was it the sequence that you ran that reset, or a subsequence run from it (and, if the latter, was the job activity than ran the subsequence set to "reset if required, then run")?
by ray.wurlod
Wed Feb 02, 2011 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash partition key's datatype changes partition behavior?
Replies: 4
Views: 2046

Code: Select all

Value    Datatype           Internal Storage
  1        string[1]        00110001
  1        int32            00000000000000000000000000000001
  1        decimal[1,0]     00000001
"1" is Char(49)
by ray.wurlod
Wed Feb 02, 2011 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype issue:
Replies: 7
Views: 2225

What is "union" in your job design?
by ray.wurlod
Wed Feb 02, 2011 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Append string using modifier
Replies: 2
Views: 1318

There's no such thing as a "modifier" stage. A Modify stage can not do concatenation. End of story. You will need to use a Transformer stage (or an External Filter stage, which will be much slower, or a Build stage, for which you must write your own code).
by ray.wurlod
Wed Feb 02, 2011 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is use of '&SAVEDLISTS&' dir in Project folder
Replies: 2
Views: 1221

&SAVEDLISTS& should not ordinarily be used by DataStage processes, unless you are interactively connected to the server (for example in telnet) and quit from that account (project). Even then, the behaviour of saving your command stack in &SAVEDLISTS& can be disabled via the VOC entr...
by ray.wurlod
Wed Feb 02, 2011 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extract a subset of data from reference link
Replies: 2
Views: 1441

You can do "sparse lookups" using DB2 and Oracle only in parallel jobs. However, these are manifestly inefficient so that they are not, in general, recommended unless the reference data set is huge.