Search found 15603 matches

by ArndW
Wed Jun 04, 2008 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing \n char in the field
Replies: 11
Views: 3246

Yuo don't need ereplace, just convert. Ereplace functionality replaces one string with another and isn't required here.
by ArndW
Wed Jun 04, 2008 10:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stopping the sequence job
Replies: 2
Views: 1385

Create an output link to a text file in that job, then check for the file contents from the sequence.
by ArndW
Wed Jun 04, 2008 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP EE stage to access data on mainframe system
Replies: 3
Views: 2732

ftp connections to host systems usually need more (and different) parameters than merely giving the name, userid, password and file. Can you connect to the host from the command line FTP program on your DataStage server?
by ArndW
Wed Jun 04, 2008 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error During View Data in DB2_UDB_ENTERPRISE Stage
Replies: 10
Views: 3271

I can't recall all the steps and settings offhand, but at least your environment values look better. What is the error in the logfile?
by ArndW
Wed Jun 04, 2008 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Modify Stage - Substring function
Replies: 15
Views: 15728

I just created a test job. Row Generator generates a VarChar(200) column called "InCol", the modify stage creates a column defined as VarChar(100) with a derivation of "OutCol:string[max=100]=substring[0,99 (InCol)" and get a warning of Row_Generator_0: When checking operator: When binding output in...
by ArndW
Wed Jun 04, 2008 7:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing \n char in the field
Replies: 11
Views: 3246

convert(char(10),'',In.String)
by ArndW
Wed Jun 04, 2008 7:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error During View Data in DB2_UDB_ENTERPRISE Stage
Replies: 10
Views: 3271

Your PATH and LD_LIBRARY_PATH are missing all of the settings usually added by sourcing the "dsenv" script; where did you check these? The first line of the direcotr log file of a job run will show you the environment settings that were used, so perhaps instead of "view data" you can compile and run...
by ArndW
Wed Jun 04, 2008 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer job actvy parameters missing after successful run
Replies: 3
Views: 639

The patch we needed was only applicable to V8 Parameter Sets and does not apply to normal parameters.
by ArndW
Wed Jun 04, 2008 7:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing part of job log using routine
Replies: 28
Views: 8168

I should have caught that. I just looked at the error message, not the red text to see what actually caused it. I need glasses...
by ArndW
Wed Jun 04, 2008 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Modify Stage - Substring function
Replies: 15
Views: 15728

Try

Code: Select all

NAME2:string[max=100] = substring[0,99] (NAME2
by ArndW
Wed Jun 04, 2008 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing part of job log using routine
Replies: 28
Views: 8168

Add
MailCommand = "From:":FROM_MAILID:"\nTo:":TO_MAILID:"\nSubject:":SUBJECT:"\nBody:"

and then PRINT or Call DSLogInfo() of the MailCommand variable. What do you get?
by ArndW
Wed Jun 04, 2008 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Modify Stage - Substring function
Replies: 15
Views: 15728

throbinson - thanks, I felt like I was missing something when I posted that but couldn't check it with a job and just "let it slide". Good catch.
by ArndW
Wed Jun 04, 2008 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How DS give error while index not rebuildin database
Replies: 3
Views: 607

I can understand how you can get an error disabling constraints, but not with indices. If you enable logging and run the job, what error do you see in the log file?
by ArndW
Wed Jun 04, 2008 5:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Environment Variables not reset after export
Replies: 8
Views: 2840

Re: Environment Variables not reset after export

... i.e. A variable called DSN=Dev_Example does not automatically get updated to DSN=Test_Example. How could DataStage know which values to use unless you tell the application what values to use. These environment variable values are stored in the text file called "DSParams", each project has its o...
by ArndW
Wed Jun 04, 2008 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Start up time/performance tuning
Replies: 4
Views: 4918

Parallel jobs are designed to maximize throughput. Because of the relative complexity of process interaction in PX jobs, the startup time needed in order to get everything sychronized in a "ready" state is going to take quite some time; the more nodes you declare in your APT_CONFIG file and the less...