Search found 53125 matches

by ray.wurlod
Thu Aug 09, 2012 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Datetime fields
Replies: 4
Views: 6949

Welcome aboard. You have posted in the incorrect forum. The moderator will be along shortly to place your query correctly, then you have to give us more information about the version and platform that you are using.
by ray.wurlod
Thu Aug 09, 2012 3:55 am
Forum: General
Topic: EXECSH at the end of a job called by a sequence
Replies: 21
Views: 6889

By detecting the exit status of the sqlplus command in your script and making sure that your script doesn't exit with status 0 if the sqlplus command doesn't.
by ray.wurlod
Thu Aug 09, 2012 12:02 am
Forum: General
Topic: Disabling and Enabling the index ,Db is sql server 2008
Replies: 6
Views: 1598

Disabling indexes that support the join can only make your SELECT statement run FAR slower...
by ray.wurlod
Wed Aug 08, 2012 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orachadmin Dump command
Replies: 8
Views: 2454

Yes. Exactly as you say.
by ray.wurlod
Wed Aug 08, 2012 11:10 pm
Forum: General
Topic: Multiples files FTP and Process
Replies: 1
Views: 774

There's nothing special about the script - implement it as you would for any other application. Standard FTP techniques/commands are all you need (and maybe a way to handle the password "nicely").
by ray.wurlod
Wed Aug 08, 2012 11:07 pm
Forum:
Topic: Business Glossary Workflow - POLL
Replies: 3
Views: 2297

We have a fairly new installation of BG, using a hybrid. Yes, workflow is in use, but they've decided to publish some Candidate terms so that they don't get lots of emails suggesting the same thing. There are over 30,000 users in the organisation.
by ray.wurlod
Wed Aug 08, 2012 11:05 pm
Forum: IBM QualityStage
Topic: COUNTRY rule set is identifing the Country code
Replies: 10
Views: 4186

Even so youd've thought it would have nailed ON for the province Ontario. Ah well.
by ray.wurlod
Wed Aug 08, 2012 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Integer to Date
Replies: 6
Views: 2694

Code: Select all

Fmt(InLink.TheDate,"####-##-##")
will yield 2012-08-08 format from 20120808.
by ray.wurlod
Wed Aug 08, 2012 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting Long Month Name from Date
Replies: 24
Views: 12124

"D-DMBY"
by ray.wurlod
Wed Aug 08, 2012 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading two or more files in a single job run
Replies: 7
Views: 2218

The Sequential File stage can readily handle multiple input files, provided that they have the same record structure. The Sequential File stage can use a Filter command. In this case the filter command should be TYPE file1 file2 (or COPY file1 file2 ). (If you were on UNIX, the command would be cat ...
by ray.wurlod
Wed Aug 08, 2012 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract substring
Replies: 10
Views: 5121

SO, not substrings but "delimited substrings".

An equivalent to the Field() function would be square brackets notation.

Code: Select all

Column_Name["_",1,1]
by ray.wurlod
Wed Aug 08, 2012 3:06 pm
Forum: General
Topic: EXECSH at the end of a job called by a sequence
Replies: 21
Views: 6889

Make sure that the script returns a non-zero exit code if it "fails".
by ray.wurlod
Wed Aug 08, 2012 3:04 pm
Forum: General
Topic: How to categorize user defined environment variables
Replies: 6
Views: 1127

The Administrator GUI only allows you to create new environment variables in the User Defined folder. It does however let you see environment variables created by editing DSParams file.
by ray.wurlod
Wed Aug 08, 2012 3:02 pm
Forum: General
Topic: getting execute command stage output
Replies: 13
Views: 17511

Craig's syntax is correct. I usually do that in a user variable, which means that I have a delimited list to pass to the StartLoop activity. Note that the final line terminator will mean that you have an empty line at the end. You may like to adjust for this either in the command itself (for example...
by ray.wurlod
Wed Aug 08, 2012 2:57 pm
Forum: General
Topic: Locks found on DS Admin
Replies: 2
Views: 680

They shouldn't impact DS performance too much until the lock table fills.
But we will need to see some examples, as Arnd requested, before we can comment cogently.