Search found 134 matches

by sendmk
Tue May 02, 2006 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE 7.5.1 A SAP R/3 , ORACLE CONNECTIONS
Replies: 2
Views: 2006

DATASTAGE 7.5.1 A SAP R/3 , ORACLE CONNECTIONS

Hi We are using SAP R/3 Pack ABAP 5.2.1 Realese with Parallel Job WITH DS 7.5.1 A we are getting the following error message when we connect DS Server from INDIA and run the SAP R/3 related Jobs and job fails. DataStage server and SAP Application Server are in Onsite we are connecting from Offshore ...
by sendmk
Wed Apr 26, 2006 4:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer
Replies: 14
Views: 5556

head -1 filename | cut -c1-10 if i use this script to read first 10 characters of a fixed width file, by executing the shell script file from filter command in sequential file i get "testmk..Sequential_File_0.DSLink2: nls_read_fixedwidth() - row 1, column Target, column unexpectedly ended by E...
by sendmk
Fri Apr 21, 2006 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting jobs when data source empty
Replies: 13
Views: 4156

did not find anything as given below,
chulett wrote:StageName.$Returnvalue if I remember correctly.
my whole question is how to capture that return value in further actions.....
by sendmk
Fri Apr 21, 2006 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting jobs when data source empty
Replies: 13
Views: 4156

Create a small job that selects COUNT(*) from source into a text file, then read this text file (Execute Command activity) then, depending on the result, either continue with regular processing or take the path described in the previous paragraph. i wonder how you can make Execute Command activity ...
by sendmk
Tue Apr 18, 2006 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01410: invalid ROWID Error
Replies: 10
Views: 31289

when i do the above i get only

01410, 00000, "invalid ROWID"
// *Cause:
// *Action:
that is it or can i see causes,actions etc

can anyone throw somemore light
by sendmk
Wed Apr 12, 2006 2:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE GRID
Replies: 2
Views: 954

Thanx Alot
by sendmk
Wed Apr 12, 2006 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TARGET LOOKUP
Replies: 2
Views: 987

TARGET LOOKUP

Hi we have a PX JOb where Source is a DataSet we are doing a Target Lookup on a Oracle Table the below ones are keys these are the same Keys in the Dataset to.. Oracle Keys LANG_ID Char(2) DECISION_CD Varchar(8) Dataset Keys LANG_ID CHAR(1) DECISION_CD CHAR(8) The problem is Lookup is Rejecting the ...
by sendmk
Wed Apr 12, 2006 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE GRID
Replies: 2
Views: 954

DATASTAGE GRID

Hi

Where can we get Info on DataStage GRID Comptability.

Regards
Sendmk
by sendmk
Mon Apr 10, 2006 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: skip header and tail while reading from seq file
Replies: 14
Views: 8635

if i write the below script in a file and execute it in filter command say "sh /home/kpraveen/test.sh" how can i parameterize the "filename" in the script "head -$(expr $(wc -l filename | awk '{ print $1 }') \- 1) filename | tail +2" so that it takes the file which is g...
by sendmk
Mon Apr 10, 2006 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: skip header and tail while reading from seq file
Replies: 14
Views: 8635

head -$(expr $(wc -l filename | awk '{ print $1 }') \- 1) filename | tail +2
try this [/quote]
by sendmk
Sun Apr 09, 2006 10:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill job using job id
Replies: 15
Views: 8357

thx very much arndw

but
SELECT JOBID FROM DS_JOBS WHERE NAME = 'testsum'
gives
jobid.......

1 record listed.
i cant see the jobid, i wonder where can i see that information
by sendmk
Fri Apr 07, 2006 5:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill job using job id
Replies: 15
Views: 8357

i executed the below command in TCL but i get only an a blank screen with sql+ prompt
SELECT JOBID FROM DS_JOBS WHERE NAME = 'testsum' .
can anyone throw some light.

thx
by sendmk
Fri Apr 07, 2006 5:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill job using job id
Replies: 15
Views: 8357

kumar_s wrote:SELECT NAME FROM DS_JOBS WHERE jobid = 'nnn' .
so could u tell me where can i find the jobid.

thx
by sendmk
Fri Apr 07, 2006 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill job using job id
Replies: 15
Views: 8357

is jobid equal to pid

:?

thx
by sendmk
Thu Apr 06, 2006 10:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: skip header and tail while reading from seq file
Replies: 14
Views: 8635

head -$(expr $(wc -l | awk '{ print $1 }') \- 1) filename | tail +2
this would work