Search found 53125 matches
- Wed Jun 09, 2004 12:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Duplicate records in Source
- Replies: 10
- Views: 2510
It is not a general query regardless of engine, because the solution is different depending on whether you're using a server job or a parallel job. As Sanjay points out (in highly annoying text messaging abbreviations - what does your DataStage documentation look like, Sanjay?!!), there is a Remove ...
- Wed Jun 09, 2004 12:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error message from Job Control
- Replies: 2
- Views: 1044
Don't think so, Denzil. The post to which you referred argued for clearing the status file: if you can't open the status file there's no way you're going to be able to clear it. Sounds like the RT_STATUS1711 hashed file (the status file for job number 1711) has been deleted or there is a permissions...
- Wed Jun 09, 2004 12:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UV stage slow
- Replies: 6
- Views: 1791
No, not clear at all. A hashed file will take all records, but only the last will remain, since every update to a hashed file is a destructive overwrite. A UV stage will only take matching records if you use one of the slow, double-operation, rules (insert or update, or update or insert, or replace ...
- Wed Jun 09, 2004 12:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Synchronization error Resource
- Replies: 2
- Views: 1478
Reset the job, which will also reset the wave numbers, and this problem should go away. DataStage works with the concept of "resources" (in the RT_STATUS hashed files in the Repository, which is viewed by the Status view and Monitor view in Director, and by "show performance statistics" in Designer ...
- Wed Jun 09, 2004 12:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS start prompts for password
- Replies: 4
- Views: 1601
- Wed Jun 09, 2004 12:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Select Record ID from external file
- Replies: 5
- Views: 1415
You're right. The only way to execute a query against a hashed file is if that hashed file is known (in the VOC file). The SETFILE command can be used to establish the pointer, or you can write it directly to the VOC file (I know that you know the format of an "F" entry in VOC). Once that's there, y...
- Tue Jun 08, 2004 11:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How do i delete fields
- Replies: 15
- Views: 4933
- Tue Jun 08, 2004 8:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing parameters for columns
- Replies: 14
- Views: 6835
Guys, I think the target here is Teradata, and the stage type is the bulk loader. So column names are needed, because they are used to create the control script. That's why I suggested that the single-table (and therefore updatable) view might work. (Can you bulk load a view? Never tried.) Another t...
- Tue Jun 08, 2004 7:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inserting new ref. lkup instances while loading facts
- Replies: 5
- Views: 1422
Here's a stored procedure that creates an entry in the Batches table (one of the tables used for overall control of DataStage processing). At the end another stored procedure (uspBatchesSelectBatch) is executed to return the row that was just created. CREATE PROCEDURE uspBatchesCreate @BusinessUnit ...
- Tue Jun 08, 2004 6:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need info regarding DS internal file Types
- Replies: 3
- Views: 967
Not even all employees of Ascential have access to this information. Ascential's take is that you don't need to know - it works OK and that's all you need to know. Plus, they reserve the right to change it at any version. And it has been changed over time. If you are a first-line support person, the...
- Tue Jun 08, 2004 6:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing parameters for columns
- Replies: 14
- Views: 6835
Nothing in DataStage. Can you create views with the "correct" column names for the three errant tables in Teradata, and access the views rather than the tables from DataStage?
Code: Select all
CREATE VIEW GoodView(col1,col2,col3,col4,col5) AS
SELECT col1,col2,badcol3,col4,col5 FROM tablename;- Tue Jun 08, 2004 6:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataDirect ODBC error running Oracle Stored Procedure
- Replies: 2
- Views: 1401
- Tue Jun 08, 2004 6:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How do i delete fields
- Replies: 15
- Views: 4933
Is the original question something like how to drop a column from a database table? In this case, the knowledge is outside of DataStage or even ETL, and will depend on the specific database under consideration (in particular whether that database supports a DROP COLUMN or equivalent option with its ...
- Tue Jun 08, 2004 6:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Select Record ID from external file
- Replies: 5
- Views: 1415
What do you mean by "external" hashed file? You could certainly use a SETFILE, thereby gaining a VOC pointer (without which none of Kim's suggestions will work). Note, too, that Kim has used the Pick variant of the SELECT statement, and has not encapsulated it in a DSExecute call (or EXECUTE or PERF...
- Tue Jun 08, 2004 6:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: VOC Entry Details
- Replies: 7
- Views: 5588
Why do you want to know? VOC, in case you were unaware, is the vocabulary for the DataStage project. Not only the file pointers, but also every word or token (including references to routines) needed by DataStage are stored in the vocabulary. What you have asked - to be able to see the contents - is...