Search found 42189 matches

by chulett
Tue Feb 20, 2007 5:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pipes in Filter Command of Sequential file
Replies: 13
Views: 2787

In other words, it's a Work Around. :wink:
by chulett
Tue Feb 20, 2007 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FMT function
Replies: 7
Views: 10497

Are you saying that you are still doubtful? If you're good now, please mark the thread as Resolved.
by chulett
Tue Feb 20, 2007 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sort on a column
Replies: 23
Views: 4681

More to it than that my friend. 'ASC' and 'asc' mean two slightly different things, for instance. It's all in the help.
by chulett
Tue Feb 20, 2007 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sort on a column
Replies: 23
Views: 4681

Did you... read the help in the stage? Put your cursor in the sort field then click on Property Help - all will be revealed. :wink:
by chulett
Tue Feb 20, 2007 2:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FMT function
Replies: 7
Views: 10497

Please state your requirements in English, not Informatican.
by chulett
Tue Feb 20, 2007 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while trying to retrieve text for error ORA-12154
Replies: 10
Views: 4182

You are configuring this for ODBC or OCI? The first two files you mentioned are for ODBC while the third is needed for OCI. LIBPATH = SHLIB_PATH on some operating systems, you set whichever is appropriate for yours. You also need to make sure ORACLE_HOME is set in the dsenv file as well, then stop a...
by chulett
Tue Feb 20, 2007 9:00 am
Forum: General
Topic: DataStage Basic Complier Problems
Replies: 5
Views: 2544

Doesn't really answer the question, but... ok. Whatever. :?

Why not just 'analyse BASIC' by studying the supplied Routines? There are a plethora, documentation is decent and all you have to do is double-click on one to reveal the BASIC source code.
by chulett
Tue Feb 20, 2007 8:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing to sequential file
Replies: 8
Views: 1865

If you were on a UNIX server, I'd suggest writing to '/dev/null'. From what I recall, there is an equivalent on Windows but not sure what it is off the top of my head. Anyone?

Ah... Chuck snuck in right before me. :wink:
by chulett
Tue Feb 20, 2007 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing to sequential file
Replies: 8
Views: 1865

Yes, but it will just be created for you. If it is too much of a dummy it will cause the job to abort. It would help if you explained why it is 'irrelevant' in this case, I would think, so the suggestions can be more... targeted.
by chulett
Tue Feb 20, 2007 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RTI package
Replies: 6
Views: 1483

The 'RTI package' no longer exists, it is now known as the 'SOA Edition'. RTI stood for Real Time Interface and SOA allows jobs to be deployed as web services and run in 'real time'. There's more to it than that, but there's the Executive Summary. :wink:
by chulett
Tue Feb 20, 2007 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reding Unix Output inDS routine
Replies: 3
Views: 1248

Re: Reding Unix Output inDS routine

Balakrishnan wrote:var1 = Trim(UnixOutput,'@FM','')

The quotes are your problem, they turn the Field Mark system variable into just another string.

Code: Select all

var1 = Trim(UnixOutput,@FM,'')

Will work a little more better. :wink:
by chulett
Tue Feb 20, 2007 8:20 am
Forum: General
Topic: Restarting aborted Sequence jobs with Loop stages
Replies: 2
Views: 1518

Not sure if this is significant or not, but I do have the ECASE 62595 patch installed which helps avoid a 'stack overflow' problem with long running loops. FYI.
by chulett
Tue Feb 20, 2007 8:18 am
Forum: General
Topic: DataStage Basic Complier Problems
Replies: 5
Views: 2544

I'm just curious why you are taking this path rather than creating Routines in the Manager or coding in the Job Control tab of a Server job? :?
by chulett
Tue Feb 20, 2007 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Error Message in Server Routine (Transform Function)
Replies: 5
Views: 1899

You can fetch all messages from the current run of a certain type - warning, fatal, whatever you like.
by chulett
Tue Feb 20, 2007 1:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Error Message in Server Routine (Transform Function)
Replies: 5
Views: 1899

After the job has run, you would fetch this information from the job's log. Techniques have been discussed here a great many times, search for the wealth of good information you'll find here. Yes, you could use another job that leverages the various 'DSGet' functions that access log information, or ...