Search found 42189 matches

by chulett
Thu Jul 19, 2007 6:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: importing job from a protected project
Replies: 4
Views: 1523

No, the 'protection' - which in this case is actually 'ReadOnly=1' - comes along for the ride during the export from a Protected Project. If you wanted to lose it, you'd have to edit the dsx before you imported it anywhere else.

ps. Interesting that QA is protected but Production is not.
by chulett
Thu Jul 19, 2007 6:37 pm
Forum: General
Topic: importing .gz file from unix server and unzip
Replies: 9
Views: 2708

Are you and "kum_d" working together on this? If not, do you have DataStage installed on a UNIX server? If so, there must be someone in your organization that can help you with a simple shell script like that.
by chulett
Thu Jul 19, 2007 6:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Could not install multiclient manager
Replies: 2
Views: 1029

Re: Could not install multiclient manager

I was supecting that we might have to install multiclient manager first, then 7.5 version, but not 100% sure about that. No, installing it 'last' is perfectly fine. Are you certain it didn't actually install successfully? It's been too long, but I vaguely recall the installation being somewhat... g...
by chulett
Thu Jul 19, 2007 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access unix value in DS job
Replies: 7
Views: 1666

Interesting... I hadn't realized that the @USERx system variables in a before job routine would be visible inside the job itself. I'll have to keep that in mind. 8)
by chulett
Thu Jul 19, 2007 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize the connection to oracle server
Replies: 5
Views: 1714

:!:
Me? Sorry, no. I learned long ago the difference between feces and a fetus and promised my Mom I wouldn't mix them up again.
by chulett
Thu Jul 19, 2007 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ora-3113 error during a commit
Replies: 2
Views: 1096

Yah, I loves me that utility:

Code: Select all

$ oerr ORA 3113
03113, 00000, "end-of-file on communication channel"
// *Cause:
// *Action:
$

:wink:
by chulett
Thu Jul 19, 2007 6:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a user that has equivalent rights to dsadm
Replies: 6
Views: 1380

:? "Power Broker"? Linky?
by chulett
Thu Jul 19, 2007 6:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fatal error in Server job due to ds_uvput()
Replies: 4
Views: 1640

Does another run of the 'same file' guarantee that the exact same records will be written to the hashed file? If that's the case and no job changes were made between runs, is there any chance that you ran out of disk space where that hashed file lives on the first run?
by chulett
Thu Jul 19, 2007 6:13 pm
Forum: General
Topic: importing .gz file from unix server and unzip
Replies: 9
Views: 2708

No, the FTP stage cannot handle compressed or zip or binary (etc) files. It does a metadata driven record by record transfer rather than just streaming bytes, which means text files only. "I need to implement this using datastage only" I don't understand restrictions on using scripts or the O/S for ...
by chulett
Thu Jul 19, 2007 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error vmdsobj.dll while opening DataStage Designer
Replies: 9
Views: 4930

Ah... thanks for posting that. Now time to mark your post as Resolved.
by chulett
Thu Jul 19, 2007 7:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert bigint 64bit into int 32bit
Replies: 4
Views: 1024

Sorry, but I have no idea what you just said. There's no "conversion" in this kind of operation. :?

And if you don't need "exact data as it is in the source" why state "I don't want to lose any data and can't strip data"?
by chulett
Thu Jul 19, 2007 7:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize the connection to oracle server
Replies: 5
Views: 1714

Yuck, a fetal error. :wink:

There should be more to the error than that, something that should explain why it couldn't 'initialize the connection'. Can you post all warnings or messages related to this?
by chulett
Thu Jul 19, 2007 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert bigint 64bit into int 32bit
Replies: 4
Views: 1024

Re: convert bigint 64bit into int 32bit

kavuri wrote:I need to convert a bigint (64bit) into int (32bit). I dont want to lose any data and I cant strip data.

Then you are out of luck when the value in your bigint exceeds what can be stored in the int. What then? :?
by chulett
Thu Jul 19, 2007 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access unix value in DS job
Replies: 7
Views: 1666

And you've been given two different approaches to do that.
by chulett
Thu Jul 19, 2007 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need function in datastage to convert string datatype todate
Replies: 4
Views: 4726

Re: Need function in datastage to convert string datatype to

hello, if your target column is for database then you need to use database specific date formating like to_date(), otherwise just check for proper length for that date column. First get it into the 'proper' format then let the SQL generate with the correctly masked version of TO_DATE(), whatever th...