Search found 53125 matches

by ray.wurlod
Tue Dec 02, 2008 10:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer trim question
Replies: 3
Views: 1146

The default behaviour of Trim() is to remove leading, trailing and redundant consecutive trimmable characters. Therefore Trim(" ") would leave a single space character as the result.
by ray.wurlod
Tue Dec 02, 2008 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting data - partition design question
Replies: 4
Views: 1334

Partition by sortcode (modulus or hash as the algorithm) and sort by sortcode then by store number. You did not give us the rule for what determines the data set into which a particular row goes - but presumably you can use a Switch, Filter or Transformer stage to effect that.
by ray.wurlod
Tue Dec 02, 2008 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Nested Loop stage not working
Replies: 1
Views: 1478

Did you build your custom trigger expressions in your Nested Condition activity using the expression editor? If not, please do so and let us know the result. Also make sure that the casing is correct, or apply an Upcase() function to force a case-insensitive comparison. Finally, you need to check th...
by ray.wurlod
Tue Dec 02, 2008 10:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compatibility of Datastage 4.3 with Sybase ASE 15.0
Replies: 2
Views: 997

Welcome aboard. Almost certainly the answer is no, given the age of DataStage version 4.3. However, you may be lucky - try it both with the Sybase OC stage (which may have retained upward compatibility) and with the ODBC driver for Sybase. There is a matrix of compatibilities that you can find on th...
by ray.wurlod
Tue Dec 02, 2008 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TAB_s3 ----> TAB_t3
Replies: 1
Views: 803

The only approach is trial and trial. Start with one stream, then increase gradually until elapsed time doesn't reduce any more. Of course all this is predicated on "all else being equal" on the server machine. You can use the DataStage resource estimator tool, but this does not report an ...
by ray.wurlod
Tue Dec 02, 2008 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ Compiler for Solaris
Replies: 4
Views: 1193

If it is in your PATH, then the which command will find it quickly.

If it is not in your PATH, then find is the appropriate command.
by ray.wurlod
Tue Dec 02, 2008 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to create new user and password
Replies: 3
Views: 954

Control Panel on the server machine. Depending on which flavour of Windows you are running depends on precisely where within Control Panel the application for working with users and groups will be found. Get help from your Windows administrator person.
by ray.wurlod
Tue Dec 02, 2008 11:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller Problem
Replies: 6
Views: 1956

Are you using your own ("hand written") job control code? Look for code like the following: hJob1 = DSAttachJob(JobName, DSJ.ERRNONE) ErrCode = DSRunJob(hJob1, DSJ.RUNNORMAL) ErrCode = DSWaitForJob(hJob) (These may not be adjacent lines in your node.) Note that the variable used in DSWaitF...
by ray.wurlod
Mon Dec 01, 2008 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: hi
Replies: 3
Views: 998

Welcome aboard.

Try to choose meaningful subject lines - it will aid future searchers.

Search DSXchange for topics such as the dsrecords command and use of the Data Set Management tool.
by ray.wurlod
Mon Dec 01, 2008 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Does Not Exist
Replies: 4
Views: 4591

Never, ever, delete jobs in that way. Even after Bryceson posts his findings about what's in the common metadata repository there are yet other things that will need to be cleaned up in the local repository, among them entries in the table of job objects (DS_JOBOBJECTS), and possibly references to t...
by ray.wurlod
Mon Dec 01, 2008 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performances of the jobs
Replies: 7
Views: 1832

Thin air.

Next week a doctor with a flashlight will show us were business estimates come from.
by ray.wurlod
Mon Dec 01, 2008 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the passive stage information from the Job
Replies: 3
Views: 1006

This is confusing code because you have used Status1 to capture information that is not status information.

What value is being returned by DSGetJobInfo(hJob2, DSJ.STAGELIST2) ?
by ray.wurlod
Mon Dec 01, 2008 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delete entire rows and load the table instead of truncate
Replies: 13
Views: 3105

Resist stupid requirements. DELETE all rows is transactional, and takes a long time. TRUNCATE is non-transactional and is fast.
by ray.wurlod
Mon Dec 01, 2008 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: high availability for IIS 8.x?
Replies: 16
Views: 3810

There were presentations on high availability at the most recent two Information on Demand conferences, so one must assume that IBM does have some offering in this area.