Search found 42189 matches

by chulett
Wed Jun 04, 2014 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bulk orchestrate import of table definitions
Replies: 17
Views: 6105

From the command line... the utility is named "orchdbutil" from what I recall. Pretty sure that's a practical approach, I'm sure someone else will come along and comment on it for us. :wink:
by chulett
Wed Jun 04, 2014 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bulk orchestrate import of table definitions
Replies: 17
Views: 6105

That API allows integration of Java into a DataStage job. What you are looking to do doesn't require any sort of "job" to accomplish so while the API may not be relevant that doesn't mean you couldn't do this in Java itself. As noted, you just need something to retrieve a list of tables an...
by chulett
Wed Jun 04, 2014 7:17 am
Forum: General
Topic: How to connect EMC Documentum Content Server
Replies: 4
Views: 1848

Do you have any Documentum people you work with who could answer those questions for you?
by chulett
Tue Jun 03, 2014 12:50 pm
Forum: General
Topic: Method to search across all sequence jobs in a project?
Replies: 3
Views: 1042

We would routinely steal an export from the nightly backups and use a modified version of one of Chuck Smith's utilities to parse and then load it up into database tables. This allowed the searching to be done by SQL and let us know the source right away without any of that pesky back-tracking for t...
by chulett
Tue Jun 03, 2014 12:45 pm
Forum: General
Topic: Method to search across all sequence jobs in a project?
Replies: 3
Views: 1042

You could always all Old School on it - export the project as a dsx and then search the exported project for your text. Once found you can work backwards from there to the beginning of the job definition to find the name / category.
by chulett
Tue Jun 03, 2014 10:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup stage broken pipe error
Replies: 1
Views: 1837

Similar != same. Off you go to your own post.
by chulett
Tue Jun 03, 2014 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using a Function In The Insert Statement
Replies: 2
Views: 1858

Are you sure you need to escape it at all? Are you getting a syntax or runtime error that you can share? If for some reason that approach isn't manageable, you could use the function in a lookup / select before the insert so that you just have a 'normal' value to insert in the target. Or perhaps eve...
by chulett
Mon Jun 02, 2014 5:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-Padded Timestamp Format
Replies: 13
Views: 3547

OK, fine... "default" was a poor choice of word on my part as I wasn't referring to an ANSI standard timestamp. If you've actually specified that formatting for the field in the Sequential File stage and it's not respecting it then perhaps it is a bug. Unless someone has some advice on a d...
by chulett
Mon Jun 02, 2014 4:46 pm
Forum: General
Topic: Export 1 .dsx per job (automatically)
Replies: 2
Views: 1525

Yup, the linked post mentions both the Looper and the Cutter. :wink:
by chulett
Mon Jun 02, 2014 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed file format is broken
Replies: 5
Views: 1374

You need to use a hex dump (od -h) on that file or open it in a hex editor and let us know where / what those two extra characters are.
by chulett
Mon Jun 02, 2014 1:07 pm
Forum: General
Topic: Export 1 .dsx per job (automatically)
Replies: 2
Views: 1525

by chulett
Mon Jun 02, 2014 1:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding columns in transformer (Numeric)
Replies: 16
Views: 6197

Then you should be fine... just make sure your input column name is correctly specified. The example you posted has too many "dots" in it:

Code: Select all

ICONV(IN.DSLink.Column1,'MTS')
by chulett
Mon Jun 02, 2014 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-Padded Timestamp Format
Replies: 13
Views: 3547

Which is why you are getting the default formatting in the file. If you really want control over it, declare the output field as a string and then use TimestampToString() to get the specific external format you are looking for. That or don't worry about it. :wink:
by chulett
Mon Jun 02, 2014 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding columns in transformer (Numeric)
Replies: 16
Views: 6197

Not sure what you mean by it is "asking for" anything, there's nothing more to the syntax than what Arnd posted. Can you be more specific? Examples from the documentation are here. Is your "Column1" a string?
by chulett
Mon Jun 02, 2014 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-Padded Timestamp Format
Replies: 13
Views: 3547

How are they declared in the output Sequential File stage - as a string or as a timestamp?