Search found 185 matches

by denzilsyb
Thu Sep 09, 2004 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using shell Script to access Stored Proc
Replies: 13
Views: 4624

I am sure you can, even if it is via your original idea of a shell script/batch file.

If not, would you be able to have DS generate a log number in the same way the DB does?
by denzilsyb
Wed Sep 08, 2004 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I get one stream to wait for another stream to finish?
Replies: 4
Views: 1892

And what a question indeed. To tell you the truth, I would probably go for two seperate streams, it just sounds (and probably looks) more manageable. I dont want to send you beating around the bush, and i might add I have not tested the following, but you are welcome to test what I propose... by cod...
by denzilsyb
Wed Sep 08, 2004 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: using shell Script to access Stored Proc
Replies: 13
Views: 4624

hi James it sounds like a complicated way of doing things. If you have to use the stored procedure, then I would suggest you gather the required INPUT parameters for the stored proc by using parameters in a job control. This information (like start time, end time, process time) can be obtained by do...
by denzilsyb
Mon Sep 06, 2004 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Preserve DB2 SQL comment lines
Replies: 3
Views: 798

Hi morney I fear that there is no way. (have you tried /* comments ?*/) If that does not work, then you could do what we are currently doing to aid documentation and that is to paste the SQL into the description of the stage. this would mean you could save all the comments you could possibly need.
by denzilsyb
Mon Sep 06, 2004 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lat new line
Replies: 4
Views: 924

lat = last

I was afaid of that. now i just need to go back and insert the stage to the job. thanks ogmios.
by denzilsyb
Mon Sep 06, 2004 3:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lat new line
Replies: 4
Views: 924

Hi ogmios yes, the new line is generated in the SEQ stage, but i have an extra "line" of "data" after all my detail records are listed. i.e. col1|col2|col3|CR/LF dat1|dat2|dat3|[color=red]CR/LF[/color] <this is an extra record with nothing in, not even NULL> i want to omit the CR...
by denzilsyb
Mon Sep 06, 2004 2:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Connection Issues
Replies: 5
Views: 3936

hi shrikanth problem 1: do you log into DS with the same user that is logged in on the windows server? when you select 'omit' the user currently logged on to the windows server is authenticated against DS. It might be that you are using a lower level security user to access key files that DS uses to...
by denzilsyb
Fri Sep 03, 2004 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lat new line
Replies: 4
Views: 924

Lat new line

Hallo all

Is there a way to omit the last new line character in the constraint of a transformer? I dont want to have to revert to scripts and/or SEQ stages to do this.

I have tried LINK.COL > 0 and LINK.COL <> @NULL, but no luck.
by denzilsyb
Fri Sep 03, 2004 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to COMP-3 or not to COMP-3
Replies: 0
Views: 346

to COMP-3 or not to COMP-3

Hi guys

Im struggling to convert the following:

Code: Select all

00481
2000F
where Fis supposed to indicate a sign. I think DS expects a D or C for signed decimals, but what does it do in the case of a default allocation - in this case F.

any ideas..
by denzilsyb
Thu Sep 02, 2004 8:09 am
Forum: Enhancement Wish List
Topic: DataStage Restricted Mode
Replies: 11
Views: 8578

Its very annoying when you try to open a job, get the annoying message 'locked by another user' agreed. 1stpoint, you'll need to get the developers off the jobs when you want to export/import, and i believe the only way is to ask them to get off the server jobs (ok, perhaps not the only way). a pos...
by denzilsyb
Thu Sep 02, 2004 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Sequential File with Header and Footer
Replies: 9
Views: 8078

very simply, in BASIC you would code this algorithm open file start loop read record if detailRecord then write to output file close loop close file ok.. what happens here is that you loop within the file testing whether the detail record exists. This works if you have CR/LF because you're just test...
by denzilsyb
Thu Sep 02, 2004 5:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Sequential File with Header and Footer
Replies: 9
Views: 8078

I don't think what dnzl has suggested will work
:shock: anupam; you pointed out something that i overlooked - file format. But, if there is a CR/LF at the end of the row, the header constraint should work; we were using this process before we started to validate the header and trailers.
by denzilsyb
Thu Sep 02, 2004 4:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Sequential File with Header and Footer
Replies: 9
Views: 8078

In your transform, from the sequential file add this constraint: @INROWNUM > 2 (if header is first two lines) this will omit the header. The footer you can also ignore by adding something to the constraint: @INROWNUM > 1 and col1 <> '------' seems a dirty way of doing it though. you could put this i...
by denzilsyb
Thu Sep 02, 2004 3:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage freezes when i loads data from IQ to SQL Server
Replies: 5
Views: 2392

Hi lindie

Get an ODBC trace so that you can track whether the sql server is actually receiving input from datastage on unix. Is this problem only occuring on this one table?
by denzilsyb
Wed Sep 01, 2004 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control
Replies: 4
Views: 2836

weird.. as soon as i create the project as an unprotected project, it all goes through, no problem.

this is DS7.1r1 - i hope its no bug.

>>> the workaround now.. in administrator; unprotect project. then copy jobs to PRODUCTION. after this process, Protect the project again. <<<