Search found 15603 matches

by ArndW
Tue Dec 30, 2008 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stopping DS gracefully
Replies: 3
Views: 1550

What is the state of the connection as shown by netstat -a? On some OS's these hanging connections will timeout automatically after a lengthy period (I think it might be 45 minutes by default on AIX) and on others, notably HP-UX, these sessions will not timeout and a reboot might be the only option.
by ArndW
Tue Dec 30, 2008 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Field Is Having Extra Space
Replies: 9
Views: 2744

A decimal field has no internal signs or spaces so you are OK; your problem is when you wish to display that value, in which case you are displaying a string that has been converted from the decimal value. If this output is going to a sequential file, the value written is actually a VarChar or Char ...
by ArndW
Tue Dec 30, 2008 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date and Time of Last Successful Job Run
Replies: 7
Views: 2125

Ahh, when I responded I skipped over the "successful" keyword, I thought the poster just wished the last run information. As stated, this information is not directly available and perhaps not even available at all if the log has been cleared or purged. To date I've implemented systems wher...
by ArndW
Tue Dec 30, 2008 5:49 am
Forum: General
Topic: Dataset can be used as source
Replies: 5
Views: 1370

How you name your dataset file is not critical to opening it; if you created a dataset called "mypictures.jpg" then you will be able to view it if you use the same name when reading. In your case you are not reading the same file that you wrote.
by ArndW
Tue Dec 30, 2008 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slowly changing dimension problem
Replies: 3
Views: 1313

The error indicates that your job expects a fixed length of data, but that the data itself is different from the definition (it is longer). What fields have you defined?
by ArndW
Tue Dec 30, 2008 5:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date and Time of Last Successful Job Run
Replies: 7
Views: 2125

I don't have access to the documentation here to give you the exact options, but the command is DSGetJobInfo()
by ArndW
Tue Dec 30, 2008 5:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: am facing the problem when viewing data from seq file
Replies: 1
Views: 831

Why did you open another thread when you have an active thread with the same question and also a couple of responses here.
by ArndW
Mon Dec 29, 2008 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UTF-8 Database not accepting Special characters
Replies: 4
Views: 1971

Too bad you restricted your query to Ray and Craig.
by ArndW
Mon Dec 29, 2008 8:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UTF-8 Database not accepting Special characters
Replies: 4
Views: 1971

Too bad you restricted your query to Ray and Craig.
by ArndW
Mon Dec 29, 2008 8:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs Hanging
Replies: 6
Views: 1835

I am not certain what is happening in your case. Is your repository on the same machine as the Datastage server engine? If not, could you stop and restart both the DataStage engine as well as the database?
by ArndW
Mon Dec 29, 2008 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs Hanging
Replies: 6
Views: 1835

Try doing a "truss-p <pid>" on the processes to see which, if any, system calls they are doing. Perhaps they are waiting on database locks in the repository. Also, try creating a dummy server job or job sequence and see if that has the same problems.
by ArndW
Mon Dec 29, 2008 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE ENVIRONMENT VARIABLES
Replies: 1
Views: 887

What compiler error are you getting in (2)? Typically your compiler options will be the same on similar machines (same OS and same version and same compiler).

The impact of changing compiler options is not part of DataStage but that of the c++ compiler and linker.
by ArndW
Mon Dec 29, 2008 5:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored Procedure Date issue
Replies: 1
Views: 1177

My guess is that you are not supplying a full 4 digit year in the returned value, and DataStage is using the setting of $APT_DATE_CENTURY_BREAK_YEAR to interpret that date as 2000 instead of 1900.
by ArndW
Mon Dec 29, 2008 5:45 am
Forum: General
Topic: DSD.UVOpen rm: cannot remove <file>
Replies: 2
Views: 1437

Although the path looks strange as it is not absolute, the file starts with ".nfs" which might indicate a NFS mounted device. What sort of hashed files are you writing to in this job? Is this path present on your system and if so, what are your user's access rights to the file?
by ArndW
Mon Dec 29, 2008 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing dsjob in Command Line Interface
Replies: 8
Views: 7072

As MarkB has already pointed out, the error message is a DataStage engine one, meaning that the command was entered at the ">" prompt of the engine, which most people will do when they enter an Admin command interface line. The "dsjob" executable is located in $DSHOME/bin and sho...