Search found 15603 matches

by ArndW
Tue Oct 25, 2005 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Replace the "bad" data with the '*" c
Replies: 5
Views: 1113

What happened? The function as you posted will strip out all non-displayable characters and replace them (as well as the period) with stars.
by ArndW
Tue Oct 25, 2005 3:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Long compile times under USS
Replies: 7
Views: 2398

I wish I did have suggestions. I think the compiler is licensed by number of concurrent users, and processes will wait for a free slot when that number is reached; so perhaps part of the long compile times might result from this bottleneck. But this is conjecture on my part and might be completely w...
by ArndW
Tue Oct 25, 2005 3:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unlock routine
Replies: 4
Views: 875

Hexa, you are right, in the director you can't see the routine. But that is not what I suggested. In the Director you have an option to cleanup resources option that will let you list the locks, identify the process in question and then logout the job. Again, there are a lot of threads in this forum...
by ArndW
Tue Oct 25, 2005 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unlock routine
Replies: 4
Views: 875

There are a number of threads in this forum regarding the unlocking of jobs from the Director and/or Administrator, the method is the same as that for unlocking a routine.
by ArndW
Tue Oct 25, 2005 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Long compile times under USS
Replies: 7
Views: 2398

RobJ,

have you noticed a difference between jobs with and without transform stages? Oftentimes a job (even a very complex one) with no transform will compile quickly whilst a simple job with a transform might take a long time. If this is the case, it might have to do with the c++ compiler.
by ArndW
Tue Oct 25, 2005 3:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage and Progress Database
Replies: 4
Views: 1165

I think the ODBC drivers are for reading external sources into Progress, I don't know if there is a "push" type load method apart from creating sequential files in a format easily read into Progress using a program. I'd love to know if the ODBC is bi-directional for this, though.
by ArndW
Tue Oct 25, 2005 2:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unlock routine
Replies: 4
Views: 875

The best thing is to have your deadlock daemon running; it will take care of things like this on a regular basis so you don't have to issue DataStage commands that might cause other problems if not done correctly. A routine is locked when edited in the Manager, if your session is terminated unexpect...
by ArndW
Tue Oct 25, 2005 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset retrieval
Replies: 9
Views: 2556

If your source is a sequential file of variable length records then you will not experience any gains by first writing it to a dataset and then processing it. The PX speed performance comes from it's ability to do things in parallel - but a sequential file read cannot be processed in parallel (unles...
by ArndW
Tue Oct 25, 2005 1:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset retrieval
Replies: 9
Views: 2556

Jamshid,

you cannot read a flat file using the dataset stage. Read it using the sequential file stage and write it to a dataset stage.
by ArndW
Tue Oct 25, 2005 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid date value in Teradata
Replies: 9
Views: 10131

Hello Prakashs, The DataStage internal Julian date format is the number of days since Dec 31 1967, with dates before that being negative. So the results given by OCONV are dcomputed correctly for DS. In your case the Julian number is quite different, but if day 1721424 represents 0001-01-01 then log...
by ArndW
Tue Oct 25, 2005 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time and TimeStamp with microseconds
Replies: 20
Views: 10190

It would seem that this is a bug in DS, Ascential is working on a fix and/or workaround. I'll post whatever comes through from support here.
by ArndW
Tue Oct 25, 2005 12:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset retrieval
Replies: 9
Views: 2556

Hello jamshid, datasets in PX can be called by any filename and can be located anywhere on the system. They only contain schema and other information pointing to that actual data files and thus are small. I don't quite understand your problem or question, especially where you are getting an orchestr...
by ArndW
Mon Oct 24, 2005 3:45 pm
Forum: Site/Forum
Topic: datasatgehunter
Replies: 2
Views: 2351

datastagehunter,

it is usually more useful to tell the truth about one's own location as well. What sort of documents are you looking for? Documentation on the product? DataStage v.7 downloads and license keys?
by ArndW
Mon Oct 24, 2005 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Binary Data
Replies: 2
Views: 703

mITTA,

Dealing with binary data as well as nondisplayable characters in DataStage is easy. It is just a matter of what you want to do with those characters.
by ArndW
Mon Oct 24, 2005 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error writing to pipe
Replies: 14
Views: 4984

The Load functionality will buffer data - can you watch your temporary and scratch areas to see if they fill up during the big run?