Search found 42189 matches

by chulett
Tue Mar 13, 2012 5:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input stage
Replies: 9
Views: 4194

Yes, that should work just fine. Is your XML Input stage setup to take that filename column as the URL/File path to read the files from?
by chulett
Tue Mar 13, 2012 5:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to install a new character set?
Replies: 3
Views: 1394

Just to be pendantic, that didn't "install" anything. You simply set NLS_LANG globally for the server. Also note you could have set this up as a Project level environment variable and (if needed) you can still override it at the individual job level.
by chulett
Tue Mar 13, 2012 5:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date fields being created as timestamp(0)
Replies: 13
Views: 5150

Sounds to me like something to take to your official support provider. I seriously doubt NLS anything controls that.
by chulett
Mon Mar 12, 2012 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: many reports in one file
Replies: 8
Views: 3122

I was thinking you could use the string "DATE RUN" to indentify the start of each report but that's only true for two of them. A line that starts with "TIME :" looked like another candidate but it's only good for three of the four. Perhaps look for the actual report name you need...
by chulett
Mon Mar 12, 2012 12:46 pm
Forum: General
Topic: dsexport.exe
Replies: 2
Views: 1299

Are you looking on your client pc?
by chulett
Mon Mar 12, 2012 12:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: script to process a file
Replies: 15
Views: 3425

battaliou wrote:Take a look at the UNIX tr -s '\n\' ',' command.
It's also simple enough to convert this in job, as Ray noted, if desired.
by chulett
Mon Mar 12, 2012 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: script to process a file
Replies: 15
Views: 3425

India2000 wrote:it would be easier track issues with files if I use this method
Why? What would be easier about it? The stage can import the current filename along with the data, if that is your concern. To me, this seems like more work for zero gain. [shrug]
by chulett
Mon Mar 12, 2012 12:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Zip file to Oracle DB
Replies: 3
Views: 1083

Can you not leverage something like gunzip to std out in the Filter of the Sequential File stage?
by chulett
Mon Mar 12, 2012 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: many reports in one file
Replies: 8
Views: 3122

Still looking to understand what "load" means here, so simply repeating the word doesn't help. What I specifically mean is load how - what do your target tables look like, do you have to pivot rows to columns, that kind of thing. Or do you simply take each line as a string and stick that i...
by chulett
Mon Mar 12, 2012 9:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: server logs
Replies: 5
Views: 1470

That viewer wouldn't help when their server is on a UNIX box.

I would imagine one could find the dsrpcd process and its start time would be the start time of "the services":
ps -ef | grep dsrpcd
by chulett
Mon Mar 12, 2012 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not Extracting data from Oracle
Replies: 2
Views: 1263

Ask your DBA to trace the process in the database, see what (if anything) that it is doing.
by chulett
Mon Mar 12, 2012 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: script to process a file
Replies: 15
Views: 3425

Why not simply use the File Pattern capability of the Sequential File stage and be done with this? Is there something in what you are doing that requires you to process each file one at a time? :?
by chulett
Mon Mar 12, 2012 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: throughput of link
Replies: 11
Views: 3790

As I said, typically it would be right but not always, depends on the job design and also if buffering is involved. Would be curious what one of the Grognards think...
by chulett
Mon Mar 12, 2012 7:20 am
Forum: General
Topic: Require script for identify the warning message
Replies: 3
Views: 1191

Use the various dsjob options to:

1. Find all projects on the server
2. Find all jobs in a project
3. Pull the most recent (or full) logs from each job
4. Lastly, search for your target string.

Loops within loops.
by chulett
Mon Mar 12, 2012 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: many reports in one file
Replies: 8
Views: 3122

Can you post a (small) representative example of your input file? Also, clarify exactly what "load a report" means here.