Search found 111 matches

by greggknight
Mon Mar 16, 2009 11:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Connectivity to Datastage (Windows server)
Replies: 5
Views: 3705

I don't know if this is resolved but in Windows you have to make an entry in your services file DB2_FSACWD1 446/tcp DB2_LOCAL 50000/tcp DB2_TIPSY 446/tcp to tell which port db2 on your target server is listneing on. In my case it is iSeries and the port is 446 You also need to bind that server in th...
by greggknight
Mon Mar 16, 2009 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can a parameter be used to supply sql with a list of values?
Replies: 10
Views: 5578

Create a parameter set and add a param called (whatever you want ) I use WhereClause Write you where clause as the value I use ((BIZ_CURR_REC_FLAG = 'Y' ) OR (BIZ_CURR_REC_FLAG = 'N' AND BIZ_DATE_MODIFIED >= '2005-12-31')) for one of mine. In your stage use select * from #Library#.#TableName# where ...
by greggknight
Mon Mar 16, 2009 10:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can a parameter be used to supply sql with a list of values?
Replies: 10
Views: 5578

Create a parameter set and add a param called (whatever you want ) I use WhereClause Write you where clause as the value I use ((BIZ_CURR_REC_FLAG = 'Y' ) OR (BIZ_CURR_REC_FLAG = 'N' AND BIZ_DATE_MODIFIED >= '2005-12-31')) for one of mine. In your stage use select * from #Library#.#TableName# where ...
by greggknight
Mon Mar 16, 2009 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shell script from a Routine
Replies: 9
Views: 3447

flag=1 tail +2 $1 | while read LINE do tag=`echo $LINE | awk -F',' '{print toupper($7)}'` chk=`echo $tag | tr "[:lower:]" "[:upper:]"` if [ $chk = "ACCEPTED" ] ; then continue; else flag=0 break fi done echo $flag return $flag the way you are using it as long as the scr...
by greggknight
Mon Mar 16, 2009 10:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shell script from a Routine
Replies: 9
Views: 3447

try using return (number) in your script. examp if something is true then return 0 else return 1 end if you can use any number you want in your script to identify some action that takes place in your script. Then in DS you can make a dicision based on thouse values. currently you are receiving 1 of ...
by greggknight
Tue Nov 04, 2008 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Enterprise Stage
Replies: 0
Views: 866

SQL Enterprise Stage

SQLServer_Enterprise_12: When checking operator: The view adapter has a binding for the non-existent destination field "BUYER_ID".

When the job starts I get this message for every column in the insert list.

There is no view in this stage..
by greggknight
Tue Nov 04, 2008 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Type Object 'CJSUserVarsActivity' not found
Replies: 10
Views: 3476

I exported a sequence from my development environment, I loaded it into my production environment and when I went to compile it in production The words compile in production means there is code there, other wise you would not be able to compile , correct. I am only saying thats a road to problems, e...
by greggknight
Tue Nov 04, 2008 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Type Object 'CJSUserVarsActivity' not found
Replies: 10
Views: 3476

Just a thought, but I would only export executibles and their dependencies into production. Why would you want people to have the ability to change production code and be out of Sync with development. I see problems on the horizon!!!!!
Just food for thought!
:shock:
by greggknight
Tue Nov 04, 2008 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Type Object 'CJSUserVarsActivity' not found
Replies: 10
Views: 3476

Just a thought, but I would only export executibles and their dependencies into production. Why would you want people to have the ability to change production code and be out of Sync with development. I see problems on the horizon!!!!!
Just food for thought!
by greggknight
Mon Nov 03, 2008 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Enterprise Stage error
Replies: 3
Views: 1670

Also I know the connection to the server and table are correct because I am using truncate, and all the data dissapeared the first time I ran it.
by greggknight
Mon Nov 03, 2008 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Enterprise Stage error
Replies: 3
Views: 1670

SQL Enterprise Stage error

SQLServer_Enterprise_12: When checking operator: The view adapter has a binding for the non-existent destination field "BUYER_ID".

When the job starts I get this message for every column in the insert list.

There is no view in this stage..
by greggknight
Thu Oct 09, 2008 1:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Instance Jobs
Replies: 6
Views: 2455

Version 8
Build 1.2

what is the latest build ??
by greggknight
Thu Oct 09, 2008 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Instance Jobs
Replies: 6
Views: 2455

The Invocation Id is in a JOB.config file (ini format ). This value is read in by a batch job which in return calls a complex routine which controls all the processing of all the jobs in the job array.
I have been using these for 8 years with out issue. pretty boiler plate.

Thanks
by greggknight
Thu Oct 09, 2008 11:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Instance Jobs
Replies: 6
Views: 2455

Thanks I never thought of something that simple. I changed all my settings to 3 Ran one set of jobs. Seems to be working >>>>>
Now for number one which really is the most important.!!
Again thanks for the spash of water...
by greggknight
Thu Oct 09, 2008 9:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Instance Jobs
Replies: 6
Views: 2455

Multi Instance Jobs

I developed a set of ds jobs. I make those jobs multi instance because I run the same jobs for two different companies which use different parameters. I have two different config files with the parameters for each company seperate. I run the set of jobs through a batch job for the first instance 201...