Search found 53125 matches

by ray.wurlod
Mon Jun 02, 2014 4:07 pm
Forum: General
Topic: Gracefully shutting down DataStage.
Replies: 13
Views: 12981

Basically SessionAdmin.sh -kill_user_sessions exists to disconnect any actively connected clients.
by ray.wurlod
Mon Jun 02, 2014 4:03 pm
Forum: IBM QualityStage
Topic: Conversion Table Problem
Replies: 3
Views: 4147

To continue Robert's theme, the thing you're looking for in the New menu is Lookup Table (TBL), which you will find under Data Quality.

Once the new table has been created, you double click to open it in your selected editor (default Notepad).
by ray.wurlod
Mon Jun 02, 2014 12:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Sequence Number for the Duplicate Enteries
Replies: 4
Views: 1776

U is a fairly common Burmese name. At least one of our posters is named U. The second person personal pronoun in English is spelled "you". Not "u". Please strive to maintain a professional standard of written English on DSXchange. It is not a mobile telephony device, and you are...
by ray.wurlod
Thu May 29, 2014 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NULL Handling in transformer
Replies: 12
Views: 7202

How is null actually represented in your Sequential File stage (for example the Null Field Value property on the Format tab or in an extended column definition)?
by ray.wurlod
Thu May 29, 2014 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NULL Handling in transformer
Replies: 12
Views: 7202

... Input.column1=@NULL... As noted earlier, it is not legal to compare something against NULL. One should use the IsNull() function to determine whether a field is (contains) null. In server jobs there exists a system variable (@NULL.STR) that contains a string representation of the internal forma...
by ray.wurlod
Wed May 28, 2014 10:54 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can not view report on Information Analyzer 9.1
Replies: 4
Views: 3828

Not all database types are supported for IADB.
by ray.wurlod
Wed May 28, 2014 10:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Install 9.1.2 IIS bigdata file stage does not work
Replies: 8
Views: 1844

:idea:
It would have helped a quicker diagnosis had you mentioned the Citrix connection at the outset.
by ray.wurlod
Wed May 28, 2014 10:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01722: invalid number - Track Particular record causing
Replies: 5
Views: 5232

That's what the reject link is for!

Note, however, if your load method is Bulk, then you won't direct rows into the reject link. Instead, for Oracle, you will need to examine the log and bad files.
by ray.wurlod
Wed May 28, 2014 7:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01722: invalid number - Track Particular record causing
Replies: 5
Views: 5232

Does your target Oracle Connector stage have a reject link?
by ray.wurlod
Wed May 28, 2014 4:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata_Connector_20, RDBMS code 21032:
Replies: 1
Views: 1093

How have you set the following properties in the Teradata Connector?
Transaction mode
Client character set
Automap characterset encoding
by ray.wurlod
Wed May 28, 2014 4:42 pm
Forum: General
Topic: Semaphore Process Server/Parallel
Replies: 6
Views: 2434

@USER0 through @USER4 are system variables, not semaphores. You can store values in them.

The 64 numbered semaphores (and that number is configurable in uvconfig) are simply places to wait (via LOCK command/statement).
by ray.wurlod
Wed May 28, 2014 4:39 pm
Forum: General
Topic: Unicode table
Replies: 2
Views: 783

There was, but it melted.
by ray.wurlod
Tue May 27, 2014 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change capture Stage
Replies: 1
Views: 1235

:idea:
A Char field cannot have a value of "".

Any change from a known value (even if "") to NULL is a change.
by ray.wurlod
Tue May 27, 2014 4:24 pm
Forum: General
Topic: Semaphore Process Server/Parallel
Replies: 6
Views: 2434

The DataStage Engine itself uses semaphores extensively to control various aspects of threading and locking, but I don't think this was the import of the question. The DataStage Engine also has available a set of public numbered semaphores that could be used for a similar purpose. I may have used th...