Search found 15603 matches

by ArndW
Thu Jun 11, 2009 1:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change Oracle port number.
Replies: 3
Views: 1439

I think that you would be best served to reinstall. A reinstallation would take just a couple of hours versus a lengthier period of discovery and any unknown error(s) in the future will attributed to the port change and you'll end up reinstalling anyway.
by ArndW
Thu Jun 11, 2009 1:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem for sorting based on two columns
Replies: 3
Views: 1732

Option (2) looks like the correct way to do it. What happens if you use just one sort key (try both columns separately); does it work without an error or do you also get an error?
by ArndW
Thu Jun 11, 2009 1:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to run parallel jobs
Replies: 8
Views: 4191

Hari - please use real English in your posts, we prefer not to speak SMS. You need a different version and that can only be procured from IBM or official provider. A straight download, even if available, won't have the requisite license key. There might be warez sites out there with this version, bu...
by ArndW
Thu Jun 11, 2009 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared container Issue
Replies: 5
Views: 2137

Sporadic problems suck, but once you discover the "rule" the behaviour always seem simple. When you look at the row counts after execution, you will have one stage where n rows go in and 0 rows go out. Which stage is that? One possible reason that comes to mind is doing something bad with ...
by ArndW
Wed Jun 10, 2009 5:12 am
Forum: General
Topic: Wrong character for questionmark "?"
Replies: 4
Views: 1735

What are your Oracle NLS settings and have you specified that correctly in the Oracle stage?
by ArndW
Wed Jun 10, 2009 3:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to delete or rename a job
Replies: 8
Views: 2853

The lesson should be "do not remove any files from a shell". Otherwise you might decide that you don't need that file called "VOC" or that all those RT_CONFIGnnnn are useless and then you will really become unhappy. :shock:
by ArndW
Wed Jun 10, 2009 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TRANSFORM A VIEW
Replies: 8
Views: 1913

That is not what was asked, you can read a view from one database and write to a table or updateable view in another database.
by ArndW
Tue Jun 09, 2009 11:59 pm
Forum: General
Topic: How to use dscmdexport/dsexport to export a single job?
Replies: 3
Views: 1872

The "dsexport.exe" command is found on your client, not on the server.
by ArndW
Tue Jun 09, 2009 11:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing a charecter from the first position of the value
Replies: 3
Views: 1416

Code: Select all

RIGHT(In.Column,LEN(In.Column)-1)
will remove the first character.

Code: Select all

TRIM(In.Column,'"')
or the convert command as listed above will remove double-quotes from the string.
by ArndW
Tue Jun 09, 2009 9:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Truncate data in Oracle
Replies: 12
Views: 3954

Do you have an NLS installation and how are your Oracle columns defined - by character or by byte?
by ArndW
Tue Jun 09, 2009 8:08 am
Forum: General
Topic: Data Stage Automation Tool
Replies: 2
Views: 2059

Wonderful idea and good luck on the project!
by ArndW
Tue Jun 09, 2009 8:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Truncate data in Oracle
Replies: 12
Views: 3954

If you already have a transform stage, just use "In.DESC_TEXT[1,255]" or "LEFT(In.DESC_TEXT,255)". If you have a modify stage you'll need different syntax, which I can't recall off the top of my head.

Or use the ORACLE "substr" DML command.
by ArndW
Tue Jun 09, 2009 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decoding the PORT.STATUS "Device"
Replies: 6
Views: 1785

LIST.READU Command Output decoding

It was interesting to read - thanks for that. I decided to open up a call and send it straight to Sunil or Len since I know that they know the answer without having to check but I'll probably have to fight my way through support first. I've already have been told that they can't help without knowing...
by ArndW
Tue Jun 09, 2009 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting Dataset file
Replies: 4
Views: 1174

The more I see what you intend, the less I would recommend using orchadmin and the more I tend towards recommending writing a DataStage job to do this.
by ArndW
Tue Jun 09, 2009 5:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File
Replies: 3
Views: 1128

You can keep on declaring additional nodes until your job start so many processes that the system is overloaded. The configuration files can be located just about anywhere and the attributes are well documented.