Search found 53125 matches

by ray.wurlod
Wed Apr 24, 2013 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read oracle BLOB payload
Replies: 16
Views: 29356

Or you could just refer to the documentation that tells you that BLOB is not supported.
by ray.wurlod
Wed Apr 24, 2013 3:58 pm
Forum: General
Topic: Password Encryption Using Encrypt.bat
Replies: 8
Views: 4983

You can encrypt any string you like. I typically only encrypt passwords. While I have not used it with dsjob, I have used it successfully with other commands including istool and importexportmanager.
by ray.wurlod
Wed Apr 24, 2013 3:55 pm
Forum: General
Topic: DSJOB - special case
Replies: 6
Views: 1908

You can also use "dot notation" for example

Code: Select all

-param MySet.MyParam=1
by ray.wurlod
Wed Apr 24, 2013 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage Output order
Replies: 3
Views: 1173

If you think for a moment about what's happening inside the Join stage, there's nothing that would affect the sorted order of the rows passing through it.

Of course, if the next downstream stage forced a re-partition or a collection, you could well lose your sorted order because of that.
by ray.wurlod
Tue Apr 23, 2013 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use Copy stage Force property
Replies: 14
Views: 7252

Is the Copy stage doing anything, such as dropping or renaming columns?
by ray.wurlod
Tue Apr 23, 2013 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing in a DataStage encrypted password to ISD
Replies: 2
Views: 2635

You can encrypt values using encrypt.sh (in the bin directory of ASBNode or ASBServer) and use these (for example {iisenc}s8dwdS#sf9wd1f3ssfre--) in your command line. The encrypt.sh utility uses AES-128 encryption by default (you can choose something else).
by ray.wurlod
Tue Apr 23, 2013 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read oracle BLOB payload
Replies: 16
Views: 29356

You have it the wrong way around. You need RAWTOHEX in the SELECT.
by ray.wurlod
Tue Apr 23, 2013 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow performance after migration to SQL Server 2008
Replies: 7
Views: 3567

Read my post again. Carefully.
by ray.wurlod
Tue Apr 23, 2013 2:12 pm
Forum: General
Topic: Parameterization in Query Files
Replies: 10
Views: 2454

For example, you could use an Execute Command activity in a sequence executing an echo command and a redirection operator to overwrite the file. In the Parameters field include literal text and job parameter reference(s).
by ray.wurlod
Tue Apr 23, 2013 2:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read oracle BLOB payload
Replies: 16
Views: 29356

HEXTORAW() or equivalent function in the target INSERT or UPDATE statement.
by ray.wurlod
Tue Apr 23, 2013 2:32 am
Forum: General
Topic: Parameterization in Query Files
Replies: 10
Views: 2454

What Roland said. I have in the past created generic jobs of this kind to move data from Oracle to MySQL. Five jobs for 837 tables. I read the metadata from Oracle system tables (you could use DESCRIBE) to determine which of the five generic jobs to use. The one that handled BLOB had the functions I...
by ray.wurlod
Tue Apr 23, 2013 1:14 am
Forum: General
Topic: Parameterization in Query Files
Replies: 10
Views: 2454

DataStage should resolve it if the query is in a stage. Make sure that the spelling and casing of the job parameter reference in your SQL query exactly match those of the actual job parameter defined in the Job Properties Parameters page. Also make sure that the value provided for that parameter is ...
by ray.wurlod
Tue Apr 23, 2013 1:11 am
Forum: General
Topic: dsjob question
Replies: 2
Views: 1133

Note that options -wait and -jobstatus are mutually exclusive. If you use -wait you will need to remove it to use -jobstatus option.
by ray.wurlod
Mon Apr 22, 2013 4:40 pm
Forum: General
Topic: Disable NLS to improve performance
Replies: 7
Views: 3876

Disabling NLS won't really affect performance. The fact that NLS is installed means that characters are processed using multi-byte-capable techniques. Installing without NLS is a "pure (extended) ASCII" environment, single-byte character set only. That would perform better than with NLS in...
by ray.wurlod
Mon Apr 22, 2013 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UserId and password in .odbc.ini
Replies: 3
Views: 1301

I never put password in .odbc.ini, and rarely username.