Search found 15603 matches

by ArndW
Thu Jan 17, 2013 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: basic transformer stage
Replies: 1
Views: 825

The BASIC Transform stage has always been available, but it isn't found in the list of stages. In the Designer you need to access via the directory tree. See the following screenshot for the location:

Image
by ArndW
Thu Jan 17, 2013 10:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage slapping value -05:00 automatically while loading
Replies: 11
Views: 2679

If the peek isn't showing timezones then none are being passed to the DB, which might be the source of your problem.

What is the datatype going into the peek stage of the column in question?
by ArndW
Thu Jan 17, 2013 6:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate a single GUID to apply to two SQL Server tables
Replies: 3
Views: 1084

Unless you control the creation of a new GUID inside DataStage then you will have to choose the path you outlined involving writing, then reading the newly created record in order to retrieve the GUID.
by ArndW
Wed Jan 16, 2013 11:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Header with Record Terminator
Replies: 2
Views: 1390

If you wish to auto-generate the header row then the simplest solution would be to not add this terminator in the DataStage flow, but subsequently in an after-job command or from a job-sequence, simply use something like

Code: Select all

sed -i 's/$/\!\#\#\!/' {yourfile}
by ArndW
Wed Jan 16, 2013 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage slapping value -05:00 automatically while loading
Replies: 11
Views: 2679

Can you put a peek stage into your job right at last possible stage to show what DataStage thinks it is writing?
by ArndW
Tue Jan 15, 2013 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to run a SQL statement
Replies: 5
Views: 1396

To confirm that you are in the right database in the right environment, what happens if you write a test job with the SQL "SELECT TABLE_ID FROM VEN_DETAILS "?
by ArndW
Tue Jan 15, 2013 10:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage slapping value -05:00 automatically while loading
Replies: 11
Views: 2679

If "slapped" means "subtracted" then another question would be : What time zone are you in? GMT -5 by any chance?
by ArndW
Mon Jan 14, 2013 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove special characters from XML file
Replies: 8
Views: 3395

UTF-8 can have characters of more than 2 bytes. So the question is do you want to perform some action on any character that is more than 1 byte long? And what exactly do you mean, in this context, by "escaping" them? Putting a "\" in front of them?
by ArndW
Mon Jan 14, 2013 11:44 am
Forum: General
Topic: Oracle Vs DB2 for Xmeta
Replies: 4
Views: 1736

Not that I know of, but you've mentioned the single most important factor for your organisation that outweighs other factors.
by ArndW
Mon Jan 14, 2013 11:39 am
Forum: General
Topic: Using FTP stage without file structure
Replies: 2
Views: 577

Not really, but you could fake it by using just one column per row (if the file has CR/LF) or by using a dummy column with fixed length and accepting an error on the last row.
by ArndW
Sun Jan 13, 2013 3:45 am
Forum: General
Topic: Job Compliation Error -- Datastage 9
Replies: 4
Views: 3695

I don't have the install guide handy, but it used to be a requirement that the (correct) compiler is installed prior to installing the DataStage server so the worse case scenario is uninstalling DataStage and then re-installing it. Does your post mean that there is no "windows.h" file on t...
by ArndW
Sun Jan 13, 2013 3:41 am
Forum: General
Topic: Not able to open Datastage log
Replies: 2
Views: 1146

This is a good example of either a support contract or, at the very least, a Premium Membership here show its value. It is Sunday, and this is an all-volunteer forum. You have posted in "DSXChange Testimonials", an inappropriate forum. Had you read the requested readme, you would have seen...
by ArndW
Sat Jan 12, 2013 5:02 am
Forum: General
Topic: MKS Toolkit
Replies: 9
Views: 5232

Hello Ray,

I wasn't aware of that; does that mean that jobs don't use a UNIX type fork mechanism anymore?
by ArndW
Sat Jan 12, 2013 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Line Feed' that doesn't disappear
Replies: 10
Views: 3259

Convert(Char(11):Char(0),'',In.Column) should work to remove those 2.
by ArndW
Sat Jan 12, 2013 3:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Packed decimal CFF Stage
Replies: 6
Views: 2162

Since DataStage is delivered with MKS Toolkit, you can do a "head -1 <file> | od -x" to see what exactly those characters are.
For the column in question you should also check the column output details, perhaps you have a conversion which you don't expect.