Search found 15603 matches

by ArndW
Thu Oct 26, 2006 12:55 am
Forum: General
Topic: Datastage Sequencer Properties Box not opening
Replies: 12
Views: 4002

Welcom to DataStage, Abhijeet1980.

Which client program are you referring to? The Director or Manager or Designer?
by ArndW
Thu Oct 26, 2006 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server and client sizing
Replies: 10
Views: 2790

The client configuration, at least the minimums, are outlined by IBM/Ascential. Sizing the server is a bit tougher. I can flow 1Tb through my notebook with no problems, except it will take quite a bit longer than on a top-end Solaris box. So part of the sizing questions must be times and not just da...
by ArndW
Wed Oct 25, 2006 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running long: Changed Seq file to Dataset
Replies: 18
Views: 4700

[quote="talk2shaanc"][quote="ray.wurlod"]...Secondly, we are here not to correct anybody's english but to correct Datastage understanding. If language used by somebody is abusive or insulting, then we should raise a concern...[quote] Correct, but there is no need to use SMS type ...
by ArndW
Wed Oct 25, 2006 10:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I count the total number of Jobs is a project?
Replies: 17
Views: 5945

Lotus26 wrote:...I tried in another way:
Command Issued: SH -c "dsjob -ljobs KMC | wc -l"
Message: SH:dsjob: not found 0
...


You need to make sure that the dsjob executable is in your path. You can change the call to "$DSHOME/bin/dsjob -ljobs KMC | wc -l"
by ArndW
Wed Oct 25, 2006 6:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error updating secondary indicies
Replies: 4
Views: 1016

Does the project directory get created in your case? It might be that your umask settings are such that you can create but then don't have sufficient permissions to modify. The secondary index files in the project directory start with I_
by ArndW
Wed Oct 25, 2006 4:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error on invalid number conversion.
Replies: 9
Views: 3171

Re: Error on invalid number conversion.

Kberisha, if the Oracle message is ORA-01722: invalid number then your Oracle DDL either contains a numeric field or your SQL does a numeric operation of some sort. Can you confirm the DDL by either re-importing the metadata for the table into DataStage or by using your favorite Oracle tool and gett...
by ArndW
Wed Oct 25, 2006 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Aborting due to Unsuccessful read attempt from a DB2 Tbl
Replies: 6
Views: 1100

Can you do a view-data from the designer and see your data?
by ArndW
Wed Oct 25, 2006 2:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSDB2 cannot change the demical data type to date format
Replies: 5
Views: 1934

DSDB2 has correctly converted the date into the DataStage server internal format, which is the number of days since 12/31/1967. You can use OCONV() with one of the date formats to make this display differently. This behaviour is one of the idiosyncracies of DataStage.
by ArndW
Wed Oct 25, 2006 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I call C/C++ API from within datastage server?
Replies: 1
Views: 663

Hello SPA_BI, DataStage contains a facility for binding in external objects such as c/c++ routines. This is documented for the UniVerse product in the UniVerse GCI Guide . I've done this in previous versions where DataStage and UniVerse were still the same product and it has always been a bit tricky...
by ArndW
Wed Oct 25, 2006 2:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem related to job abort and exit
Replies: 8
Views: 2062

Call DSLogWarn() will not abort your job, a call to DSLogFatal() will. In your job settings you might be defaulting to make the job abort after 50 warnings; once you reach that number your job will also abort. You can change this value, but it is much better to ensure that you don't generate those w...
by ArndW
Wed Oct 25, 2006 1:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Phantom error
Replies: 5
Views: 1622

The number "10188" has absolutely nothing to do with the row number. It is a process ID. This number will be re-assigned each run. There should be messages in the log file to go along with this error, or you can do a reset of your log and see if you get a message titled "from previous run" that migh...
by ArndW
Tue Oct 24, 2006 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETLStats question
Replies: 9
Views: 2547

These commands create files that would only be used within DataStage; so there is no potential for damage outside of DS and I can't see any potential within DS, either.
by ArndW
Tue Oct 24, 2006 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rule of Thumb on Runtime Column Propagation
Replies: 15
Views: 12037

I have to disagree with you on this one, Ray. There are some great things that PX allows you to do with RCP, particularly when developing "generic" jobs with logic & inputs/outputs which can be used with different file formats. But for the majority of job development work RCP causes issues and s...
by ArndW
Tue Oct 24, 2006 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rule of Thumb on Runtime Column Propagation
Replies: 15
Views: 12037

I think RCP is best defaulted to be turned OFF and only enabled when you explicitly need it. It is an incredibly useful and powerful feature with all the benefits and potential drawbacks associated with such functionality. If you explicitly work with each column in your schema then having RCP enable...