Search found 15603 matches

by ArndW
Wed Jan 11, 2006 11:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Corruption problem
Replies: 8
Views: 2836

yes, the engine needs to be up while doing the options (2) and (4) and you should ensure that no users are in DataStage.
by ArndW
Wed Jan 11, 2006 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing number of DB uploaded rows
Replies: 9
Views: 1257

You get the job handle using DSAttachJob(YourJobName,DSJ.ERRNONE)
by ArndW
Wed Jan 11, 2006 11:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Corruption problem
Replies: 8
Views: 2836

Sankar, you will need to start numbers (2) to rebuild the indices and (4) to check integrity of job files. Jim, the DataStage $DSHOME directory has a file called "dsdlock.config" with a line that reads either start=1 or start=0 to control whether or not the lock daemon is fired off when DataStage is...
by ArndW
Wed Jan 11, 2006 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error viewing data from Oracle
Replies: 18
Views: 4722

... APT_ORCHHOME\bin ;C:\Oracle\Ora81\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:\PROGRA~1\MKSTOO~1\bin;C:\PROGRA~1\MKSTOO~1\bin\X11;C:\PROGRA~1\MKSTOO~1\mksnt;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;;C:\Ascential\ODBC ... The text in red looks wrong, it needs to contain the ...
by ArndW
Wed Jan 11, 2006 10:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDate format
Replies: 3
Views: 1312

PX is very picky about formats; the date formatting you give *must* be fixed length and your variable length entries won't work. You will need to change your date string into one of the correct format and then do the date conversion. You can use the FIELD(MY_DATE_STRING,'/',1), ...2) and ...3) to ge...
by ArndW
Wed Jan 11, 2006 10:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Corruption problem
Replies: 8
Views: 2836

A job that just hangs there forever without doing anything is most likely waiting on a lock - any playing around with "kill -9" or other hanky-panky with the engine process might lead to a lock left over that isn't going to get cleared. It looks like the lock is on the hashed file, which is why runn...
by ArndW
Wed Jan 11, 2006 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing number of DB uploaded rows
Replies: 9
Views: 1257

Your simplest method would be to write your own function "GetDBRows(Jobname,LinkName,StageName)" which uses the appropriate DSGetLinkInfo() call to return that number of rows; and use the RoutineActivity stage in your sequence. This might better have beend posted as a new thread - makes it easier fo...
by ArndW
Wed Jan 11, 2006 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatenate selected cols into one not hardcoding cols
Replies: 8
Views: 1492

I've used what Ken described many times in jobs to do this; plus this interim file should be declared as a pipe to avoid I/O and speed up processing.
by ArndW
Wed Jan 11, 2006 9:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to change DS7 key, once it has expired !!!
Replies: 10
Views: 3192

no comment.
by ArndW
Wed Jan 11, 2006 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecSH(Not getting the results as expected)
Replies: 3
Views: 1025

sundar,

could you add some echo or type commands to your script that print out the parameters as the script sees them? Perhaps the command isn't being called the way you expect it; i.e. the parameters aren't resolved correctly or there is an issue with a relative or absolute path.
by ArndW
Wed Jan 11, 2006 2:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple tables loaded into single target table
Replies: 5
Views: 1655

How about using Occam's Razor and going for the option to join all 3 tables in Oracle and passing that to DataStage for further processing?
by ArndW
Wed Jan 11, 2006 2:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error accessing Parallel engine
Replies: 5
Views: 2979

Tasneem, what is your value for the APT_ORCHHOME environment variable? Also, can you run the command orchadmin check? If not then you do need to set up your environment correctly. Also, it might help if you told us that this is a new installation, or that it has stopped working since some change, or...
by ArndW
Tue Jan 10, 2006 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage scheduler for business week days
Replies: 8
Views: 2114

Jim, that's a good approach; since there are any number of UNIX utilities available to return you the holiday status and it's easy to parse the result of an external command from a DS Basic program. Keeps the scheduler simple and the overhead of calling up a sequencer or job is not that high if it i...
by ArndW
Tue Jan 10, 2006 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequentail file
Replies: 6
Views: 1577

You will need to tell us why these rows are getting rejected before anyone can come up with suggestions for you.
by ArndW
Tue Jan 10, 2006 1:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage scheduler for business week days
Replies: 8
Views: 2114

You can schedule the job to run Mondays through Fridays at the specified intervals; but the AT scheduler doesn't know anything about the calendar and it's relation to holidays. If you need a job to specifically not run on weekdays that are holidays in the place where the server resides you will need...