Search found 4992 matches
- Mon Jan 10, 2005 9:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: performance issue
- Replies: 8
- Views: 4172
I figured it was you guys, I didn't know you went the Windoze route. When you setup the DSN in the ODBC data sources tab on the Windoze server, you picked the ODBC driver for progress. A lot of the ODBC drivers have a bunch of timing values you can monkey with. Arnds suggestion to put a constraint o...
- Mon Jan 10, 2005 4:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: performance issue
- Replies: 8
- Views: 4172
If your Progress server is hosting DataStage as well, you could be getting into some resource contention. If they're separate hosts, then you're getting into some communications jam/timeout between machines. When I've seen this problem before, the fix was in the ODBC connection manager and you have ...
- Mon Jan 10, 2005 9:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Description of DataStage Errors
- Replies: 7
- Views: 2291
Are you talking about runtime errors or compilation errors or designtime errors? Your question is too broad. Runtime errors are limited to either design errors (filename is wrong, file format is invalid, sql doesn't work, etc) or DS bugs. The list of design errors is nearly infinite. The list of com...
- Mon Jan 10, 2005 8:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parameters not passed to an ExecuteCommand Stage
- Replies: 5
- Views: 1650
- Fri Jan 07, 2005 11:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine gets locked
- Replies: 12
- Views: 3230
Its main purpose is to clear out locks where the underlying process has died. Given the volume of posters looking for ways to release locks indicates the daemon is not too quick on the draw for finding these ophaned locks and releasing them. Since you can do it yourself much faster, why wait or use ...
- Fri Jan 07, 2005 10:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine gets locked
- Replies: 12
- Views: 3230
- Fri Jan 07, 2005 8:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job set the own parameters
- Replies: 8
- Views: 3835
- Fri Jan 07, 2005 7:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSExecute to connect to oracle and update table...
- Replies: 2
- Views: 1627
I'd be 99% sure quotes are being messed with by DS when it tries to execute the command. Put the entire command into a shell script and execute the shell script. Pass parameters like the credentials to the script and have the script manage executing sqlplus appropriately. I do this method and it alw...
- Thu Jan 06, 2005 10:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing to database tables using routines
- Replies: 14
- Views: 3478
You need to state your database. If you're using Oracle, then you don't even need to use DataStage. You need to learn sqlldr. It has every piece of functionality you have described, plus it uses native connectivity and has the highest performing loading rate for Oracle. You can use sqlldr to create ...
- Thu Jan 06, 2005 3:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can you see the difference between same DS objects?
- Replies: 4
- Views: 1389
- Thu Jan 06, 2005 3:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Call a stored procedure from within a routine
- Replies: 4
- Views: 1120
You can, should you is a judgement call. It's more complicated than simply using sqlplus wrapped in a shell script. You don't need the shell script as you can just use DSExecute and run sqlplus, but you get into the need to pass in a log of information on the command line. It's easiest to write a sh...
- Thu Jan 06, 2005 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pulling the most recent file out of a directory
- Replies: 10
- Views: 5074
- Thu Jan 06, 2005 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Call a stored procedure from within a routine
- Replies: 4
- Views: 1120
- Thu Jan 06, 2005 12:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pulling the most recent file out of a directory
- Replies: 10
- Views: 5074
- Thu Jan 06, 2005 12:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC stage
- Replies: 6
- Views: 2077
There are only two ways to talk to any database: using native database connectivity or third party. ODBC is third part driver connectivity. All ETL tools have some mechanism to either use native connectivity supplied by the database manufacturer or support use of an ODBC driver. DataStage can use bo...