Search found 6797 matches

by DSguru2B
Tue Apr 24, 2007 10:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing parameter to oracle enterprise stage
Replies: 2
Views: 696

Nothing specific. You have to code/design it. One way would be to read the sequential file and pass the appropriate parameter value via a small routine. This routine can be called while specifying the value of the parameter in the job activity in a sequence job. Or you can code your custom Job Contr...
by DSguru2B
Tue Apr 24, 2007 10:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing 2 dates in a Filter stage
Replies: 5
Views: 1603

What is the date format?
by DSguru2B
Tue Apr 24, 2007 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation
Replies: 3
Views: 872

There is a matrix chart for supported platforms on IBM's website. You can check there.
by DSguru2B
Tue Apr 24, 2007 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C integration with Datastage
Replies: 4
Views: 1261

Does your code work when run from command line? I see a bunch of problems already. scanf() is to read from stdin. But you are reading from variables so you need sscanf(). Similarly you are writing back to a variable and hence you will use sprintf() instead of printf(). As for the error, how are you ...
by DSguru2B
Tue Apr 24, 2007 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract from DB, Transform and Load to Another DB
Replies: 7
Views: 1712

Datasets and flat files are copies of the source. So in case of a failure, no need to go to the source again. These data replicas are as presistent as any table. A staging table, technically, is just another database file on another server.
by DSguru2B
Tue Apr 24, 2007 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running job
Replies: 3
Views: 648

Are you using any stage variables of type int or decimal? If yes, what is the Initial value that you have specified?
by DSguru2B
Mon Apr 23, 2007 10:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we remove job category from one place to another ?
Replies: 2
Views: 1002

Easiest in the Manager. Create a new one, move jobs there by selecting all jobs from a particular folder. Once the move is complete, delete the previous one.
by DSguru2B
Mon Apr 23, 2007 10:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Collector's performance
Replies: 7
Views: 1133

The job is clearly screaming out that it cannot open the file. Please double check the path again. Usually there is a character shift here and there. Its case sensitive too you know.
by DSguru2B
Mon Apr 23, 2007 10:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00900: invalid SQL statement
Replies: 9
Views: 4996

O yea, left out the `ed from experienced. O well, potayto potaato.
by DSguru2B
Mon Apr 23, 2007 7:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00900: invalid SQL statement
Replies: 9
Views: 4996

Now thats what you call, experience :wink:
by DSguru2B
Mon Apr 23, 2007 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unlock Jobs in Unix
Replies: 4
Views: 1998

Just a way to get your detailed explanation :wink:
by DSguru2B
Mon Apr 23, 2007 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Hangs
Replies: 7
Views: 2185

Is anyone updating the table at the same time your running your job? Get in touch with your DBA, run your job and ask your DBA to monitor whats going on at the database level. He/She will be able to tell you whats going on.
by DSguru2B
Mon Apr 23, 2007 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filtering out records based on UNICODE values
Replies: 2
Views: 950

Nick's code will not work if your input is a string. You need a recursive mechanism to check for ascii values if you want to go down that path.
Do you have NLS installed? If you view these characters at the OS level, how do they show up?
by DSguru2B
Mon Apr 23, 2007 1:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Collector's performance
Replies: 7
Views: 1133

Does the file 't_WSW_WSStatsCreation_InputStat_20070421030859.dat' exist in /dsProjects/data/ISLP/Temp_Files? If yes then do you have read permissions on it?
by DSguru2B
Mon Apr 23, 2007 1:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Collector's performance
Replies: 7
Views: 1133

I say get rid of the link collector and load your feed to flat files and in an after job subroutine cat all the files at the OS level. Or if you insist on using the link collector, then make sure that all input links are executed at the same time or else it will time out.