Search found 53125 matches

by ray.wurlod
Sat May 22, 2004 7:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning DSD_Sendevent in DS Director
Replies: 1
Views: 733

I think you need DataStage 7.x to talk to MetaStage 7.x. If you post this query on Ascential Developer's Network someone from Ascential may be able to verify this answer. Another thought. Is MetaStage installed on the same machine as your DataStage client? If not, there may be a piece of MetaStage t...
by ray.wurlod
Sat May 22, 2004 1:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: when merge stage can be used exactly?
Replies: 3
Views: 987

Your job number is 2154. The process id that incurred the error is 1648: "Phantom" is DataStage terminology for "background process". DSP.Open is the generic name of the "open" function used with passive plug-in stage types. "Exception" is another word for "error" in this case, and the kind of excep...
by ray.wurlod
Fri May 21, 2004 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting a date to Unix epoch timestamp
Replies: 4
Views: 6502

Look in the SDK routines, Date category. There are a couple there for handling 1970-based dates. You can adapt these to your needs.
by ray.wurlod
Fri May 21, 2004 5:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: macros
Replies: 2
Views: 831

A function is an intrinsic part of the programming language. A macro is another way to invoke a function, with some or all of the function arguments filled in. DataStage macros are defined in the JOBCONTROL.H file (in the DSINCLUDE directory in the project). For example, the macro DSJobStatus is rep...
by ray.wurlod
Fri May 21, 2004 5:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS Access Source/Target
Replies: 4
Views: 1052

You state that DataStage is on UNIX.
The first thing you'll need is a UNIX-based ODBC driver for MS Access.
UNIX-based ODBC drivers are configured by editing an odbc.ini file.
For DataStage, you also need an entry for the DSN in the uvodbc.config file.
by ray.wurlod
Fri May 21, 2004 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Last Record is Missing
Replies: 4
Views: 1637

Chances are that the final line in the source file is missing its end-of-line character, and your DataStage job specifies UNIX style end-of-line markers.
by ray.wurlod
Fri May 21, 2004 5:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OS Trouble shooting during 10 jobs running in pararell
Replies: 7
Views: 2009

Read the message again. You're trying to get the machine to do more than it can successfully accomplish. 8GB memory is rather low for a SunFire system with 6CPUs. DataStage has a hard-wired time limit on the DSRunJob function. If it is unable to start the job within 60 seconds, the message you recei...
by ray.wurlod
Fri May 21, 2004 5:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning : "Buffer overflow"
Replies: 1
Views: 928

It means that you've delivered more data than the database server can cope with in one chunk. This could be too many characters in a Char(n) field, too many bytes in a row, too many rows per transmitted chunk. In the latter two cases you may find it easier to tune the buffer sizes in the Informix da...
by ray.wurlod
Fri May 21, 2004 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Result of a division
Replies: 4
Views: 1747

Is the scale for A and B set to 0? This might (I'm guessing) affect the scale of the result of the division. If so, this could be a bug.
by ray.wurlod
Fri May 21, 2004 1:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric Delimiters
Replies: 3
Views: 1421

Numeric Delimiters

Preamble 1 lakh is 100000 With delimiters this is represented as 1,00,000 1 crore is 10000000 With delimiters this is represented as 1,00,00,000 My question is how larger numbers are represented. Do the groups of two digits (operating right to left) continue, or is the crore pattern repeated. That i...
by ray.wurlod
Thu May 20, 2004 11:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage basic looping csv file
Replies: 9
Views: 6762

The following function tracks the changes by maintaining two lists (dynamic arrays). For each row processed, it returns the original OLD and the new NEW as a dynamic array. FUNCTION MostRecent(Old, New) COMMON /Lists/OldList, NewList, Init If Init = 0 Then OldList = "" NewList = &q...
by ray.wurlod
Thu May 20, 2004 11:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can any one tell me how to view Datastage Generated Code ?
Replies: 1
Views: 601

No. The only server job generated code that it is possible to view with text viewers is that generated by compiling Transformer stages. This has been discussed many times on this Forum; search for RT_BP. Code generated by compiling a job sequence is viewable on the Job Properties page. Other than th...
by ray.wurlod
Thu May 20, 2004 9:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORABULK and Varchar fields?
Replies: 2
Views: 934

Although it's not documented directly, the ctl file that ORABULK generates allocates a 256 byte buffer for each column, by virtue of the fact that it doesn't specify the buffer size. It's been that way since version 1.0 (indeed, the ORABULK stage is still at version 1.0 if you check out its stage pr...
by ray.wurlod
Thu May 20, 2004 9:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Database options: Oracle vs. SQL Server
Replies: 6
Views: 1322

The "database type" property for this stage type (the "Dynamic Relational Stage") can also be set to ODBC. This gives access to Red Brick Warehouse. I note from the original post that you're currently on version 6.x, so you won't have it yet. If you think this is the way you want to head, bypass 7.0...
by ray.wurlod
Thu May 20, 2004 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: # of uvsh.exe s running
Replies: 5
Views: 2207

It's not abnormal.

For example, a job with multiple active stages may start a separate process for each active stage, as well as the controlling process that is actually running the job.

Connected clients may also temporarily use uvsh processes, for example when compiling.