Search found 4992 matches
- Thu Oct 05, 2006 7:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic program to monitor path
- Replies: 23
- Views: 6485
DSExecute has four arguments, the second being the command to execute. If you look at the original post I made, I constructed the unix command first in a variable and then used the variable as th second argument. Your usage is not correct. The UnixCmd line you posted is irrelevant if you are constru...
- Wed Oct 04, 2006 10:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Executing DS jobs
- Replies: 8
- Views: 2944
Jobs are compiled as subroutines, called by a "stub" program DSD.RUN executing from a DS Engine shell program (currently called uvsh. There is no separating jobs from the DS Engine. Furthermore, you'd lose all of the engine bin stuff, which is kind of needed. Furthermore, the projects must exist 'ca...
- Wed Oct 04, 2006 10:09 pm
- Forum: General
- Topic: Err - All available licenses in use : 77478-DSDES Limit=20
- Replies: 5
- Views: 6130
Licenses are held in a table/file server side. Your issue is that you must have at least 20 sessions logged in right now, or at least have that many defunct logins with active sessions. Consider doing a "ps -ef |grep dsapi" to get a look at current attached clients. Consider using kill to knock them...
- Wed Oct 04, 2006 1:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: cannot get exclusive access to log for job
- Replies: 1
- Views: 1827
Either a Director client somewhere is viewing the log, or there may be a lock on the log file itself. To verify, find out the internal job number and then list the current locks (search the forum for DS.TOOLS or the actual command list_readu). If you see RT_LOGnnn where nnn is the job number, then y...
- Wed Oct 04, 2006 7:57 am
- Forum: General
- Topic: Unix script - For loop not working with regular expr
- Replies: 2
- Views: 1976
- Tue Oct 03, 2006 11:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TNS names
- Replies: 5
- Views: 1882
- Tue Oct 03, 2006 9:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic program to monitor path
- Replies: 23
- Views: 6485
- Tue Oct 03, 2006 7:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: BLANK VALUES
- Replies: 7
- Views: 2073
- Tue Oct 03, 2006 7:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic program to monitor path
- Replies: 23
- Views: 6485
Using DS Director, from menu Tools --> Batches --> New. In the blank job control canvas, type in this: UnixCmd="hostname" CALL DSExecute("UNIX", UnixCmd, ScreenOutput, ReturnCode) CALL DSLogInfo("The UnixCmd shows this to the screen -->":ScreenOutput, "Test") CALL DSLogInfo("The UnixCmd had this exi...
- Tue Oct 03, 2006 7:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic program to monitor path
- Replies: 23
- Views: 6485
- Mon Oct 02, 2006 2:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to start a Sequencer from Mainframe
- Replies: 5
- Views: 2597
If you absolutely wish the mainframe processes to initiate the load, and avoid a scheduler, then you simply need to start the jobstream using the command line program dsjob on the unix server. You can invoke this using any means your mainframe has for running remote programs on other machines. In un...
- Mon Oct 02, 2006 12:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to use Hash Files (server Jobs) in Parallel Jobs?
- Replies: 6
- Views: 2719
The easiest way is to write the hashed file to a sequential file and then use a PX job to read that sequental file into any of the lookup mechanisms available in PX. Consider using a container on the hashed to sequential portion and embed inside the PX job. You want to make sure the data is moved in...
- Fri Sep 29, 2006 1:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How To Import Universe Tables?
- Replies: 1
- Views: 1190
- Fri Sep 29, 2006 1:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Does Universe Need SQL (layer) Installed to be accessed?
- Replies: 6
- Views: 2780
Keep in mind that DataStage uses a code branch of the Universe product, so it's not 100% compatible. Access is done use the BCI connectivity. All you need to do is setup the odbc.ini file and the uvodbc.config file to gain access. Everything is documented under your Start Menu-->Ascential DataStage-...
- Thu Sep 28, 2006 6:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datastage limits
- Replies: 2
- Views: 1349
One job can contain so many stages that it completely overwhelms the hardware and operating system, so it's not a measure of the number of jobs but the number of processes. You post in the Server forum, but designated parallel, so I'm giving you a generic answer that works for both. In parallel desi...