Search found 28 matches

by alanwms
Mon Feb 06, 2006 11:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Do u think this XML file structure is ok...???
Replies: 8
Views: 2783

Have you tried using XMLSpy or other tool to help you verify the structure?
by alanwms
Fri Dec 16, 2005 6:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: big XML files vs DS
Replies: 8
Views: 3390

The XML Input stage would handle the XML parsing into rows and columns, based on the Xpath declarations in the description field. Remember that the stage needs to find all the begin and end tags in the proper order, so make sure you're working with well-formed XML (XMLSpy is a good tool).
by alanwms
Fri Dec 16, 2005 5:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prevent a Routine from Aborting a Job
Replies: 5
Views: 1787

Jay, You've stumbled on that great debate over using custom routines vs configuring the tool to perform the proper action. Using the tool capabilities will better insure that your jobs will work on future releases of DS. Your custom routines, while very fast, may cause havoc on a future release. For...
by alanwms
Fri Dec 16, 2005 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mass change of user id and password
Replies: 7
Views: 3973

If you are on release 7.5, you can use the project environment variables to store your usernames and encrypted passwords, and have them flow seamlessly into the jobs. You would need to update each job, but it might give you better flexibility and security in the long run. The encryption in the proje...
by alanwms
Fri Dec 16, 2005 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file Vs Hashedfile
Replies: 1
Views: 1212

If you only need the 15-byte key, why not write just that field to the sequential file? Your performance should always be better with the sequential file output rather than the hash file. It also seems that your sequential file output becomes the input to a downstream job. If this is the case, then ...
by alanwms
Thu Dec 15, 2005 11:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSDesign.exe has generated errors and will be closed
Replies: 3
Views: 1873

I'm getting this same error about once a day for the past week on my 7.5 client with windows server. I haven't tried to re-install the client yet, since it hasn't affected me much. I'll try the reinstall. Thanks for the tip Craig.

Alan
by alanwms
Wed Dec 14, 2005 11:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error creating named pipe BW load pull
Replies: 1
Views: 1556

Problem resolved:

I've been able to trace the problem back to the BW side and have corrected a permissions issue with the target cubes. The named pipe message did not turn out to be an error but just informational.

Thanks,
Alan
by alanwms
Wed Dec 14, 2005 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error creating named pipe BW load pull
Replies: 1
Views: 1556

Error creating named pipe BW load pull

I get an error message in the RFC connection log on the DS server when executing a DataStage job from SAP BW to pull data into BW: I: Keyname DSJob I: Keyvalue MCDMSubmItemL045 I: Keyname $jp_BWConnection I: Keyvalue I: Keyname $jp_MCDMInFilePath I: Keyvalue I: Keyname $jp_MCDMOutFilePath I: Keyvalu...
by alanwms
Wed Dec 07, 2005 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to list config parameter values
Replies: 3
Views: 2192

Bring up DS Administrator, choose any project, choose command. Type in CONFIG ALL and execute. All your .uvconfig values will be displayed.

Also, CONFIG BRIEF shows just your license info, CONFIG DATA shows your tunables.

HTH
by alanwms
Thu Jun 09, 2005 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapped Stage
Replies: 4
Views: 2369

You may want to look at the External Filter stage. Be aware that some of these stages require the data to move via stdin/stdout. Another alternative is to just let the header and trailer records fall out the rejects link of the Sequential File stage, since the metadata probably won't match that of t...
by alanwms
Thu Jun 09, 2005 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to realize opposite of Pivot?
Replies: 10
Views: 5380

I've done this before, but with variable number of rows per unique key column. First the key columns must be sorted. Next, an empty row must be added to the end of the input data. I use an after-stage ExecSH routine to append the extra line. This line will be used as your final break. You'll need to...
by alanwms
Fri Jun 03, 2005 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failover Handling in MPP setups
Replies: 6
Views: 3187

Are you planning on setting up failover for each of the servers in the MPP cluster or just the main server where DS jobs are initiated? Does the proposed failover seamlessly migrate IP address/host names? The configuration file identifies the nodes, hosts, disk pools, etc. I'd suggest you look at yo...
by alanwms
Thu Jun 02, 2005 1:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing CRC values
Replies: 16
Views: 10906

Shawn's approach (adding the CRC value to the target table) would work great, especially with a large target table. I'm sure he and Mike Hester talked at length about how to implement the CRC value for CDC. As for collisions (as long as you use the CRC32 routine), it is highly unlikely that a two di...
by alanwms
Thu Jun 02, 2005 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing CRC values
Replies: 16
Views: 10906

Rod, Having worked with the CRC32 routine before for doing change data capture, I understand your dilemma. I have addressed the persistent hash file issue by unloading the hash files to flat files at the conclusion of any update process. This gives me a backup copy of the complete hash file contents...
by alanwms
Wed Jun 01, 2005 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reference Links to Lookup Stage
Replies: 4
Views: 2597

Lance, Remember that sparse lookup option puts records into the lookup dataset as it finds them in the (DB2 or Oracle) database. Subsequent lookups will retrieve from the dataset instead of having to make the call to the database. This works well when you reference a small number of different keys i...