Search found 10 matches

by dstage443
Tue Jun 10, 2008 10:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSjobreport error on passing arguments
Replies: 1
Views: 1780

DSjobreport error on passing arguments

i am passing the input values to DSjobReport as
1;c:\temp\;


but when i run it ...there is an error in the log sayin

(DoJobReport): Failed to open directory c:\temp\

what are the parameters for this function
by dstage443
Tue Jun 10, 2008 10:04 pm
Forum: General
Topic: dsjobreport argument
Replies: 4
Views: 4125

dsjobreport argument

i am passing the input values as
1;c:\temp\;
for the dsjobreport

but when i run it ...there is a error
(DoJobReport): Failed to open directory c:\temp\

how should i pass on the parameters ....i have datastage on a Windows system
by dstage443
Tue Jun 03, 2008 7:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing into a text file
Replies: 7
Views: 3768

but wher do you actually write the code so that i can execute this code in datastage so that it will write into my file

OpenSeq "c:\TEST\TEMP.TXT" To TestVar Then
WeofSeq TestVar ;
WriteSeq "test line -- writing a line into file" To TestVar;
by dstage443
Tue Jun 03, 2008 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing into a text file
Replies: 7
Views: 3768

well thanks for the replies .... i am reading the books but i am not even half way through ....
by dstage443
Tue Jun 03, 2008 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing into a text file
Replies: 7
Views: 3768

Writing into a text file

I need to write some predefined/static text and also some variables such as DSgetlinkinfo and someother parameter values into the File.

what are the functions to write into a sequential file. .... how can this be done
by dstage443
Sun Jun 01, 2008 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: automated sequence numbers
Replies: 12
Views: 5612

@INROWNUM or @OUTROWNUM was the one that worked for me
by dstage443
Sun Jun 01, 2008 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading file validations and log file
Replies: 5
Views: 3083

reading file validations and log file

i get a CSV file i am reading it and inserting/updating a table based on conditions I need to get the values of how many rows are in the file: Is there any function that does this how can i know which row number from the file is being processed ...so that if that row fails i can insert into log file...
by dstage443
Thu May 29, 2008 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: automated sequence numbers
Replies: 12
Views: 5612

there is no number in line num field ...i need to generate a sequence which will increment by 1 each time i insert
by dstage443
Thu May 29, 2008 2:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: automated sequence numbers
Replies: 12
Views: 5612

automated sequence numbers

i am trying to load a file into a table...whenever i load each row i need to increment the value of the line num field by 1 and insert it into the line number field of the table ...how do i do this.

also how can i set default values ....most of the fields in the tables should be set to default ....
by dstage443
Wed May 28, 2008 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date error
Replies: 1
Views: 1466

date error

i am trying to load a csv file into a table ... [DataStage][SQL Client][ODBC][Oracle][ODBC]Datetime field overflow. i am getting the following error .... the date field is in M/DD/YYYY FORMAT AND the date format for oracle database is DD-MON-YY ... im just starting my first task in datastage so any ...