Search found 15603 matches

by ArndW
Tue Aug 15, 2006 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ftp or copy
Replies: 14
Views: 3810

If you have scp or rcp installed then they are easier to use; I look at them as modern extensions to ftp... they also allow you to copy directories, which the standard ftp protocol does not.
by ArndW
Tue Aug 15, 2006 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim on char datatype
Replies: 11
Views: 4120

Convert your dataset to VarChar(40) and trim your strings.
by ArndW
Tue Aug 15, 2006 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ftp or copy
Replies: 14
Views: 3810

I now see why you wanted to use the drag-and-drop interface. When you use ftp you need to do: a) "connect <remotemachine>" b) "cd <remotedirectoryname>" c) "lcd <localdirectoryname>" d) "put <filename>" to copy local file to remote or "get <filename>" to copy remote file to local machine.
by ArndW
Tue Aug 15, 2006 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLI for oracle, informix and SQL server
Replies: 8
Views: 1779

You should use the documentation you have at your site.

Oracle - use sqlplus
Informix - use dbaccess
SQL Server - don't know.
by ArndW
Tue Aug 15, 2006 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCONV Failed Error
Replies: 9
Views: 4021

...Moreover, the job works perfectly fine when I remove incremental processing (upsert all records from source)... Well, what does or doesn't get processes when you do that? Remember, we don't have your job to look at so your statement doesn't help us try to localize the problem. Does the problem g...
by ArndW
Tue Aug 15, 2006 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ftp or copy
Replies: 14
Views: 3810

Suggestion: Don't use a 3rd party FTP tool, open up a session in UNIX and use the builtin FTP command, it might not be drag-and-drop but it will work.
by ArndW
Tue Aug 15, 2006 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Folder stage equivalent in PX
Replies: 8
Views: 5233

Odd, I do.

Do "Read Method" = "File Pattern",
then put your wildcarded string into "File Pattern"
by ArndW
Tue Aug 15, 2006 9:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCONV Failed Error
Replies: 9
Views: 4021

That is really strange, especially since a HEX conversion seems to be done. I'm at a loss - what is the derivation for the column PRODUCT_DESCRIPTION? Also, does the error go away if you just output to a sequential file instead of to a ODBC stage?
by ArndW
Tue Aug 15, 2006 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ftp or copy
Replies: 14
Views: 3810

the FTP process shouldn't fail, or when it does it will give a better error. Yo are probably using Hummingbird to connect to your UNIX machine, or are you using a special FTP tool/program? You do have other options in UNIX such as an NFS mount or things like scp and rcp ; but most likely you will se...
by ArndW
Tue Aug 15, 2006 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCONV Failed Error
Replies: 9
Views: 4021

Can you also post what your OCONV() statement is?
by ArndW
Tue Aug 15, 2006 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLI for oracle, informix and SQL server
Replies: 8
Views: 1779

All of these products have their own command-line driven interface. You will need to issue commands to login, set schema, execute query/command and logout; each of the 3 has a different method for connecting and it's own syntax. From DataStage you can shell out to UNIX using DSExecute() and similar ...
by ArndW
Tue Aug 15, 2006 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLI for oracle, informix and SQL server
Replies: 8
Views: 1779

All of these products have their own command-line driven interface. You will need to issue commands to login, set schema, execute query/command and logout; each of the 3 has a different method for connecting and it's own syntax. From DataStage you can shell out to UNIX using DSExecute() and similar ...
by ArndW
Tue Aug 15, 2006 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim on char datatype
Replies: 11
Views: 4120

Trimming a CHAR(10) field with the value of "hello " will result in a value of "hello " (i.e. unchanged!) if it is being put back into a CHAR(10) field. You need to ensure that your comparison works on identical data types. If you do a transform stage and execute a derivation "IF TRIM(In.CharField)=...
by ArndW
Tue Aug 15, 2006 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access ODBC to database Postgres
Replies: 2
Views: 843

ODBC Solaris drivers for PostGres can be found here
by ArndW
Tue Aug 15, 2006 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Lookup
Replies: 10
Views: 2948

Do you have a hidden null in the key string?