Search found 6797 matches

by DSguru2B
Tue Mar 07, 2006 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error job sequence
Replies: 6
Views: 2680

Yea check your NLS installation. what are you using the DSR_NLS routine for ?
by DSguru2B
Tue Mar 07, 2006 12:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Whats happened with Hashed Files..
Replies: 2
Views: 698

Hashed files are seperate files the are created via the DS application. It has no effect if the job is deleted or changed. The next run of the job can variate the content of the file.
Its just like saying if I delete a job, will the target table be deleted :wink:
by DSguru2B
Tue Mar 07, 2006 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Name
Replies: 9
Views: 2354

Yup it works gracefully. I just ran a test on it.
Your all set Thibal. :lol:
by DSguru2B
Tue Mar 07, 2006 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Name
Replies: 9
Views: 2354

hey, Thibal, waitup i did a search and found a reply by vmcburney, i knew the DSgurus would know, this is his reply "It's easy, macros can be treated just like job parameters, you can use DSJobInvocationID in your file paths and file names surrounded by # characters. I've done this in the past ...
by DSguru2B
Tue Mar 07, 2006 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Name
Replies: 9
Views: 2354

if you want to use it in a job name then i would say yes, no other choice but to use a job parameter.
Maybe the DS gurus know of some other way, as far as my knowledge, you have to use a job parameter (variable between two #'s)
by DSguru2B
Tue Mar 07, 2006 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Name
Replies: 9
Views: 2354

go to macros, and then choose DSJobName.
by DSguru2B
Mon Mar 06, 2006 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETL errors while running batch schedule
Replies: 13
Views: 10566

One small tip to avoid these issues, is PLEASE gracefully logoff from DS or any DB services.
The processes are left hanging under each user hence increasing the load of processes. :D
by DSguru2B
Mon Mar 06, 2006 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can server container be used in parallel job
Replies: 4
Views: 1662

A server container can be used in PX a.ka EE, but it is highly not recommended by the product vendor since it invokes the DSserver engine for the process.
It might possibly even give you performance issues.
by DSguru2B
Mon Mar 06, 2006 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to avoid NULL to reject - in SWITCH case
Replies: 20
Views: 8544

Did you also try removing the Reject status in the stage.
by DSguru2B
Mon Mar 06, 2006 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can any one help to solve the problem ...............
Replies: 3
Views: 1801

In order to solve this problem you need to have a look-up of City to Country (Code or Name). From the transformer filter those rows by having the logic IF Link ISNULL and store it in a Dataset. Then use that dataset to lookup into the City to Country data set that is provided to you. That should sol...
by DSguru2B
Fri Mar 03, 2006 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() write failed for the record id '022947811'
Replies: 6
Views: 5787

DSX search engine is my best friend, make it yours too :)

the solution to your query is here

Good Luck.
by DSguru2B
Fri Mar 03, 2006 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DRS Stage not responding
Replies: 1
Views: 1340

Welcome aboard, Let me give you a friendly advice buddy, a lot of these topics have been already covered here. If you want the solution to your problem fast, make the Search option your best friend. I did a search and found this, check it out http://www.dsxchange.com/viewtopic.php?t=93260&highli...
by DSguru2B
Thu Mar 02, 2006 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() write failed for the record id '022947811'
Replies: 6
Views: 5787

o i forgot to add,
if the hash file is outside the DSRepository, then you need to create a local VOC entry.
You can use the "SETFILE /path/to/your/file hashfilename" and then a "ANALYZE.FILE hashfilename" to do this. [/code]
by DSguru2B
Thu Mar 02, 2006 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() write failed for the record id '022947811'
Replies: 6
Views: 5787

start the DS admin, go to you project and in the command execute the following command

Code: Select all

ANALYZE.FILE hashfilename
that should give you the size of the hash file along with other hashfile info.
i hope it helps
by DSguru2B
Thu Mar 02, 2006 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert and update the records to sqlserver
Replies: 17
Views: 8148

Samba, if you have a column in your source table that maintains the timestamp of when that record was last updated or inserted, then the most easiest thing for you to do is, just select the changed records from your source table. in the DRS stage, select user defined SQL and in sql select only chang...