Search found 5168 matches
- Thu Jan 04, 2007 4:36 pm
- Forum: General
- Topic: dynamically passing tablename
- Replies: 8
- Views: 4862
- Thu Jan 04, 2007 4:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between Job Sequence and Batch
- Replies: 2
- Views: 1877
- Thu Jan 04, 2007 4:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: FTP using parallel job
- Replies: 5
- Views: 1728
- Thu Jan 04, 2007 4:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Client ip or name on which DS client is opened
- Replies: 15
- Views: 3258
10.267.160.49.29137 shows that 10.267.160.49 is your ip address and 29137 is the port through which the client is connected. You can cut the required field using cut command. If 10.267.160.49 is your vpn server address, it might be the case, all your client might be connected to vpn server and from ...
- Thu Jan 04, 2007 4:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: warning
- Replies: 3
- Views: 944
Hi, The log pretty much gives out the cause and the solution. You lookup LKP is trying to Converting nullable source to non-nullable result; fatal runtime error could occur . So you can use a modify operator to specify value to which null should be converted . Basically some of your field is been co...
- Thu Jan 04, 2007 2:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error while deleting a job
- Replies: 25
- Views: 9635
- Thu Jan 04, 2007 2:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error while deleting a job
- Replies: 25
- Views: 9635
Hmm... Try to create a copy of the same job and Delete it. If that works the underlying config file and pointers might be corrupted for that job. You can then try an ugly approach by deleting from DS_JBOS and DS_JOBOBJECTS and if you find the RT_CONFIG471 and its log file you can delete it from unix.
- Thu Jan 04, 2007 2:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Processing
- Replies: 11
- Views: 2250
Not necessarily, it can be even on Before/After SQLs. In the before SQLs of the input stage, you can insert the record with the start time as SYSDATE and current batch id as Jobparameter which is passed from JobSequence or the Main job control. And in the After job control populate you can populate ...
- Thu Jan 04, 2007 2:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Client ip or name on which DS client is opened
- Replies: 15
- Views: 3258
You can alternatively you to get the list of active users and process been used.
Or LIST.READU at Adminstrator clinet to get the list of process, Login Id and the jobs that been accessed. But it will not show you Ip address.
Code: Select all
ps -eaf | grep dscsOr LIST.READU at Adminstrator clinet to get the list of process, Login Id and the jobs that been accessed. But it will not show you Ip address.
- Thu Jan 04, 2007 1:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Client ip or name on which DS client is opened
- Replies: 15
- Views: 3258
- Thu Jan 04, 2007 1:43 am
- Forum: General
- Topic: dynamically passing tablename
- Replies: 8
- Views: 4862
Hi Ritesh, You need two jobs. Job 1 read the table for the table name and pass it to the other job as JobParameter. If you search the forum, you can find lot many similar recent post of the same kind. You can either use UserStatus or write into a file and read it to pass the value as JobParameter. I...
- Thu Jan 04, 2007 1:39 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Surrogate Key
- Replies: 12
- Views: 3635
- Thu Jan 04, 2007 1:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error while deleting a job
- Replies: 25
- Views: 9635
- Thu Jan 04, 2007 1:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Client ip or name on which DS client is opened
- Replies: 15
- Views: 3258
Code: Select all
netstat -ai | grep ds- Wed Jan 03, 2007 7:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Trigger Parallel Jobs and define Invocation ID in a Sequence
- Replies: 7
- Views: 4472
If the Invocation Is is not determined at runtime, you and pre determine the values and pass it as hardcoded or as parameter. And what makes you to assert that Job_Activity_2,3 and 4 runs one after other. You may find an entry with JobControl (DSWaitForJob) with Job1+2+3. The other logs will show yo...