Search found 42189 matches

by chulett
Wed Oct 27, 2010 12:59 pm
Forum: General
Topic: Exec Command Silent
Replies: 3
Views: 2016

Re: Exec Command Silent

Im posting it in the GEneral forum as Sequencers are 'General' by definition.. So Moderator - Please do not move it to server Forum :wink: ) Hey... if you've been following along since I've put on the Moderator's hat, you'd see I move all Sequence topics into the General forum if people post them e...
by chulett
Wed Oct 27, 2010 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC stage float field
Replies: 6
Views: 1923

At least that one should be solvable via the proper NLS settings, I would think. Not sure how much control you'll have over that float field, however.

You mentioned "changing it" in a downstream transformer, can you let us know exactly what you tried - function(s), data type(s), etc?
by chulett
Wed Oct 27, 2010 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC stage float field
Replies: 6
Views: 1923

Why not just stick with the RDBMS stage, seeing as how it works the way you'd like it to?
by chulett
Wed Oct 27, 2010 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata Import
Replies: 13
Views: 5962

How are you planning on running any jobs against that database if there is no "select access from the DataStage server"? Surely you must have at least one id defined on the server for connectivity there - can you not use that for the metadata import? :?
by chulett
Wed Oct 27, 2010 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job with update
Replies: 3
Views: 2218

Database... DB2?
by chulett
Tue Oct 26, 2010 8:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 13
Views: 2720

Hence the initial suggestion, which was deemed to be not "automatic" enough. :wink:
by chulett
Tue Oct 26, 2010 8:55 pm
Forum: General
Topic: datastage certtification
Replies: 1
Views: 729

by chulett
Tue Oct 26, 2010 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 13
Views: 2720

Right, but in my experience many don't like the dashes in the date and would prefer simply "yyyymmdd". It gets worse if you want a full timestamp. :wink:
by chulett
Tue Oct 26, 2010 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 13
Views: 2720

It would actually be "mv" rather than "rm" and the syntax would need both filenames mentioned. The macro can be ok but most people don't like the formatting that they come with.
by chulett
Tue Oct 26, 2010 12:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Materlized query table(DB2)
Replies: 3
Views: 1048

Or you would need to insert into the base tables and it would refresh immediately or if set up deferred you would have to trigger the refresh.
by chulett
Tue Oct 26, 2010 10:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregator error when running a job
Replies: 2
Views: 1273

Hmmm... not much there to go on. If you Reset the aborted job from the Director, does a log entry should up labelled "From previous run..."? If so, can you please post the contents of it.
by chulett
Tue Oct 26, 2010 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 13
Views: 2720

That's as "automatic" as it gets. Another solution is to build a fixed filename than then rename it after job via the O/S to include the date.
by chulett
Tue Oct 26, 2010 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCI_INVALID_HANDLE
Replies: 1
Views: 2125

An exact search for "OCI_INVALID_HANDLE" returned 23 other matches, did none of them help?
by chulett
Tue Oct 26, 2010 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file
Replies: 13
Views: 2720

As noted, use a job parameter you include as part of the filename, wrapped in hash / pound signs like any other parameter is typically used.
by chulett
Tue Oct 26, 2010 6:44 am
Forum: General
Topic: Passing data as parameter values
Replies: 8
Views: 5235

If there are always 5, youshould just need the @FM convert on the last one:

Code: Select all

Field(Convert(@FM,'', Execute_Command_36.$CommandOutput),';',5,1)
Trim optional. And convert the Field Mark to an empty string rather than a comma.