Search found 531 matches

by prasson_ibm
Tue Oct 01, 2013 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to skip first 4 records
Replies: 15
Views: 16516

There could be possibly workaroud, if your source is sequential file then you can generate sequence nunumber and then in transformer constraint give condition like seqno> 4
by prasson_ibm
Wed Sep 25, 2013 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert columns of table having Hex values to text
Replies: 5
Views: 3657

I remember i have converted text to hex using basic trasformer stage,so there must be some conversion function to convert Hex to text.

Code: Select all

OCONV(to_tsfm_hex.ntfEventpayload,"MX0C")
This may help you.
by prasson_ibm
Sat Sep 21, 2013 3:59 am
Forum: General
Topic: Sequence not passing multi-instance invocation id
Replies: 4
Views: 2265

Are you passing the invocation id to job in sequence?
by prasson_ibm
Thu Sep 19, 2013 3:30 am
Forum: General
Topic: Shared Container
Replies: 6
Views: 2210

ArndW wrote: as I usually do, use the Before-Job and After-Job subroutine calls to perform this logging directly using BASIC-Code or to use the BASIC-Code to start up a background PX job which will do the logging.
Thats interesting,can you please share a basic code to trigger a job.
by prasson_ibm
Thu Sep 19, 2013 2:21 am
Forum: General
Topic: Shared Container
Replies: 6
Views: 2210

You can design a job with multiple instance which will insert the job log.

Design a sequence and call this job with some instance before your main job starts and call it again with another instance after main job finishes.
by prasson_ibm
Wed Sep 18, 2013 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to create Java Virtual Machine
Replies: 5
Views: 5694

Re: Unable to create Java Virtual Machine claspath

thirupathireddy.gankidi wrote:Fatal: TJClient::initialize: unable to create Java Virtual Machine; classpath = /opt/IBM/InformationServer/Server/DSEngine/java/lib/wsclient.jar
Add

Code: Select all

/opt/IBM/InformationServer/Server/DSEngine/java/lib/tr4j.jar
to your CLASSPATH and restart the engine.
by prasson_ibm
Wed Sep 18, 2013 4:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to create Java Virtual Machine
Replies: 5
Views: 5694

Ok. Can you please tell me your .profile settings or you make sure below settings are there in .profile. 1.Add java client path to the path variable in .profile of dsadm user. 2.Add Datastage java classpath to .profile 3.Compile your code using javac command.It will generate .class file. 4.Use that ...
by prasson_ibm
Wed Sep 18, 2013 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to create Java Virtual Machine
Replies: 5
Views: 5694

Hi, What is the setting of your .profile for JVM? If you are adding add DATASTAGE_JRE and DATASTAGE_JVM in the project (DataStage Administrator) level and job level or .profile:- There is no need to add JRE/JVM variables to the .profile or DataStage administrator. As per new IIS 8.7 the DataStage kn...
by prasson_ibm
Tue Sep 17, 2013 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to perform bulk load(insert) on seq server database
Replies: 11
Views: 23207

Hi,

I am working with DBA on this and will update you the result.
by prasson_ibm
Tue Sep 17, 2013 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to run sql server package after job(loading) done
Replies: 7
Views: 4070

Hi Chullet,
You are right its working in SP stage but i will also try to execute it in After SQL of the ODBC stage.
I am making this topic as resolved.
by prasson_ibm
Mon Sep 16, 2013 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to perform bulk load(insert) on seq server database
Replies: 11
Views: 23207

Hi,
How can you make sure that it is using bulk load method? Which stage are you using to perform bulk insert?
by prasson_ibm
Mon Sep 16, 2013 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key producing one extra key
Replies: 7
Views: 3807

If the key source is a flat file, specify how keys are generated: ■To generate keys in sequence from the highest value that was last used, set the Generate Key from Last Highest Value property to Yes. Any gaps in the key range are ignored. ■To specify a value to initialize the key source, add the Fi...
by prasson_ibm
Mon Sep 16, 2013 7:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key producing one extra key
Replies: 7
Views: 3807

What blocksize you have selected?
by prasson_ibm
Fri Sep 13, 2013 1:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to run sql server package after job(loading) done
Replies: 7
Views: 4070

Hi Chullet,

Thanks I will test with stored proc stage and then post the result.
by prasson_ibm
Fri Sep 13, 2013 5:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to run sql server package after job(loading) done
Replies: 7
Views: 4070

Hi,

Can not i call it in stored procedure stage.