Search found 169 matches

by raju_chvr
Fri Jan 09, 2004 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC TO ORACLE NOT SUPPORTED
Replies: 12
Views: 3268

Re: ODBC TO ORACLE NOT SUPPORTED

I believe ODBC or OCI are the only 2 ways to talk with ORACLE. Even if u want to use DS BASIC or shell script to read the data, they will be using the DSN you create using ODBC or native drivers ...

Care to share why ODBC is not option for you.
by raju_chvr
Fri Jan 09, 2004 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: delete the last row
Replies: 15
Views: 5686

Re: delete the last row

did ur idea work. U shld pass the number of rows from the Trans1 to Trans2 in ur approach. You can achieve this by writing the number of rows in Trans1 to a flat file and use that flat file in Trans2. Or why can't you just delete manually urself or use UNIX to do it. U can even do this using UNIX. j...
by raju_chvr
Fri Jan 09, 2004 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Message and line number.
Replies: 10
Views: 4393

Re: Where is RT_BPnn

The RT_BP is usualy under the Parent/root directory of your project.

In your case if name of you project is 'test' then I guess the below path u mentioned is correct. Check it again with proper rights.

dir ./export/home/dsadm/Ascential/DataStage/Projects/test/XXXXXX: Permission denied
by raju_chvr
Wed Jan 07, 2004 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data stage training
Replies: 4
Views: 1969

Re: Data stage training

I just looked up Ascential website for course catalog.

http://www.nichewareinc.com/ascentiallm ... rseID=1617

Check the above link and they have a class in a week in Atlanta.

Good Luck ..
by raju_chvr
Tue Dec 30, 2003 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merging Files
Replies: 5
Views: 2524

Re: Merging Files

As you are on UNIX system, why don't you use the 'cp' command of UNIX and make the 2 files into 1(as u said they have same MetaData) and then do the Transformations on the file you have just created. You can run this 'cp' command as a before-job sub-routine from job properties. Well it worked for me...
by raju_chvr
Tue Dec 23, 2003 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I am trying to migrate my jobs from one server to another
Replies: 8
Views: 3589

See there we go ... now we have an authoritative answer to use DS export and import functionality.
by raju_chvr
Tue Dec 23, 2003 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Open Jobs
Replies: 2
Views: 1463

Re: Unable to Open Jobs

Pinkesh, You can search on this forum for this. Logon to your DS Administrator and do CLEANUP and this will rebuild all the indexes and this might fix ur problem if your DS_JOBOBJECTS file is corrupted. See below posting for Ray's answer on a similar situation. http://www.dsxchange.com/viewtopic.php...
by raju_chvr
Tue Dec 23, 2003 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I am trying to migrate my jobs from one server to another
Replies: 8
Views: 3589

I would suggest the later... full project export and import on the another
machine ...


Happy Holidays !!
by raju_chvr
Tue Dec 23, 2003 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Environment Variables
Replies: 20
Views: 13437

Re: Using Environment Variables

I have been waiting for Kenneth or Rau or Teej to answer this from the time you have posted. I guess they have already left for Christmas. But they haven't till now. So, I know this may not solve your problem... but just one thought ... did u try restarting the server. I know this may not be the sol...
by raju_chvr
Tue Dec 23, 2003 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer to transformer, execution order
Replies: 1
Views: 832

Re: Transformer to transformer, execution order

If they are sequentially connected, they will be defenitely execute the order you have connected them. If you have them in parallel or in simple words if the source for the second transformer is independent of the first transformer, then both the transformers(1 & 2) will share your CPU time. Sou...
by raju_chvr
Tue Dec 23, 2003 11:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I am trying to migrate my jobs from one server to another
Replies: 8
Views: 3589

Re: I am trying to migrate my jobs from one server to anothe

How exactly are you trying to achieve this without DS export and import?

interesting to know?
by raju_chvr
Tue Dec 23, 2003 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error message to compile a routine
Replies: 12
Views: 5394

Can you actually post it here if possible Craig. Even I need something like that as we are having plans to move our Server from Windows to UNIX.
by raju_chvr
Thu Dec 18, 2003 1:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we call DataStage Job PL/SQL procedure
Replies: 1
Views: 1322

Re: Can we call DataStage Job PL/SQL procedure

we need to call lot of func from other groups what other functions are you talking about. and for your primary question can we call DS jobs from other functions .. yes.. one way is to use command line for calling the jobs. you can write UNIX(whatever shell) scripts to call both stored procedures an...
by raju_chvr
Tue Dec 16, 2003 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 6.2 --> 5.2 need help for export
Replies: 4
Views: 1737

Re: 6.2 --> 5.2 need help for export

there are many things that you need to keep in my nind before doing this. The new features/stages introduced in 6.2 and that were not in 5.2 would defenitely be a problem.

I assume you would have already thought about this. But worth mentioning I guess.
by raju_chvr
Tue Dec 16, 2003 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to pass stage variable onto after-stage subroutine
Replies: 3
Views: 1174

Re: How to pass stage variable onto after-stage subroutine

One way can be is write the Stage variable to a file and you can use that file as an input in the next stage.