Search found 6797 matches

by DSguru2B
Mon Oct 23, 2006 12:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp and DB2
Replies: 10
Views: 1748

Are you providing any sort of transformations? I have worked with DB2. If you dont insert the nano seconds part, only then the database will add .000000 to it. If you are passing it, then it gets inserted as it is. If nothing else worked, varchar should have worked. There is something else going on....
by DSguru2B
Mon Oct 23, 2006 12:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp and DB2
Replies: 10
Views: 1748

What if you insert something thats on the higher end in the nanoseconds category. Something like
'2006-10-23 17:15:58.835789'
Does that get rounded off too
'2006-10-23 17:15:59.000000' :?:

What if you specify the sql type as varchar, do you still encounter the same problem?
by DSguru2B
Mon Oct 23, 2006 11:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How Do I run DS commands from the command line in Windows
Replies: 8
Views: 1369

O really. Darn, i didnt know that. Never worked on windows server thats why :roll:
by DSguru2B
Mon Oct 23, 2006 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How Do I run DS commands from the command line in Windows
Replies: 8
Views: 1369

make sure you run the dsenv file first.
by DSguru2B
Fri Oct 20, 2006 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wait for file (by autosys or with datastage)
Replies: 6
Views: 2814

You can also look for the files for a specific time period in a day. If all files are found then execute sequence 4 , else end the job. Schedule this to run daily. Or you can also go with Control-M. With control-M, the control wont be in datastage, it will be with the scheduler. As Craig suggested, ...
by DSguru2B
Fri Oct 20, 2006 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need for loop in basic code
Replies: 14
Views: 5526

O yea. I did go through that post but it never hit me. Still too early for me. :roll:
by DSguru2B
Fri Oct 20, 2006 6:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need for loop in basic code
Replies: 14
Views: 5526

When you give the final delimiter as "|". That means, its the final delimiter for the record. You need a carrige return after that.
After a pipe, stick in Char(013):Char(010). Thats the carrige return for a dos file.
by DSguru2B
Fri Oct 20, 2006 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob status code 1 & 2
Replies: 9
Views: 21439

Ok now thats a post worth putting in your favorites bucket for future reference. Great find Kumar :wink:
by DSguru2B
Fri Oct 20, 2006 5:53 am
Forum: General
Topic: IPC Stage vs Row Buffering:
Replies: 2
Views: 2704

An IPC stage can be used in between two active stages. Row-buffering are of two types, in process and inter process. The following is directly out of ds developer's help In process. You can improve the performance of most DataStage jobs by turning in-process row buffering on and recompiling the job....
by DSguru2B
Fri Oct 20, 2006 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while performing operations on the Target table
Replies: 11
Views: 3183

How exactly are you performing Insert, updates and deletes?
Are you seperating them and doing it in three different jobs or a single job?
by DSguru2B
Thu Oct 19, 2006 5:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem to Write into ODBC Enterprise Stage
Replies: 4
Views: 1120

If thats the case then i think the OP needs to contact support.
If i were you, i would have the table already in place. I dont like the idea of creating things on the fly, thats too "at the last moment" for me.
by DSguru2B
Thu Oct 19, 2006 5:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Share Container
Replies: 12
Views: 4043

My initial guess would be the use of resources. As 7 jobs are running in parallel, all using the Shared Container, which inturn, if has complex transformations and use of many stages, can cause errors.
As Craig pointed out, error messages are needed.
by DSguru2B
Thu Oct 19, 2006 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading hash file from job control
Replies: 6
Views: 1557

I was 'gonna'. But Kim beat me to it. :wink:
OPEN and CLOSE for hashed files
OPESSEQ and CLOSESEQ for sequential files
by DSguru2B
Thu Oct 19, 2006 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading hash file from job control
Replies: 6
Views: 1557

Ofcourse you can. Search for OpenSeq , CloseSeq commands. Also you can look into your Basic.pdf file.
by DSguru2B
Thu Oct 19, 2006 10:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing before routine output in the datastage job parameter
Replies: 11
Views: 8777

Nop. Sorry, wild cards are not allowed in a server job. You will have to pre-determine the values of all the parameters and pass it to this job.