Search found 4992 matches
- Wed Jan 25, 2006 12:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between a lookup and join
- Replies: 2
- Views: 838
Joins have specific meaning to relational database processing. There are types: inner, outer, left, right, full, etc. Within some of those types there's a concept of a driving (driver) table, whereby that driver table ultimately decides how many target rows will end up in the result set (minus any f...
- Fri Jan 20, 2006 9:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC stage - Column name with pound sign (#) not accepted
- Replies: 17
- Views: 13120
- Thu Jan 19, 2006 4:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Get results from a Windows .exe from a UNIX box
- Replies: 5
- Views: 1031
- Thu Jan 19, 2006 3:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ds_uvput() - Write failed error
- Replies: 1
- Views: 963
- Wed Jan 18, 2006 3:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Argument Value in a single delete statement
- Replies: 8
- Views: 1785
- Wed Jan 18, 2006 3:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-00936: missing expression
- Replies: 4
- Views: 32945
I'm saying DataStage is not exercising your query. The viewing of reference lookup data is meant to repeatedly fetch a lookup row during processing. By pressing the "View Data" button, DataStage is NOT generating a list of values to repeatedly feed the query so that rows return. How would it know wh...
- Wed Jan 18, 2006 2:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: comparison of timestamp
- Replies: 4
- Views: 829
Is your constraint in this syntax?
Code: Select all
inlink.startdate <= mytestdate and mytestdate <= inlink.enddate- Wed Jan 18, 2006 1:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-00936: missing expression
- Replies: 4
- Views: 32945
This is a reference lookup, right? When pressing view data, don't you think this query requires the "= :1 " part of the WHERE clause to be given a value, so that it can return a row? But you're expecting a bunch of rows, right? So which rows? Your brain should be tingling right about now. The answer...
- Wed Jan 18, 2006 1:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to acces a database table with BCI?
- Replies: 11
- Views: 3706
- Wed Jan 18, 2006 1:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Argument Value in a single delete statement
- Replies: 8
- Views: 1785
- Wed Jan 18, 2006 1:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequential File Issue
- Replies: 6
- Views: 1154
Don't bother with the surrogate key generator stuff, the file line number is sufficient and easy. If you already had the source data separated into discrete files, your only issue is to keep each file in original order, and keep rows separate. Since DS Server jobs read files in order and write them ...
- Wed Jan 18, 2006 12:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: creating multiple output record layouts based on rec type
- Replies: 15
- Views: 7714
Kenneth, Five containers suggests to me 5 passes through the data. This doesn't seem very efficient. For sake of discussion, if efficiency did not matter, then why not just grep the data for the specific record-type in each of 5 sequential stages? Where's the benefit of using containers? Can you el...
- Wed Jan 18, 2006 12:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: comparison of timestamp
- Replies: 4
- Views: 829
- Wed Jan 18, 2006 11:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid Argument Value in a single delete statement
- Replies: 8
- Views: 1785
Do other rows work, or is every row failing? Did you press the GetSQLInfo button on the ODBC stage properties tab? Can you take this row of data and run the DELETE statement yourself to see if the query works for this data? You know: DELETE FROM AITTRNEE WHERE ERROR_CODE = 0 AND TRAN_ID <= 183619 Wh...
- Wed Jan 18, 2006 11:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to acces a database table with BCI?
- Replies: 11
- Views: 3706
You do realize that the ODBC drivers that ship with DS are only licensed thru the ETL tools, and any direct usage via programming, which includes your DS BASIC programs, is not covered under the licensing agreement? This means you will get 30-day usage warning messages on every query executed, and t...