Search found 148 matches

by jzparad
Sun Jan 29, 2006 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read from nth last line
Replies: 7
Views: 2472

Read from nth last line

I'm currently running on Windows and I'm trying to find a nice way of reading a sequential file starting at the nth last line. Something similar to the UNIX tail command but in a routine. I know you can use seek to go to the end of the file but once you've done that all I can think of is seeking bac...
by jzparad
Thu Jan 19, 2006 9:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9098

Is this due to network traffic by any chance?? B'cause sometimes it's working fine and if more than 5 developers trying to access it, it is throwing the 8102 error.
The user limit says 5.
Sounds very coincidental all the same!
by jzparad
Thu Jan 19, 2006 9:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get results from a Windows .exe from a UNIX box
Replies: 5
Views: 1967

Back to the original question. I guess the most, if not only, elegant way is to use something like ComBridge http://www.octatec.co.uk/CB_sum.htm which allows you to access COM objects on Windows. This assumes that you have a COM object to run or can write one. Your original problem stated I'm lookin...
by jzparad
Thu Jan 19, 2006 9:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Too many columns in a Record
Replies: 11
Views: 4552

There was a recent discussion about a similar problem.

If all your files look OK and the job used to run OK, check if the job has active stages in sequence and, if so, try placing an IPC between them.
by jzparad
Thu Jan 19, 2006 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9098

My guess is this is a licensing error. I know you get an error when you hit the limit but I can't remember the error number. Easy way to check - next time you hit the error, ask someone to log out and try logging in.
by jzparad
Thu Jan 19, 2006 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Defining data types in table definitions
Replies: 1
Views: 965

Defining data types in table definitions

Can some please tell me if there is any impact to the job or long term advantage in defining data types when importing table definitions from a sequential file? As far as I can tell, there seems to be absolutely no impact on the job. In fact even the length seems to make no difference (at least in a...
by jzparad
Thu Jan 19, 2006 6:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9098

Have you checked out your user limit in DataStage Administrator?
by jzparad
Thu Jan 19, 2006 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9098

You never answered my previous questions.

Also check this out.

http://www.dsxchange.com/viewtopic.php ... uid+or+gid
by jzparad
Thu Jan 19, 2006 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get results from a Windows .exe from a UNIX box
Replies: 5
Views: 1967

Is it possible to use rsh to a Windows box?

I wasn't aware that you had those sort of services on Windows. You can certainly run rsh from Windows to Unix but I'm not so sure about the other way around unless you have SFU installed.
by jzparad
Thu Jan 19, 2006 5:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9098

You also need to wrap the 080012 in quotes

i.e.

'080012'
by jzparad
Thu Jan 19, 2006 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reconciliation of source data and target data
Replies: 13
Views: 9669

Ray,

Should the MKS toolkit be automatically installed with the DataStage server?

I'm running 7.5.1 on Windows and I can't seem to find an MKS directory.
by jzparad
Thu Jan 19, 2006 4:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9098

add a semi-colon to the query.
by jzparad
Thu Jan 19, 2006 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help needed.....connection is broken 81002??
Replies: 18
Views: 9098

Does this only happen after your session has been idle for a while?

Does it happen only to DataStage clients or do Telnet sessions also get timed out?

Have you checked the process start times of the dsrpcd daemon to eliminate the possibility Ray mentioned?
by jzparad
Thu Jan 19, 2006 4:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tranformer query
Replies: 2
Views: 1214

Just out of curiosity I decided to do a small test. First with SQL declare cursor c1 is select object_name, case owner when 'PUBLIC' then 'P' when 'SCOTT' then 'S' end from sys.dba_objects; begin for c1rec in c1 loop null; end loop; end; / PL/SQL procedure successfully completed. Elapsed: 00:00:00.0...
by jzparad
Tue Jan 17, 2006 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Issue
Replies: 6
Views: 1396

Sounds like you're going to have to manually assemble the fields into a generic type record. i.e. Write a routine that will take the complete input line as a parameter. This routine will examine the line, determine the value of the IDColumn and then assemble the required output in CSV format. L1 L2 ...