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.
Search found 42189 matches
- 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
- Thu Jul 19, 2007 6:37 pm
- Forum: General
- Topic: importing .gz file from unix server and unzip
- Replies: 9
- Views: 2708
- 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...
- 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
- 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
- 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:
$- 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
- 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
- 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 ...
- 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
- 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
- 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
- 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?
- 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
- 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...