Search found 2886 matches

by qt_ky
Sat Oct 25, 2014 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading sequential file in the order of file
Replies: 7
Views: 3224

You can change properties to force the Parallel job or its stages to run sequentially or override the config file setting to use a single node config file as Craig suggested or you could use a Server job instead of a Parallel job.
by qt_ky
Wed Oct 22, 2014 5:07 am
Forum: General
Topic: HTTP listener process to receive the responses
Replies: 2
Views: 2273

I think you would need to use Information Services Director for that.
by qt_ky
Wed Oct 22, 2014 5:02 am
Forum: General
Topic: Growing <IS_HOME>\ASBNode\logs\DataStage\ folder.
Replies: 8
Views: 3748

Maybe it has to do with tracing? Tracing usually generates large files. Is there tracing enabled at any level?

I have that folder on 8.7 but it's empty.

Did anyone alter the DataStage.properties file in the parent folder?
by qt_ky
Fri Oct 17, 2014 10:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Queries
Replies: 6
Views: 2055

:idea:

Maybe skp just needs to log in?
by qt_ky
Fri Oct 17, 2014 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key using a state file or Database
Replies: 7
Views: 6765

As a DataStage Developer, I always prefer to generate unique numbers directly within DataStage itself.

Any time you reach out to a database for whatever reason, it:
  • - creates extra database I/O operations
    - adds complexity
    - slows down performance
:wink:
by qt_ky
Fri Oct 17, 2014 10:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture insert statements while migrating data into table
Replies: 6
Views: 2432

Each option has pros and cons... That last option creates a potential ongoing maintenance headache and it wouldn't pass any sort of security audit but it would perform well and may give you just what you need.
by qt_ky
Fri Oct 17, 2014 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture insert statements while migrating data into table
Replies: 6
Views: 2432

I think it can be done in this way: - Ensuring database logging is at the level you need to capture all the SQL - Ensuring database privileges allow you to query the database log/audit tables - Create an extract job to query the database log/audit tables Exact details will vary with each database sy...
by qt_ky
Thu Oct 16, 2014 2:09 pm
Forum: General
Topic: Not able to Save, Compile or Import jobs in a project
Replies: 9
Views: 3724

The IBM Support Portal has a number of technotes with that error. In case you did not already search on it, here are a few links... Is xmeta filling up? http://www-01.ibm.com/support/docview.wss?uid=swg21580174 Version 9.1 on non-English locale? http://www-01.ibm.com/support/docview.wss?uid=swg1JR46...
by qt_ky
Wed Oct 15, 2014 5:54 pm
Forum: General
Topic: Retrieving already run job information to populate a table
Replies: 3
Views: 949

See this post also, in case you are interested:

ETL Statistics
by qt_ky
Wed Oct 15, 2014 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage 6.0 - arithmetic loss of precision
Replies: 16
Views: 5849

I actually ran across an IBM technote for version 4, just today! Version 6 is definitely unsupported unless possibly someone has paid big $$ to extend a support contract since then.
by qt_ky
Wed Oct 15, 2014 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage 6.0 - arithmetic loss of precision
Replies: 16
Views: 5849

It's possible. If you create a new test job from scratch, what is the result? Here are a few technotes you may be interested in, although I doubt either one is an exact match: Float data incorrect or corrupt in a DataStage job http://www-01.ibm.com/support/docview.wss?uid=swg21515626 Parallel jobs: ...
by qt_ky
Wed Oct 15, 2014 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage 6.0 - arithmetic loss of precision
Replies: 16
Views: 5849

I tested that in 8.7 and got a result of 3.98.
by qt_ky
Sat Oct 11, 2014 6:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data PUll is slow in Datastage 7.5
Replies: 4
Views: 3403

Run the same SQL outside of DataStage but on the DataStage Server itself manually via the command line, such as by using the Oracle sqlplus utility, and compare the times. Check if the SQL is doing any joins or using any WHERE clause that may be inefficient or causing full table scans due to lack of...