Search found 472 matches

by tonystark622
Tue Jul 15, 2003 9:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS Mapping Error
Replies: 6
Views: 4986

NLS Mapping Error

I'm getting the following warning message when writing to a text file: LoadPartEffectivity..part_app_debug.part_app: nls_map_buffer_out() - NLS mapping error, row 106 (approx), row = "81349 M39029/1-101 F/A-18E/F A05FAAAXAAAE99 01 P " I am not explicitly using any maps other than the defau...
by tonystark622
Sat Jul 12, 2003 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple output from single (variable) input
Replies: 9
Views: 3735

I haven't seen this technique before, Ray. This accomplished the same thing I was trying to do, but with a sequential file. Cool.

Another one to add to the old bag of tricks [:D].

Thanks,
Tony
by tonystark622
Sat Jul 12, 2003 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parse files and loop through each row
Replies: 3
Views: 2454

If you replace all the pipe chars with @VM, you can write them to a hash file and read them back out "normalized". On the output link you have to define the column that has this data in it as multi-value (type = 'MV') and change the "Normalize on" field at the top of the tab to t...
by tonystark622
Fri Jul 11, 2003 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple output from single (variable) input
Replies: 9
Views: 3735

Andy, What I would do would be to write a routine where you pass it Title and NumUses as an argument. This routine would return a string containing a multi-value field with Title the appropriate number of times separated by a @VM (look up the FieldStore function to create this string). Write this mu...
by tonystark622
Thu Jul 10, 2003 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pasting information from Manager to Excel files
Replies: 4
Views: 1515

I just know that this is gonna be wrong because I haven't tried it myself, but other folks have talked about using the Reporting Assistant to report on a project, then get the data out of the Access database that it uses. Sorry, I don't know what the DB name is, but it shouldn't be too hard to find....
by tonystark622
Wed Jul 09, 2003 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Segmentation Fault(coredump)
Replies: 7
Views: 2252

Could be that your environment isn't the same on your production box as on the development box. I would look at where your datastage directories are in the path and shared library environment variables. I suspect you'll find something wrong there.

Is this a Unix box?

tony
by tonystark622
Tue Jul 08, 2003 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error with ORAOCI and ORAOCI8
Replies: 4
Views: 2367

Sure looks like the Oracle drivers are not correctly configured on the system. Hard to imagine that the ODBC drivers work correctly when the Oracle driver doesn't. The only thing I can think of is that the server name and the ODBC DSN are not the same and perhaps, you're using the same name in both....
by tonystark622
Mon Jul 07, 2003 6:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Segmentation Fault(coredump)
Replies: 7
Views: 2252

Badhri, I am by no means an expert at this, so be patient. You didn't answer my question about setting up your environment. Did you look into this? I know there are some environment variables that need to be set up correctly and, as I mentioned, there is a script file in the ../DSEngine directory ca...
by tonystark622
Mon Jul 07, 2003 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Segmentation Fault(coredump)
Replies: 7
Views: 2252

Badhri, Please supply more information as to the nature of your problem. A couple of basic questions to get things started are: - Can you run any jobs successfully from Director? - Are these the jobs that give the coredump? - Is your command line environment set up correctly? I think there's a "...
by tonystark622
Mon Jul 07, 2003 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC and native connection to same data source?
Replies: 7
Views: 2385

Heh. Wouldn't you know it would be something like that.

Ah, well, hope your vacation was good!

Thanks for posting the answer.

Tony
by tonystark622
Mon Jul 07, 2003 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading XML File
Replies: 4
Views: 1225

Vikas,
Make sure that you get XML v2.x from the Ascential site. It's a lot more capable than v1 that comes on the DataStage CD.

Good Luck,
Tony
by tonystark622
Sun Jul 06, 2003 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Doubts regarding FTP Stage
Replies: 2
Views: 968

Viswanath.s and Craig, I've found the "Multi-row reference link" functionality of the ODBC (and Universe) stages to be very helpful a couple of times. This is a reason to use the ODBC stage instead of the Oracle OCI, as the Oracle OCI stage doesn't support that functionality. Hope this hel...
by tonystark622
Thu Jul 03, 2003 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Packed data
Replies: 5
Views: 2299

Are you doing the FTP in a DataStage job (in an FTP stage)? Or in an external process? It might be better to FTP the job over outside DataStage, then try reading the file and converting it. There are some options in the metadata that allow DataStage to ignore incomplete fields and rows... That also ...
by tonystark622
Thu Jul 03, 2003 10:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Packed data
Replies: 5
Views: 2299

You may find a recent thread helpful.



Good luck!

Tony
by tonystark622
Thu Jul 03, 2003 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to take Values from Parameter File?
Replies: 11
Views: 11637

Ravi, It is relatively easy to read job parameters from a file and run a job, setting the appropriate job parameters with values from a file. This can be accomplished with a Job Sequence job or Batch Job (I can't remember if v5.2 has job sequence jobs or not). For Job Sequence jobs, I wrote a small ...