Search found 15603 matches

by ArndW
Thu Oct 04, 2007 8:53 pm
Forum: General
Topic: How to Design a job
Replies: 1
Views: 1012

Hello sundrop and welcome to DSXchange. PX jobs allow a sequential file to be used as a lookup object. If you declare your Invoice Line items file as a lookup and use your invoice number and tax/freight record column value as lookup keys you can get your status and process the other data accordingly.
by ArndW
Thu Oct 04, 2007 8:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Behaviour of DS Job
Replies: 4
Views: 1264

If you are using version 6, then this might be the result of a programming error in DSD.StageRun. If you are certain that the only difference is in how you start the job and not the parameter values then this is the likely case and you could contact your support provider to confirm that.
by ArndW
Thu Oct 04, 2007 8:28 pm
Forum: General
Topic: Removing Header/Trailer from Seq File
Replies: 7
Views: 8195

Craig - yep, that is the way to do it if the formats of the header/trailer are different and you don't need the data in those rows. The header row is usually column names and will have the same number of column separators as the data, but if you have non-string columns then the text column names wil...
by ArndW
Thu Oct 04, 2007 8:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can we call datastage jobsequence-JOB in unix
Replies: 6
Views: 2723

Are you getting that error in the log of your job or from the script? If it is in the log, does the same error occur when you manually start it in the director? Are you using the same UserId when it works and when it doesn't?
by ArndW
Thu Oct 04, 2007 8:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job got struck
Replies: 4
Views: 1831

Re: Job got struck

...ps -ef | grep Job name and it will show that particular JOB process ID and then put command like kill -9 PID [ Forces fully kill ] . Don't do this. It will mess up the lock tables, and unless your deadlock daemon picks it up you might have to restart DataStage. Using `kill -9' is only to be used...
by ArndW
Thu Oct 04, 2007 8:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Peculiar Problem in reading a file
Replies: 4
Views: 743

Sambit - did you check those hex values on both source files (on the host and on the DataStage server) to ensure that nothing happened during FTP? I suspect that is where you are getting your problem. I just did a quick test and the EBCDIC conversion works as expected.
by ArndW
Thu Oct 04, 2007 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading/Parsing a weblog file
Replies: 3
Views: 1414

If the string is "language=EnglishUS; profile=8355672542; flashCookie=6; SephSessID=129.123.104.5.284841157783677969; JSESSIONID=BEE1UW1N1QOBNLAUCJBRXCQ; disable=disable; ForeseeLoyalty_MID_kINYBhFpco=65 ", then couldn't you just use In.String[INDEX(In.String,"profile=",1)+8,10]
by ArndW
Thu Oct 04, 2007 7:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer stage,Unmapped columns , dataset RCP turned on !
Replies: 4
Views: 1619

I agree with Ray - you should use a modify stage to explicitly keep or drop the columns while leaving RCP on, or turn RCP off for your transform stage and only pass those columns down the link that you wish to keep.
by ArndW
Thu Oct 04, 2007 7:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help
Replies: 5
Views: 1877

What is the type and contents of the column "POLICY_EFCTV_DT" in your job?
by ArndW
Wed Oct 03, 2007 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: USS System
Replies: 1
Views: 452

USS stands for UNIX System Services , which lets UNIX run on an IBM Mainframe (which runs z/OS)
by ArndW
Wed Oct 03, 2007 11:24 pm
Forum: General
Topic: Removing Header/Trailer from Seq File
Replies: 7
Views: 8195

DataStage jobs don't "read ahead", so they wouldn't know that they have reached a trailer record unless the format were different. I recommend that you use the head and tail commands, which are available to you as you have PX under windows installed.
by ArndW
Wed Oct 03, 2007 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Peculiar Problem in reading a file
Replies: 4
Views: 743

Does this mean that in your source system the values for this 2-character string are 0x5A 0x40? If you use a hex editor on your DataStage machine, are these also the values you have?

The ASCII value for "[" is 0x5B - right next to your value.
by ArndW
Wed Oct 03, 2007 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stange behaviour...file size in Unix(AIX) is 0
Replies: 15
Views: 4419

Kaps, login to a terminal session as dsadm (that isn't a good userid to run jobs as) and do a "truss -p 3002612" and see what that process is doing. It might be doing nothing, i.e. calls to SLEEP.
by ArndW
Wed Oct 03, 2007 3:06 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: hi:its very urgent
Replies: 3
Views: 2526

Re: hi:its very urgent

raju111.net wrote:...2)maximum how much data we can load daily?...

Depends on whether you are running DataStage on a 386sx and sharing it with a database or have 100% of a mainframe to play with.

Why is this so urgent for you?
by ArndW
Tue Oct 02, 2007 10:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filter out the incoming rows from Sequential File Stage
Replies: 2
Views: 1161

kumardesu,

Welcome to DSXchange. Many here have used that attribute to execute filter commands. If you could explain what you would like to do and what you have tried I'm sure someone can help you.