Search found 15603 matches

by ArndW
Tue Sep 01, 2009 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run two sequencers from one shell script
Replies: 2
Views: 1021

There is no problem in doing this. You call up your job sequence with a "dsjob" command using a list of parameters, then do it again with different parameters for the second job.
by ArndW
Tue Sep 01, 2009 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run two sequencers from one shell script
Replies: 2
Views: 1021

There is no problem in doing this. You call up your job sequence with a "dsjob" command using a list of parameters, then do it again with different parameters for the second job.
by ArndW
Tue Sep 01, 2009 12:23 am
Forum: General
Topic: Calling a script through a routine
Replies: 6
Views: 1809

I am not sure if you are aware of the performance impact of calling a perl script once per row in your job. Are you certain that you cannot emulate your regular expressions within DataStage?
by ArndW
Mon Aug 31, 2009 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Varchar(max) datatype not supported in 8.1
Replies: 3
Views: 2299

If you declare it as VarChar(4000) in your job, what is the error message you get?
by ArndW
Mon Aug 31, 2009 10:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exec Command Activity not executing properly
Replies: 1
Views: 785

The job stays and waits until the .bat file returns control to it; so most likely the script is hanging (quite often the cause is an "input" that is required that never gets answered)
by ArndW
Mon Aug 31, 2009 5:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ftping an excel file
Replies: 3
Views: 1626

You cannot FTP a remote Excel file from inside DataStage and be able to parse the contents. Do you have an ODBC or other driver on your Linux server which can read excel files?
by ArndW
Mon Aug 31, 2009 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV error occured during loading the data
Replies: 26
Views: 13261

During that 30 minute wait time you should have a DBA monitor your session and find out what is happening.
by ArndW
Mon Aug 31, 2009 4:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import from fixed length file
Replies: 51
Views: 13575

What data type is "REC_TYPE" - I would wager it is "VarChar" - which isn't a fixed length.
by ArndW
Mon Aug 31, 2009 3:11 am
Forum: General
Topic: 'Unable to save editServ.impl.Jobdefnimpl@2db1e166
Replies: 7
Views: 4643

Is it just some jobs or all jobs that cannot be changed and saved? With V8 the repository has become more complex and your error seems to indicate problems in the repository. One could try a complete shutdown and restart of the IIS application to see if that might make a difference.
by ArndW
Mon Aug 31, 2009 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.BCIGetByKey call to SQLExecute failed.
Replies: 6
Views: 2250

A quick Google showed: Error code: 6091 TYPE_MISMATCH_BETWEEN_ATTRIBUTE_AND_ CONSTANT_ ON_EXPRESSION Cause: The type of the constant used for comparison in the expression does not match the type of the attribute. What is the column data type that you are lookup up on? Could there be a type mismatch ...
by ArndW
Mon Aug 31, 2009 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import from fixed length file
Replies: 51
Views: 13575

The sequential file stage can read and write fixed width files with or without delimiters. Just specify record length of "fixed" type file and delete the delimiter property.
by ArndW
Mon Aug 31, 2009 1:15 am
Forum: General
Topic: Calling a script through a routine
Replies: 6
Views: 1809

Do you mean a C++ routine or a DS Basic routine? You posted in General, but as a PX type and the answer depends upon where you wish to execute a shell command from.
by ArndW
Mon Aug 31, 2009 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.BCIGetByKey call to SQLExecute failed.
Replies: 6
Views: 2250

Please give a bit more information, as just the SQL error message doesn't help much. Does the error only occur in one job, or on one particular key? Does ODBC read for that table work (i.e. as a source, not a lookup)?
by ArndW
Mon Aug 31, 2009 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV error occured during loading the data
Replies: 26
Views: 13261

Apart from running in one node, can you try using "APT_ORA_WRITE_FILES" to keep the oracle loader files and to see if that can be run outside of DataStage without a problem?
by ArndW
Fri Aug 28, 2009 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: serach for a particular word
Replies: 3
Views: 883

Code: Select all

Index(In.Column,"BANK",1)
will return a 0 if "BANK" is not in the string, otherwise the location of the first occurence of "BANK" in the string.