Search found 53125 matches

by ray.wurlod
Thu Aug 10, 2006 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: search a job name
Replies: 8
Views: 2321

Open Director in Status view and unselect Show Categories in the View menu. Next time the Director refreshes it will show all jobs, sorted by name, in the one window. The category is in an adjacent column in the grid. Note that if you sort by Status (click in the grid header to sort) you have a quic...
by ray.wurlod
Thu Aug 10, 2006 9:30 am
Forum: Site/Forum
Topic: Slow Refresh
Replies: 7
Views: 3195

Slow Refresh

Is is just me/my network connection, or is DSXchange becoming slow to refresh, particularly on the two large forums? Other web sites fly along, but DSXchange can take whole seconds (sometimes even tens of seconds) to get to the next screen, particularly on functions such as Reply. This behaviour is ...
by ray.wurlod
Thu Aug 10, 2006 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format for Stringtodate()
Replies: 5
Views: 2615

So that 1052003 is the 105th day of the year 2003. The correct date format string would be "%ddd%yyyy".
by ray.wurlod
Thu Aug 10, 2006 8:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: This is a Unix Shell Script Qusn
Replies: 9
Views: 2227

Ah, no-one mentioned ls arguments. For each of the three (user, group, other) pieces, the mode (permissions) map to an octal numeric value. 4 = read, 2 = write and 1 = execute. Therefore, 755 would show up as rwxr-xr-x (a fairly common combination). The chmod command has a letter-based syntax as wel...
by ray.wurlod
Thu Aug 10, 2006 8:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capture job start time and end time
Replies: 2
Views: 1084

Only the current start timestamp is available (in @DATE and @TIME).

The last start and end times must be obtained through DataStage API function DSGetJobInfo() or the log interrogation functions.
by ray.wurlod
Thu Aug 10, 2006 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating Mainframe jobs
Replies: 5
Views: 1803

It's by far the most common solution. It means you don't have to be given access to their precious mainframe!
by ray.wurlod
Thu Aug 10, 2006 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating Mainframe jobs
Replies: 5
Views: 1803

It can be done, but the politics of getting access to the mainframe system usually means that they produce an extract (using a COBOL program or SQL) into a text file and FTP that to some location that you can process. You do not specifically require a DataStage mainframe job. Of course, if you do ha...
by ray.wurlod
Thu Aug 10, 2006 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job compilation taking more time(more than 5 hours)
Replies: 2
Views: 1172

Does the compilation actually finish, or are you saying that it still appears to be compiling after five hours? If the latter, it may be simply that you have lost the connection between the server and the client, and the job actually did finish compiling on the server. It is a parallel job or a job ...
by ray.wurlod
Thu Aug 10, 2006 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project Corruption
Replies: 8
Views: 2258

Look at the final ten or so lines of errors.txt (or of report.txt).
by ray.wurlod
Thu Aug 10, 2006 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC table definition error
Replies: 3
Views: 941

Have you defined the DSN in the $DSHOME/.odbc.ini file?
by ray.wurlod
Thu Aug 10, 2006 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: This is a Unix Shell Script Qusn
Replies: 9
Views: 2227

The second form is a "regular expression" and can not be used in the command position of a command.

A Google search on UNIX "regular expression" returns over 1 million hits. One of the best is this one.
by ray.wurlod
Thu Aug 10, 2006 6:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in hash file creation
Replies: 7
Views: 1871

You need to be on the server machine. Change directory to your project directory and execute the given commands there. An alternative is to use the Administrator client command window. In that case the UNIX commands are each "wrapped" with an SH verb. SH -c "rm -rf hashedfile" SH -c "...
by ray.wurlod
Thu Aug 10, 2006 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: find a job based on job creation date
Replies: 5
Views: 1652

Or, even better SELECT INSTANCE, CREATOR FROM DS_AUDIT WHERE CLASS = '2' AND DTC > '<<Earliest date,(D)>>'; DS_AUDIT is a DataStage table that records the date/time and by whom each object was created, modified and deleted. It has no exposure in any of the clients, so you need to execute a q...
by ray.wurlod
Thu Aug 10, 2006 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update the next row depending on the values of previous row
Replies: 4
Views: 1560

Yes it can, and the methods can be found by searching the forum. The technique is to use stage variables to "remember" the values from previous row and to compare the same with the current row.

I think you also need to be doing a similar comparison on MemTyp, based upon your description.
by ray.wurlod
Thu Aug 10, 2006 4:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal Shift
Replies: 3
Views: 1329

Several possibilities. For example: InLink.TheColumn / 1000 Fmt(InLink.TheColumn, "6R3") Oconv(InLink.TheColumn, "MD3") Left(InLink.TheColumn, Len(InLink.TheColumn)-3) : "." : Right(InLink.TheColumn, 3) Fmt(InLink.TheColumn, &...