Search found 53125 matches

by ray.wurlod
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...
by ray.wurlod
Thu Sep 18, 2003 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer issue in PX
Replies: 4
Views: 1556

Check out the help on DSAttachJob function. By default, in job sequences, this is set so as not to propagate back to controlling jobs when a controlled job fails. You can change the second argument so that it does.

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
Thu Sep 18, 2003 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting User Status
Replies: 4
Views: 1016

I'm a bit confused on this one.
You (eventually) call DSSetUserStatus to store the user status value?
On what evidence do you assert that "it does not work"? How are you attempting to retrieve the user status value for that job?

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
Tue Sep 16, 2003 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Constraint
Replies: 2
Views: 466

Just for variety you might try a MATCHES operator. For example:
link1.EmployeeNum MATCHES "3X'5'0X":@VM:"3X'8'0X" And Not(IsNull(link1.EmployeeDept)) And Trim(link1.EmployeeDept) > " "

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
Tue Sep 16, 2003 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsgetlogsummary
Replies: 2
Views: 1344

The dsjob option you require is -logsum.
This gives you -type and -max sub-options.
It's all in the manual!

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
Tue Sep 16, 2003 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing job log
Replies: 4
Views: 995

Kim,

DELETE does not reclaim the space in a Type 30 file. It merely marks the space as free, able to be re-used. The only tools for reclaiming the space are RESIZE or COPY.

Regards,
Ray

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
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
by ray.wurlod
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...