Search found 37 matches

by sashah
Tue May 29, 2007 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issues Loading csv file into a Oracle Database
Replies: 7
Views: 2454

The error message is required column is missing. The reason I am getting this is because I have mapped the sequential file columns with the columns in the oracle table. In the CSV file I have **DISCLOSURE** text in one of the columns at the end of file and nothing in the other columns. I want to fil...
by sashah
Tue May 29, 2007 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issues Loading csv file into a Oracle Database
Replies: 7
Views: 2454

Issues Loading csv file into a Oracle Database

I have a datastage job that loads a csv file into an Oracle Database. The csv file has some disclosure text at the bottom which prevents the file from being loaded. Is there a way I can filter out this unwanted text while loading the data.

Thank you
by sashah
Fri May 18, 2007 9:18 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

I have a column in a CSV file that holds Decimal values. However there are some rows with N/A in it. Can I use the Digit function or is there something available that would ignore NA. Thank you. I will do that. Thank you. These are primary questions and are discussed before. Try searching for them b...
by sashah
Wed May 16, 2007 10:53 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

I will do that. Thank you.
DSguru2B wrote:These are primary questions and are discussed before. Try searching for them before asking.

Code: Select all

dsjob -run -jobstatus -param .....
RetCd=$?
RetCd will have the jobstatus.
Really, please search before asking.
by sashah
Wed May 16, 2007 9:27 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

Thank you. That worked. How do I get the status of DSJob in a variable and is there a parameter that I need to pass for DSJob to return the status.
DSguru2B wrote:You need quotes. Your param should look like

Code: Select all

dsjob -run -param 'FILENAME=/path/of/3 February 2006.csv' 
by sashah
Wed May 16, 2007 8:03 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

I am passing the file path and file name as a parameter to the Sequential File stage using DSJob that is called from a unix script. So you have a file with the name '3 February 2006.csv' ? How are you opening this file in your script? First of all you have spaces in the name of your file, not a good...
by sashah
Wed May 16, 2007 7:45 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

Thank you. I get an error Status code = -9999 DSJE_DSJOB_ERROR when I am calling DSJob from a Unix script. This job only fails for the file with the name as 3 February 2006.csv. When I test the same from within Datastage it works fine. Can someone please tell me what I is incorrect out here. Look in...
by sashah
Tue May 15, 2007 10:21 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

I did that and when I ran it I see this error in the director

|MLConvertibleHistoryLoad..Sequential_File_23.DSLink39: DSD.SEQOpen No Filename to open..|
Thank you
DSguru2B wrote:Compile the job. DSJE_BADSTATE is indicating that the job is not in a runnable state.
by sashah
Tue May 15, 2007 9:54 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

Need more help

I get Status code = -2 DSJE_BADSTATE when executing the DSJOB command in a Unix script. I am passing the file name to Sequential File stage in a loop. This is to merge all the files in a directory into one.
DSguru2B wrote:You gave -warn two times. Only one is needed.
by sashah
Tue May 15, 2007 8:15 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

I get Invalid Arguments. This is the command I am executing. eval $DATASTAGE_HOME/DSEngine/bin/dsjob -run -warn -param accountNumber=$accountNumber -param fileName=$fileName -param lookUpFile=$lookupFilePath -param outputFileName=$outputFile -warn 5 MuniStQa MLConvertibleHistoryLoad Am I missing som...
by sashah
Tue May 15, 2007 8:04 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

Thank you
chulett wrote:
sashah wrote:or -param name1=value1 -param name2=value2
That way.
by sashah
Tue May 15, 2007 7:57 am
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

Thank you for your reply. I am going to try this. However I had a question related to command line interface. How do you pass multiple parameters to DSJob ? Is it -param name1=value1,name2=value2 or -param name1=value1 -param name2=value2 Thank you again. I am still not clear on how to use the Filte...
by sashah
Mon May 14, 2007 12:31 pm
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

I am still not clear on how to use the Filter option to process files in a directory.
chulett wrote:No, wildcards in the Filter option of the Server Sequential File stage. ...
by sashah
Mon May 14, 2007 12:24 pm
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

Thank you.
DSguru2B wrote:Check the section 'Command Line Interface' in Server Job Developer's Guide.
by sashah
Mon May 14, 2007 12:08 pm
Forum: General
Topic: Processing files in a directory
Replies: 44
Views: 14961

Thank you for all your help. Can you tell me which reference manual to refer to for calling the DSJob from a Unix prompt. I found some older post in this forum regarding the same but I could not find the reference manual to refer to. I have already written a shell script that loops through files in ...