Search found 42189 matches
- Fri Mar 25, 2011 6:41 am
- Forum: General
- Topic: Creating reports from the command line
- Replies: 5
- Views: 1767
- 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
- 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
- Thu Mar 24, 2011 3:34 pm
- Forum: General
- Topic: Can i used DMLsentences in DS engine shell ?
- Replies: 4
- Views: 1669
- Thu Mar 24, 2011 3:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashed file corruption
- Replies: 5
- Views: 4481
- 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
- Thu Mar 24, 2011 1:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashed file corruption
- Replies: 5
- Views: 4481
- 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
- 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
- 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
- Thu Mar 24, 2011 6:43 am
- Forum: General
- Topic: To run a job from Command line
- Replies: 11
- Views: 4090
- 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...
- 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
- 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#')- 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...