Search found 4992 matches

by kcbland
Wed Dec 01, 2004 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can system generated error be captured?
Replies: 11
Views: 2475

Please give an exact example of what you mean by system error. If a row is unable to be read from a sequential text file because of invalid column definitions, then there's no way to trap that to a file. If you haven't accurately described in the sequential stage what a row looks like, how can you w...
by kcbland
Wed Dec 01, 2004 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine gets locked
Replies: 12
Views: 3230

Search this forum for unlocking jobs. Also look for "DS.TOOLS". Your function is just an object in the lock table, it will show up on the lock listing and you can release it.
by kcbland
Wed Dec 01, 2004 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: storing of log details of a job in a file on windows and uni
Replies: 2
Views: 724

The .pdf files distributed with the software, available under your Start button as Online Documentation, cover in the BASIC manual all of the APIs available for accessing the log information. You can search the forum, as we've posted many times logic that can be used to extract info from logs. You c...
by kcbland
Tue Nov 30, 2004 9:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence jobs and check points
Replies: 9
Views: 2356

chulett wrote:Consider it ignored. :wink:


But by answering that you're ignoring it, are you really ignoring it? 8)
by kcbland
Tue Nov 30, 2004 9:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencer
Replies: 10
Views: 4152

If production and backup instances are identical in every way except connection credentials, simply parameterize your connection credentials (dsn, userid, password). Run the sequence giving it the production credentials, which in turn propagates the connection credentials in the sequencer to its job...
by kcbland
Tue Nov 30, 2004 9:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get all the columns from input file in one variable
Replies: 4
Views: 999

Once a Server job reads a row it parses it into the column definitions format. There is a variable that contains the entire row read from the input source, but I don't think you want to use it because it's undocumented and tricky to get at. Your solution is quite easy. Basically, load the full colum...
by kcbland
Tue Nov 30, 2004 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting datastage to add a decimal point
Replies: 4
Views: 4839

Actually, you can use OCONV with the MDxy token. The y will shift decimals and the x will set the decimal place. So, MD33 will shift the decimal 3 positions, then round to 3 places. Likewise, MD24 will shift 4 places and then round to 2.
by kcbland
Tue Nov 30, 2004 9:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Project not accessible any more
Replies: 2
Views: 1206

Did you move the project or change its underlying path in anyway? Internally, a project is registered with an explicit path. If you physically move the project or change its path in any way, then the internal table is not in sync with reality. If you use DS.TOOLS, you can see the licensing informati...
by kcbland
Tue Nov 30, 2004 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with a transformer stage
Replies: 1
Views: 457

Can you please describe what the link is doing? Is it reading a file and loading a table? If it is sitting and spinning it could be a metadata issue - it's trying to interpret the file and can't read a row because the definition of a row is fouled. It could be that the database is busy getting ready...
by kcbland
Tue Nov 30, 2004 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting datastage to add a decimal point
Replies: 4
Views: 4839

Unless you perform some derivation other than a straight mapping DS will not attempt to scale data. Try adding zero ( link.column + 0) to your value to see if DS will be nice and adjust your data. However, your situation is one of an implied decimal. You will have to divide by 1000 to get your answe...
by kcbland
Tue Nov 30, 2004 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Expression as a Parameter Value
Replies: 8
Views: 1126

You cannot, another poster just stated the same errant suggestion.
by kcbland
Mon Nov 29, 2004 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Usage of uv and uvsh commands
Replies: 4
Views: 4353

DataStage's internal repository is undocumented by Ascential. Those of us who are Universe/Unidata/PICK bit-twisters from wayback have peeked and poked around under the covers enough to understand the internal structure. You can simply inspect an empty projects directory and get an idea of the name ...
by kcbland
Mon Nov 29, 2004 10:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Port Identification
Replies: 7
Views: 2314

Your post indicates you are on a Windoze platform, but your text talks about Unix. Parallel jobs do not work on Windoze because it has not been ported to Windoze in a distributable form.
by kcbland
Mon Nov 29, 2004 9:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Port Identification
Replies: 7
Views: 2314

The client software runs your PC and connects to the DataStage server via TCP/IP. Therefore, if you can ping your DataStage server from your client using the IP and the DNS, then you can use either in the client to connect to the server. DataStage has two flavours: Server and Parallel. Parallel is c...
by kcbland
Mon Nov 29, 2004 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting Duplicates
Replies: 14
Views: 2785

Why not use the Aggregator stage? If your data is sorted then the Aggregator is optimized for that activity.