Search found 4992 matches

by kcbland
Thu Jan 04, 2007 2:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Telnet Before Command" sporadically not running c
Replies: 12
Views: 4187

A professionally done job would have not used this stage or these features. I would have written a generic library of reusable scripts and avoided the FTP stage altogether. I'd use ssh and scp to satisfy security concerns, as well as promote a faster file transfer (dedicated transfer with optional p...
by kcbland
Thu Jan 04, 2007 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage software for unix operating systems
Replies: 4
Views: 919

You need to get the specific version of DataStage for your operating system release. Your CD only works with the OS you purchased. You need new CDs and licensing information for Unix variants.
by kcbland
Thu Jan 04, 2007 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: load sequential file with varying number of columns
Replies: 7
Views: 2733

How could this possibly work? Data is positional, with DML you're preparing a cursor and feeding values to a cursor. With bulk loading, you're loading a fixed file. You can't do what you're asking. You need to separate your output data into different subsets of rows, each with like record type. Each...
by kcbland
Thu Jan 04, 2007 12:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get source file's name into a transformer?
Replies: 12
Views: 4327

Easiest way to do this is on initialization of a Stage Variable in a Transformer. Write a DS Function to do a CALL DSExecute and run the command to get the filename and format the results. This will only be done once when the stage starts. Set the derivation of the stage variable to itself (FRED = F...
by kcbland
Thu Jan 04, 2007 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 9
Views: 2874

Your metadata is wrong. Re-import the metadata and use that. If the messages continue, then you have to figure out which columns don't match the data. Sometimes metadata shows no decimal scale, but the actual data contains decimals. You'll have to set the decimal scale manually in the job to give yo...
by kcbland
Thu Jan 04, 2007 12:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deriving different Levels
Replies: 17
Views: 4705

A piece of friendly advice, represent your problem with actual rows and columns. Show exact source data and exact expected data. Your example shows a comma delimited string in the expected results. If this is not what you're asked, then show your example more clearly.
by kcbland
Thu Jan 04, 2007 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular Expressions in the Transformer
Replies: 4
Views: 1706

Oh Ernie, you got me. I ignored the capital letters and made a poor assumption that the poster was asking a simpler question about DS BASIC. Well, my answer is to select all derivations for change, right-click choose Derivation Substition, and then type into the "Regular expression to match" field a...
by kcbland
Thu Jan 04, 2007 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deriving different Levels
Replies: 17
Views: 4705

Sort the data, use Stage Variables and collect the data in there concatenating the pertinent columns, reset the stage variables on key column changes, pass to an Aggregator and use the LAST derivation for the concatentated data, group by the key columns.
by kcbland
Thu Jan 04, 2007 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help: Abnormal termination of stage
Replies: 13
Views: 4639

If you're using Link Collectors or IPC stages, timeouts will occur occasionally. It's a choice you make when you use these stages. Unless there's balanced and constantly streaming input to these stages, a timeout may occur. There's no way to prevent a timeout, because timeouts can't be disabled. Any...
by kcbland
Thu Jan 04, 2007 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular Expressions in the Transformer
Replies: 4
Views: 1706

Welome to the forum. The expressions are simply assignment operations. If you need to do a conditional, an If-Then-Else statement works. I suggest you open existing jobs written by others and look and the various methods for writing BASIC expressions. As a programmer, you should have no problem unde...
by kcbland
Thu Jan 04, 2007 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What's Important ??
Replies: 3
Views: 844

MKS toolkit only applies to Windoze versions. Is it a fresh instalation or an upgrade? Just read the installation documents and readme notes for your version, make sure your kernel settings are in place ahead of time. The best advice is have the support number handy, because they're your first line ...
by kcbland
Thu Jan 04, 2007 9:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node pools on SMP
Replies: 3
Views: 896

You will still want to configure different node pools, in case you wish some jobs to use fewer resources and other jobs to use more.
by kcbland
Wed Jan 03, 2007 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Utilization of CPU
Replies: 9
Views: 4197

Nodes are not assigned to a processor in no fashion, no way, no how. This is bad information. You are creating a logical computer when you create the configuration file. You could configure 100 nodes on a single cpu server if you were so included. You could configure 10 nodes on a 256 cpu server as ...
by kcbland
Wed Jan 03, 2007 9:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Utilization of CPU
Replies: 9
Views: 4197

Operating systems govern what processes run on which cpus and what resources are allocated. The most you could do is run jobs under different userids and (if your hardware supports affinity) define cpu affinity for userids. That will at least set aside cpus for different users, but there's no way to...
by kcbland
Tue Jan 02, 2007 2:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Constraint and Reject
Replies: 7
Views: 2060

Are your dates formatted to YYYY-MM-DD?