Search found 53125 matches
- Thu Sep 18, 2003 6:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Flattening UV multivalues
- Replies: 4
- Views: 1233
Make sure that all associations of multivalued fields are properly defined in the file dictionary (as well as in the column metadata that DataStage uses). In this case, BASIC is almost certainly not the most efficient method. If you're using a hashed file stage or a UV stage, choose "normalize on" a...
- Thu Sep 18, 2003 4:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencer issue in PX
- Replies: 4
- Views: 1556
- Thu Sep 18, 2003 4:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Setting User Status
- Replies: 4
- Views: 1016
- Thu Sep 18, 2003 4:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC License
- Replies: 1
- Views: 900
And, you will also find, the driver no longer works. The drivers supplied with DataStage are licensed only for DataStage components (e.g. ODBC stage) to use. The licence does not cover use via BCI functions. As the message says, you need to purchase a licence if you wish to continue to use the drive...
- Wed Sep 17, 2003 4:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Connection from DS 5.2 server to DS 6.0.1 Server
- Replies: 13
- Views: 3085
The NLSMODE parameter in the uvconfig file turns NLS on or off. You need to regenerate the disk shared memory segment image (uvregen) then stop and re-start the DataStage services. But what is it you're trying to accomplish? As I posted earlier, you may be able to use BCI functions to communicate be...
- Wed Sep 17, 2003 4:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Job 320 Phantom 2330
- Replies: 3
- Views: 1337
Au contraire! You will not get this message unless you have NLS installed. And it means exactly what it says; one or more characters found in the data that could not be found in the NLS map for that link or channel. You might try changing the map to NONE to investigate what's happening, since it's o...
- Tue Sep 16, 2003 4:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Constraint
- Replies: 2
- Views: 466
- Tue Sep 16, 2003 4:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: The DataDirect ODBC Driver Warning
- Replies: 3
- Views: 1782
The drivers give 30 days "free" use, then start generating this warning. The only way to turn off the warning, if you want to continue to use the drivers, is to buy the licensing. This has been bought by Ascential to allow the drivers to be used by ODBC stage types and the DS_CONNECT command, but fo...
- Tue Sep 16, 2003 4:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete command on Telnet
- Replies: 4
- Views: 574
DELETE.FILE work like DROP TABLE. Including the DATA keyword serves to preserve the metadata (= file dictionary), but still destroys the structure in which data rows are stored. To delete rows (records) from a hashed file, you can use DELETE (either SQL or RetrieVe verions), or CLEAR.FILE to clear a...
- Tue Sep 16, 2003 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deleting hash files
- Replies: 2
- Views: 819
The command for deleting a hashed file depends on how it was created and whether it's static or dynamic. And, possibly, the operating system (UNIX or Windows). If it was created with CREATE.FILE, it is deleted with DELETE.FILE. If it was created with CREATE TABLE, it is deleted with DROP TABLE. If i...
- Tue Sep 16, 2003 4:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom Error 948
- Replies: 6
- Views: 1197
Take a look at the file JOB.1730727197.DT.1304256656.TRANS1 in the subdirectory RT_BP13 in your project directory, and let us know what's happening at, and for a couple of lines either side of, line 175. This should shed some light on that "improper data type". These are usually caused by an "opaque...
- Tue Sep 16, 2003 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsgetlogsummary
- Replies: 2
- Views: 1344
- Tue Sep 16, 2003 1:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clearing job log
- Replies: 4
- Views: 995
- Tue Sep 16, 2003 1:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: MetaRecon and Integrity
- Replies: 1
- Views: 630
There's lots of material on Ascential's web site.
http://www.ascentialsoftware.com
In version 7 (now out), MetaRecon is called Profile Stage, and INTEGRITY is called Quality Stage.
Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
http://www.ascentialsoftware.com
In version 7 (now out), MetaRecon is called Profile Stage, and INTEGRITY is called Quality Stage.
Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
- Tue Sep 16, 2003 1:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file: stable or not?
- Replies: 3
- Views: 464
Reply to Q2 only: You can use SQL statements (INSERT, UPDATE or DELETE) on hashed files, provided that their column metadata are in place in their file dictionaries. A WRITE statement in BASIC performs a destructive overwrite of the record whose key value is specified. You can read the record for up...