Search found 42 matches

by sec105105
Thu Mar 08, 2018 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Netezza connector as lookup
Replies: 4
Views: 3444

Thanks guys, I tripled-checked the job, and it was indeed type mismatches. I can use the connector directly against the lookup stage - no intermediate stage required. However, with server jobs, I've found I had to insert a hash file stage between the connector & transform, so that's why I was th...
by sec105105
Mon Mar 05, 2018 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Netezza connector as lookup
Replies: 4
Views: 3444

Using Netezza connector as lookup

Are there any guidleines for using the Netezza connector directly as a lookup? I'm getting a variety of errors ; - columns not being right type - columns not found , even though they're right there Is it recommended to have a stage (copy, dataset) between the Lookup stage and the Connector stage? I ...
by sec105105
Thu Jan 18, 2018 12:31 pm
Forum: General
Topic: Not enough storage to import large XML job exports
Replies: 4
Views: 3167

Certainly XMLs seem to be more of a pain; however in our case we are finding it easier to manipulate the XML files (have to do several global changes, using a Visual basic script, then a Linux script). Embedded in a .DSX file are dozens of XML statements which can be several KB in length. These caus...
by sec105105
Thu Jan 18, 2018 10:36 am
Forum: General
Topic: Not enough storage to import large XML job exports
Replies: 4
Views: 3167

Not enough storage to import large XML job exports

In the thread "Manully alter DS DSX or XML job exports", they discussed moving XML files into a project, but there was no mention of XML file size. I have a project where the full project exported is > 350mb. Exporting to XML is no problem, but I get errors when I import elsewhere: Run-tim...
by sec105105
Thu Nov 30, 2017 8:49 am
Forum: General
Topic: Using dsjob to find modified jobs
Replies: 3
Views: 2793

Using dsjob to find modified jobs

Is it possible to use dsjob to get a list of new or changed jobs - say with today's date ? We're trying to automate our project backups using istool, but only want to export it when a change to a job in the project has happened. I know there's a 'modified_date' entry when you export in DSX, but I do...
by sec105105
Fri Nov 24, 2017 9:40 am
Forum: General
Topic: Multi-client manager - how does it know ?
Replies: 3
Views: 2716

Found in the registry....

Found it (among other places) with the keyword CodeBase , under the HKEY_CLASSES_ROOT section. So, you could use the Windows command like : reg query HKCR /s /f codebase > IS.txt then examine IS.txt - if it contains 'InformationServer11', then you're pointing to the 11.5 client. if just 'Information...
by sec105105
Wed Nov 22, 2017 3:24 pm
Forum: General
Topic: Multi-client manager - how does it know ?
Replies: 3
Views: 2716

Multi-client manager - how does it know ?

We recently added DS 11.5 to our 8.5 versions on our Windows clients. I use Multi-Client-Manager to switch between 8.5 and 11.5 no problem - When I bring up the MCM dialogue, it knows which version I'm currently aligned with. ..... But how does it know? Are there any files at the Windows level that ...
by sec105105
Tue Jun 28, 2016 10:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VIEWDATA ROW LIMITER HIT error when trying to view data
Replies: 2
Views: 3318

VIEWDATA ROW LIMITER HIT error when trying to view data

We recently ran into this error when trying to view data on a sequential file stage. Our file was valid, but only had 1 row. For some reason, the 'skip count' in the data browser had been set to 10. I guess the dialogue can't handle a skip greater than the number of rows (However, it seems to be abl...
by sec105105
Tue May 17, 2016 7:28 am
Forum: General
Topic: how to validate CFF file structure
Replies: 7
Views: 4602

Yes, if it was tables, I would've tried RCP, but I don't believe that's suitable for CFF stages.
by sec105105
Mon May 16, 2016 2:18 pm
Forum: General
Topic: how to validate CFF file structure
Replies: 7
Views: 4602

Hi Thanks for the comments. I agree that better communication and a solid process would be the best. Sadly, those requests have not proven effective. So, I'd like to take control of the situation by an automated way. So, I've begun the imports of all the CFF stages that I can see. It's laborious and...
by sec105105
Mon May 16, 2016 12:27 pm
Forum: General
Topic: how to validate CFF file structure
Replies: 7
Views: 4602

how to validate CFF file structure

Hi, Is there an elegant way to test the structure of a CFF file? We read in dozens of mainframe files, and the source-side personnel sometimes neglects to tell us that they're changing the structure. Usually, they make the change in the UA environment a few weeks ahead, so instead of our production ...
by sec105105
Wed Apr 27, 2016 11:49 am
Forum: General
Topic: istool: prevent importing executables
Replies: 2
Views: 2591

Thanks.
I guess eliminating the -incexec from the export is the only way...
by sec105105
Tue Apr 26, 2016 7:32 am
Forum: General
Topic: istool: prevent importing executables
Replies: 2
Views: 2591

istool: prevent importing executables

When importing using Istool, you work with an .isx file. That .isx file can contain source code and/or executable code. When importing, is it possible to import ONLY the source code? I see the [-nodesign] switch can prevent the source code from being imported, but is there a similar switch that woul...
by sec105105
Wed Mar 30, 2016 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup fails if key is decimal, and input has a period
Replies: 7
Views: 8144

Hi,
I tried doing arithmetic on the decimal(18), but it rounded the number, thereby corrupting it.

Trimming the period away was the solution. I used:
TrimF( Trim(input_stream.Column,'.') )
and that seemed to work.

thanks for the suggestions!
by sec105105
Tue Mar 29, 2016 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup fails if key is decimal, and input has a period
Replies: 7
Views: 8144

conversion

Hi,

Not sure how to convert to raw hex - is it possible in a server job?

In any case, if I search for 45. (in view data) it fails. If I search for 45 (in view data) it succeeds.