Search found 53125 matches

by ray.wurlod
Thu Jan 03, 2013 7:37 pm
Forum: General
Topic: Routine getting aborted
Replies: 4
Views: 1642

-1 is SQL.ERROR therefore the code must iteratively call SQLError() to remove error information from the environment, connection or statement handles until they are clean. In the process of doing so you will learn the true reason for the error code.
by ray.wurlod
Thu Jan 03, 2013 7:35 pm
Forum: General
Topic: .dsx file
Replies: 2
Views: 1291

If you feel you must change it, simply remove the association. Open Windows help and type the question "remove association". How it's actually done differs depending on what kind of Windows you're running, and I don't propose to cover all the possibilities here.
by ray.wurlod
Thu Jan 03, 2013 2:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise & ODBC Connector
Replies: 3
Views: 1404

IBM's advice is to prefer Connectors in all circumstances.
by ray.wurlod
Thu Jan 03, 2013 2:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination / Debug options
Replies: 3
Views: 1486

Maybe add some IsNull() and UnAssigned() checks on the function arguments.
by ray.wurlod
Thu Jan 03, 2013 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Unix script in Datstage Transformer
Replies: 12
Views: 6556

Code: Select all

Ans = Message
does not accomplish anything, as it's overwritten by

Code: Select all

Ans = Output
by ray.wurlod
Thu Jan 03, 2013 1:56 pm
Forum: General
Topic: Need help setting up LDAP authentication
Replies: 10
Views: 2897

If you're using SSL everything is encrypted.
by ray.wurlod
Thu Jan 03, 2013 1:55 pm
Forum: General
Topic: All available licenses in use
Replies: 22
Views: 7074

dsdlockd -p is a "probe" and should finish fairly quickly.
by ray.wurlod
Thu Jan 03, 2013 1:53 pm
Forum: IBM QualityStage
Topic: Recognization on junk
Replies: 8
Views: 4110

In my experience it is totally undesirable to dismiss any character as "junk" without consultation with the owners of the data.
by ray.wurlod
Thu Jan 03, 2013 1:51 pm
Forum: General
Topic: mq connection
Replies: 5
Views: 1812

When you install Information Server specify for the MQ plug-in (if you will be using this) that you want to install in client mode.

In DataStage jobs, whether using the MQ Connector or the MQ plug-in stage, specify the name of the MQ server and the queue name(s) that you need to process.
by ray.wurlod
Thu Jan 03, 2013 4:30 am
Forum: General
Topic: Triggers in a Sequence job
Replies: 11
Views: 2844

NOT(DSJS.RUNOK) is not a complete expression to use in a trigger. DSJS.RUNOK is a DataStage constant. Against what are you comparing it? Perhaps you need to lose the NOT and use a "not equals" operator.
by ray.wurlod
Thu Jan 03, 2013 4:28 am
Forum: General
Topic: Is it possible to compare two SJB files in command line?
Replies: 3
Views: 1376

None of which I'm aware, unless diff could do the job.
by ray.wurlod
Thu Jan 03, 2013 4:27 am
Forum: IBM QualityStage
Topic: Recognization on junk
Replies: 8
Views: 4110

These are Japanese characters. There are no rules in QualityStage for dividing characters based on the character sets to which each belongs. That's not really what QualityStage is for, although you might be able to create a heavily customised rule set. The preferred tool would be DataStage, and you'...
by ray.wurlod
Wed Jan 02, 2013 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Decimal to Bigint
Replies: 6
Views: 3917

For example you may want to specify how the number is to be rounded or truncated.

Of course, if your decimal number has a scale of 0, that point is moot.
by ray.wurlod
Wed Jan 02, 2013 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file read condition
Replies: 6
Views: 1894

Your assumption that "" is not a valid hashed file key is incorrect. Only NULL is not permitted as a key value or, depending on certain settings, key values containing item marks or field marks.
by ray.wurlod
Wed Jan 02, 2013 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file read condition
Replies: 6
Views: 1894

This is the RetrieVe query language (not SQL). Arnd's explanation is correct and complete, provided that you are aware that his D1 means the data field in position number 1 - navigation in hashed file data records is by field position rather than by name.