Search found 42189 matches

by chulett
Fri Mar 25, 2011 6:41 am
Forum: General
Topic: Creating reports from the command line
Replies: 5
Views: 1767

You could in earlier versions, I would imagine it still works in 8... one example.
by chulett
Thu Mar 24, 2011 7:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling DSSetParam(ST_DATE), code=-4 [ParamVal]
Replies: 8
Views: 7103

That should work fine I would think, give it a shot and let us know.
by chulett
Thu Mar 24, 2011 4:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database Sequencer and DB2EE Stage
Replies: 3
Views: 1366

If I did I would have posted it. Maybe later when I have some spare time to ponder it...
by chulett
Thu Mar 24, 2011 3:34 pm
Forum: General
Topic: Can i used DMLsentences in DS engine shell ?
Replies: 4
Views: 1669

The table doesn't exist in the project you are connected to. And you can't move anywhere in there where it will find anything other than DataStage objects.
by chulett
Thu Mar 24, 2011 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file corruption
Replies: 5
Views: 4481

D'oh, missed that.
by chulett
Thu Mar 24, 2011 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database Sequencer and DB2EE Stage
Replies: 3
Views: 1366

Fixed your job design for you - you need to use code tags not quote tags to preserve whitespace.
by chulett
Thu Mar 24, 2011 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file corruption
Replies: 5
Views: 4481

... but only for hashed files with a VOC record pointer. You'll need to manually create it for your pathed hashed files using SET.FILE, if I recall correctly.
by chulett
Thu Mar 24, 2011 6:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load Balancing in odbc.ini and does the oracle enterprise
Replies: 10
Views: 7020

Even with all that, in your shoes I would just stick with the devil you know - Oracle load balancing, especially if that's already working for you.
by chulett
Thu Mar 24, 2011 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To read Foxpro .DBF files
Replies: 12
Views: 7240

Right... look for a "dbase" driver, not anything that specifically says FoxPro.
by chulett
Thu Mar 24, 2011 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fetch seven days old data
Replies: 5
Views: 2134

Get it working outside of DataStage first. Surely there are DB2 savvy people there who can help you? Once you have it working, you can easily get it back into your job.
by chulett
Thu Mar 24, 2011 6:43 am
Forum: General
Topic: To run a job from Command line
Replies: 11
Views: 4090

What do you think 'bad param' might mean? The job does not have a parameter with that exact name, spelling and case.
by chulett
Wed Mar 23, 2011 9:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load Balancing in odbc.ini and does the oracle enterprise
Replies: 10
Views: 7020

Rather than mine, it would seem. Why not run some simple tests yourself? One example - put bad values in the odbc configuration file (things like hostname that exist in tnsnames) and see if the connection still works. If it does then you'll know it got what it needed from the tnsnames.ora entry. Fro...
by chulett
Wed Mar 23, 2011 9:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To read Foxpro .DBF files
Replies: 12
Views: 7240

saugat_1982 wrote:@ Craig - Requirement is to read from dbf files , no access to Foxpro DB .
So I am not sure, will just an "ODBC" be a solution ?
I've said it twice, I guess a third time won't hurt - Yes. AFAIK, you just need the right ODBC driver.
by chulett
Wed Mar 23, 2011 9:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fetch seven days old data
Replies: 5
Views: 2134

Assuming effdt is an actual date and BIzDate is a string, don't you need to do something more like:

Code: Select all

Select * from Temptable where effdate > date('#BIzDate#') - 7 days and effdate <= date('#BIzDate#')
:?
by chulett
Wed Mar 23, 2011 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load Balancing in odbc.ini and does the oracle enterprise
Replies: 10
Views: 7020

My understanding is that it needs it because it needs it, that's just the way it works. And while you may have documented things like the hostname (etc) in the odbc file I don't believe they are actually used. Some of this may depend on if you are using the 'thick' or 'thin' drivers as well, I'm hon...