Search found 15603 matches

by ArndW
Fri Dec 07, 2012 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error "The configuration does not contain the invoking
Replies: 4
Views: 1504

After putzing around for an hour and shortly before I was going to recommend re-installation I found that during the copy of our various configuration files from the development system to the test sysstem somehow an extraneous "?" character had made its way into the files and this syntax e...
by ArndW
Fri Dec 07, 2012 6:37 am
Forum: General
Topic: Could not load nls
Replies: 2
Views: 1330

Where and when are you getting the error message "could not load NLS"?
by ArndW
Fri Dec 07, 2012 6:36 am
Forum: General
Topic: Not able to save jobs in same name
Replies: 3
Views: 1459

While the old DataStage repository uses a derivate of the UniVerse database, which is case sensitive, the new repository uses the settings of whatever the underlying database is. In your case I am guessing that the second database has been installed with a setting of "case insensitive", in...
by ArndW
Wed Dec 05, 2012 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error "The configuration does not contain the invoking
Replies: 4
Views: 1504

Error "The configuration does not contain the invoking

I've got a strange error situation here: One of the admins installed DataStage 8.7 today, on a Windows machine named "SADAC560". The configuration fiel specifies APT_PM_CONDUCTOR_HOSTNAME = "SADAC560" but jobs fail to run, or compile. the value of the command line "uname -n&...
by ArndW
Wed Dec 05, 2012 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to do the bulk loading in Dataset in datastage
Replies: 2
Views: 1067

There is only 1 way to populate a dataset - from a DataStage job using the dataset stage. One can copy or dump from a dataset using "orchadmin" from the command line.
by ArndW
Tue Dec 04, 2012 12:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid character(s) found converting Unicode string to code
Replies: 6
Views: 11705

I don't see how that option can affect this error, since the problem is a data conversion one and has little to do with metadata. You can suppress messages using the message handler, but that is not the recommended route. Since ASCL-1252 (which is your basic windows code page) cannot represent this ...
by ArndW
Tue Dec 04, 2012 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incremental Load
Replies: 2
Views: 1021

The CDC Stage will give you the code for each of the two records to tell you which source it comes from and what the type of change is, using that you can decide which record to keep or to drop in a stage after the CDC.
by ArndW
Tue Dec 04, 2012 6:15 am
Forum: General
Topic: Compilation not reflecting
Replies: 5
Views: 1247

Whenever I get that genruntime compile error in only one job I make a copy of that job, delete the original, rename the copy and then the force compile works. I just assume that somehow the internal state of the job is messed up for the compilation process but not broken enough to prevent a copy to ...
by ArndW
Tue Dec 04, 2012 6:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid character(s) found converting Unicode string to code
Replies: 6
Views: 11705

The 0xFFFD Unicode character that you read from Oracle using UNICODE (http://www.fileformat.info/info/unicode ... /index.htm) does not have a mapping into the DataStage character set ASCL_MS1252; hence your warning message.
by ArndW
Mon Dec 03, 2012 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time validation with AM/PM
Replies: 6
Views: 3176

Craig - I see your post and comments but have to admit that it at first confused me. If you have a data type of "date", "time" or "timestamp" they are, per definition (unless null) valid since they couldn't have been inserted into the data type otherwise and these 3 dat...
by ArndW
Sun Dec 02, 2012 12:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time validation with AM/PM
Replies: 6
Views: 3176

You cannot use the format of a date, time or datetime with the IsValid() function.
These are binary data types, and the format is for converting this to or from a display format.
by ArndW
Sun Dec 02, 2012 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data validation issue
Replies: 6
Views: 1783

The solution to the membership problem is the preferred method, but in this case the important part of the answer is visible.
by ArndW
Sun Dec 02, 2012 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data validation issue
Replies: 6
Views: 1783

The IsValid function takes 2 parameters, you have specified 3.
Perhaps this was your intent

Code: Select all

If IsValid('date',StringToDate(Mylink.evDate[1,4]:"-":Mylink.evDate[5,2]:"-":Mylink.evDate[8,4], "%yyyy-%mm-%dd")) Then 1 Else 0
by ArndW
Sat Dec 01, 2012 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get the result in Transformer particular letters
Replies: 4
Views: 1523

Thanks Ray, I only looked at the first line and thought that the OP wanted only to remove numbers from a string; upon re-reading I saw that what I posted was incomplete. I like your solution, I don't recall having seen that before - it is elegant and simple and quick.
by ArndW
Sat Dec 01, 2012 4:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get the result in Transformer
Replies: 11
Views: 3593

This would a good example of either a PIVOT or, if you have 8.7, use of transform stage looping.