Search found 53125 matches

by ray.wurlod
Wed Apr 03, 2013 2:58 am
Forum: General
Topic: Pass Current Job name to Shell Script
Replies: 5
Views: 2419

You can't use sh as an after-job subroutine. Use ExecSH instead. For the job name, try a reference to the DataStage macro #DSJobName#
by ray.wurlod
Wed Apr 03, 2013 2:56 am
Forum: General
Topic: Windows -- Audit Table
Replies: 7
Views: 2691

Download ETLstats from Kim Duke's web site for free. All the work's already been done for you.
by ray.wurlod
Tue Apr 02, 2013 3:27 pm
Forum: General
Topic: what version Can I install to practice in my computer
Replies: 13
Views: 5124

Older versions support XP for client tier. I leave it to you to check the details.
by ray.wurlod
Tue Apr 02, 2013 3:22 pm
Forum: General
Topic: How Long Does it Take to learn Datastage for ETL project
Replies: 7
Views: 4210

I've been working with DataStage since 1995 and I'm still learning things about it.
by ray.wurlod
Tue Apr 02, 2013 3:20 pm
Forum: General
Topic: Routine C++ compiling issue
Replies: 11
Views: 4555

main() always indicates a stand-alone (rather than callable) executable module. Use the name of your routine as the function name.
by ray.wurlod
Tue Apr 02, 2013 3:17 pm
Forum:
Topic: Error while importing using IBM Metadata Asset Manager
Replies: 1
Views: 2467

Make sure that all of the component names are correct. Database, schema, table.
Which tool are you using to effect the imports? Are you selecting the names from drop-down lists/twisties?
by ray.wurlod
Tue Apr 02, 2013 12:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Excel Files in UNIX Servers
Replies: 4
Views: 1380

New in version 9.1 is a stage specifically for this task. Upgrade.

Otherwise you will need to track down a third party ODBC driver for Microsoft Excel that runs on UNIX platforms.

ODBC data sources are defined in $DSHOME/.odbc.ini and specified in $DSHOME/uvodbc.config.
by ray.wurlod
Tue Apr 02, 2013 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter Issue in extracting file
Replies: 9
Views: 3750

Gotta be. Research it and let us know.
by ray.wurlod
Mon Apr 01, 2013 6:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector bulkload
Replies: 5
Views: 3600

Hmm, I wonder if that was one of the issues with our upgrade from TD 13.x to 14.0...?
by ray.wurlod
Mon Apr 01, 2013 6:22 pm
Forum: General
Topic: Routine C++ compiling issue
Replies: 11
Views: 4555

A DataStage parallel routine can not be named "main".
by ray.wurlod
Mon Apr 01, 2013 1:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter Issue in extracting file
Replies: 9
Views: 3750

Line 2 is badly-formed. It has an odd number of quote characters. Demand well-formed data from your provider.
by ray.wurlod
Mon Apr 01, 2013 1:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mmap()failed. Invalid argument
Replies: 6
Views: 2424

You're on UNIX yet you have DOS-style line terminators. All values in the final column are likely to have an unwanted \r at their end. Change the format to set Record Delimiter String to "DOS style".
by ray.wurlod
Mon Apr 01, 2013 1:25 pm
Forum: General
Topic: Language Pack for DataStage
Replies: 7
Views: 2823

Not so good with idioms. English Russian English +--------+ +--------+ -------------> |Language| ----------> |Language| ----> +--------+ +--------+ out of sight out of mind invisible idiot 원본 메시지는 4 월 1 일 게시 했습니다.
by ray.wurlod
Mon Apr 01, 2013 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: An ODD Lookup, please help
Replies: 10
Views: 2609

Why are you "seeking to implement this as a SINGLE lookup"?

To me it does not make sense to do so; the sense of the logic is not present in such a design.

Therefore consider two Lookup stages or, perhaps, a single Lookup stage with two separate reference inputs.
by ray.wurlod
Mon Apr 01, 2013 3:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mmap()failed. Invalid argument
Replies: 6
Views: 2424

Final Delimiter is not the same as Record Delimiter. How have you set Record Delimiter? If you open the file using vi and position to the end of the file (0G) is the cursor at the end of the last line or on a new empty line? This will tell you whether or not there's a line terminator on the final li...