Search found 53125 matches

by ray.wurlod
Mon May 16, 2011 6:36 pm
Forum: General
Topic: Can't run compile save or create a job
Replies: 16
Views: 9191

What is the group associated with objects in DSEngine and the 'bad' project? In particular, what are the owner and group of the dssh executable in $DSHOME/bin ?
by ray.wurlod
Mon May 16, 2011 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Find the parent child relationship
Replies: 6
Views: 2437

Search DSXchange for the term "recursive SQL".
by ray.wurlod
Mon May 16, 2011 3:23 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Not able to view the tables in ProfileStage 7.5.1
Replies: 1
Views: 1343

What do you mean by "see"? Have you opened Column Analysis? Did you create any reports or publish results?

Moderator: please move to Information Analyzer forum
by ray.wurlod
Mon May 16, 2011 3:21 pm
Forum: General
Topic: Can't run compile save or create a job
Replies: 16
Views: 9191

What are the permissions in DSEngine and in the project where you can not do this work?
by ray.wurlod
Mon May 16, 2011 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header repeatition in the XML file
Replies: 3
Views: 1716

What has this to do with the DSXchange site/forum?
:roll:
by ray.wurlod
Sun May 15, 2011 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: jobs are failing with same type of error
Replies: 3
Views: 2291

Reset the job then report to us what is in the "from previous run..." message in the job log.
by ray.wurlod
Sat May 14, 2011 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running SQL Query
Replies: 10
Views: 5005

Encrypted maybe not, but one of my sites is now seriously looking at data masking, especially now that the Data Masking pack for DataStage is available.
by ray.wurlod
Sat May 14, 2011 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to delete fifo from RT_SCTEMP folder
Replies: 1
Views: 1518

Next time you run that job the fifo file will be replaced. You won't save any disk space by deleting them, so why bother?
by ray.wurlod
Sat May 14, 2011 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset error..
Replies: 4
Views: 1933

Use (set APT_CONFIG_FILE to) the same configuration file as the one that was used to write the Data Set.
by ray.wurlod
Sat May 14, 2011 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to view content of &PH& directory
Replies: 4
Views: 1999

Alternatively from the Administrator use the SH command.

Code: Select all

SH -c "ls -lrt '&PH&' > /tmp/PHContents"
by ray.wurlod
Fri May 13, 2011 5:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to view content of &PH& directory
Replies: 4
Views: 1999

From command line ls \&PH\&

From Administrator client LIST &PH&
by ray.wurlod
Fri May 13, 2011 5:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: validate a char or varchar input string as numeric digits
Replies: 3
Views: 2552

Code: Select all

Convert("0123456789", "", InLink.TheString) > ""
by ray.wurlod
Fri May 13, 2011 5:45 pm
Forum: General
Topic: Project folders and names translated
Replies: 2
Views: 904

The client is set to use Spanish. Change the Windows settings to English and the DataStage clients should follow suit.
by ray.wurlod
Fri May 13, 2011 2:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: improving performance
Replies: 2
Views: 1683

Other things happening on the machine at the same time is an often overlooked one.
by ray.wurlod
Fri May 13, 2011 12:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating Sequence number for primary key at Taget oracle T
Replies: 1
Views: 2147

Don't include the RUN_ID column in your design. Mention it only in the user-defined SQL. I presume you are using an Oracle sequence because there are likely to be other processes inserting rows into this table at the same time that you are. Otherwise consider using a surrogate key stage, which you c...