Search found 174 matches

by hsahay
Tue May 26, 2015 2:36 pm
Forum: General
Topic: job hangs on RESET
Replies: 2
Views: 1675

job hangs on RESET

Hi Another strange problem. Our unix script issues the dsjob command to reset a job. dsjob run -mode RESET -wait <proj> <jobname> After issuing the command, The script hangs. Once this happens, all subsequent unix scripts submitted also start hanging after issuing the reset command. The jobs can be ...
by hsahay
Mon Apr 27, 2015 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed length file where last field is variable length
Replies: 4
Views: 2595

Thanks. Eventually we may have to implement it that way for just this one supplier. Currently, we load hundreds of flat files from different providers and the way we have designed the system, we have a generic load job that uses schema files to do the load. For each new supplier we just create a new...
by hsahay
Mon Apr 27, 2015 10:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed length file where last field is variable length
Replies: 4
Views: 2595

fixed length file where last field is variable length

Hi We need to load a supplier provided file which is supposed to be fixed length but the last field, which is numeric, is not being padded by space to make it fixed length. It is variable length as shown below aaaaBBBBBccccc 9<LF> xxxxBBBBBccccc 43<LF> We are using the following schema file to load ...
by hsahay
Mon Apr 20, 2015 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcopen() - Error in open file/dir
Replies: 2
Views: 5574

Hi

This started happening to me recently.

When i check the /tmp, the file that it is complaining it can't open is very much there.

Then i rerun the job and it succeeds.

So why this error ?
by hsahay
Mon Apr 06, 2015 12:40 pm
Forum: General
Topic: Is it possible to separate DS runtime from the server
Replies: 4
Views: 2613

Is it possible to separate DS runtime from the server

Hi I am just wondering if it is possible to install Datastage runtime separately from the rest of the server. This is my scenario. Currently i have Datastage installed on an AIX machine. I have my unix scripts (ksh) in a folder on this same machine. When the unix script is invoked it does whatever i...
by hsahay
Mon Feb 09, 2015 11:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File for Fixed width Files
Replies: 9
Views: 12294

Eric - I am a little confused on the subject. Actually i implemented the UTF-8 to UTF-16 job after reading this article below that says - "UTF-16 encoding uses fixed 2-byte character codes to represent characters." Here is the link to the article - https://datastagetips.wordpress.com/2011/...
by hsahay
Fri Feb 06, 2015 6:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: strip BOM in schema file
Replies: 2
Views: 3077

Still don't know what property to use in the schema file, but i found a workaround. Apparently, even though i am using a schema file to define the file metadata, i can still go into the sequential file stage, go to OPTIONS and set STRIP BOM=TRUE. At run time, any property that is defined both in the...
by hsahay
Thu Feb 05, 2015 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema File for Fixed width Files
Replies: 9
Views: 12294

UTF8 file can be converted to UTF16LE file by reading the entire line in the UTF8 file as one field and then outputting as UTF16LE. Then use the schema file for UTF16LE as below // Fixed width file record {record_delim='\n',final_delim=none,delim=none,quote=none,charset='UTF-16LE'} ( ServiceName:UST...
by hsahay
Thu Feb 05, 2015 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: strip BOM in schema file
Replies: 2
Views: 3077

strip BOM in schema file

Hi I need to know the property one would use in a schema file to set STRIP BOM = true. I need to do this because the BOM character is ending up in the data and also causing characters to shift 1 position to the right when reading a fixed length file. I have already tried stripbom=true and strip_bom=...
by hsahay
Fri Dec 12, 2014 12:05 am
Forum: General
Topic: Upgrading from 8.1 to 11.3
Replies: 2
Views: 2516

Upgrading from 8.1 to 11.3

Hi guys We are currently running Datastage 8.1 on AIX. Next year we are planning to upgrade to 11.3 on Linux. The plan is to export the jobs from 8.1, import into 11.3, recompile and do regression as well as parallel testing. I know we are covering a lot of years and it potentially could be quite pa...
by hsahay
Fri Aug 01, 2014 11:33 am
Forum: General
Topic: Error: The configuration does not contain the invoking node
Replies: 17
Views: 9318

Change

athos.techsol.com
to just
athos

This kind of a fix worked for us.

When we put servername.ascap.com in the APT file wwe start getting this error.

If we change it to just the "servername" the error goes away.
by hsahay
Tue May 06, 2014 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc stage update table issue
Replies: 3
Views: 2648

Source for date data is oracle table ...traget database is netezza table. issue is with the ORCHESTRATE.FILE_ID_IN when i hard code the value for FILE_ID_IN in the query then job ran fine UPDATE XTABLE SET ORIGINAL_LOAD_DT = ORCHESTRATE.RUNDATE WHERE FILE_ID in ('asdf','zxcv') please advise how to r...
by hsahay
Tue May 06, 2014 1:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc stage update netezza table issue
Replies: 0
Views: 1103

odbc stage update netezza table issue

Hi, I have issue with odbc stage upating the netezza table. Query: UPDATE XTABLE SET ORIGINAL_LOAD_DT = ORCHESTRATE.RUNDATE WHERE FILE_ID in ORCHESTRATE.FILE_ID_IN Passing below values to the odbc stage RUNDATE = '9999-01-01' FILE_ID_IN = ('asdf','zxcv') issue is with the ORCHESTRATE.FILE_ID_IN when...
by hsahay
Mon May 05, 2014 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc stage update table issue
Replies: 3
Views: 2648

odbc stage update table issue

Hi, I have issue with odbc stage upating the table. i have below 2 columns coiming into odbc stage COLUMN NAME SQL LENGTH NULLABLE RUNDATE Date 10 yes CLM_FILE_ID_IN Varchar 255 yes there is only one row coming into odbc stage and value for these columns are RUNDATE = Date CLM_FILE_ID_IN = ('2014040...
by hsahay
Thu Feb 13, 2014 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning 'delim=end' did not consume entire input
Replies: 5
Views: 26375

hey ...thanks for the solution. That worked for me too. Can anybody shine a light on why though ? Most of the file work with final_delim=end ....what does it do when you specify "none" ? Also, why is the documentation on schema file formats so sparse ? The help and guide in datastage does ...