Search found 4992 matches

by kcbland
Fri Jul 21, 2006 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTPing a file to LAN
Replies: 6
Views: 1060

If you're just moving a file around don't use the FTP stage use command line FTP or SCP. That being said, a LAN is a physical server. You need the IP address of that server and a valid userid with credentials.
by kcbland
Fri Jul 21, 2006 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet Vs Database
Replies: 2
Views: 763

The concept of pipeline parallelism means that the data is flowing across all stages. In your diagram, I don't see why the data won't be coming out of the source database while other data is already loading into the database. The exception would be if you introduced synchronization stages that cause...
by kcbland
Fri Jul 21, 2006 7:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UserDefined SQL for inserting Timestamp in DB2
Replies: 3
Views: 1595

There is no internal DS Timestamp, only Date and Time. Try setting your metadata on the column to VARCHAR and seeing if it will load. Also, if using auto-generated SQL, look at the SQL DataStage writes when th data type is Timestamp. If it doesn't add any DB specific conversion functions, then it's ...
by kcbland
Fri Jul 21, 2006 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: System level public hashed file sharing question
Replies: 6
Views: 1576

When it came out in 5.0 I was sooo excited. I never got it work right and also experienced the hangings. I have shunned it as well and not revisited it since.
by kcbland
Thu Jul 20, 2006 10:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: inserted value too large for a column
Replies: 2
Views: 692

Welcome aboard! Why are you posting in the MetaData forum? This doesn't seem like a MetaStage question. To answer the question, your data is too big for the column. if the data type and size of the target column is VARCHAR(20), do you think you should be able to put more than 20 characters into that...
by kcbland
Thu Jul 20, 2006 9:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data transfer issue - is NFS a good solution
Replies: 9
Views: 2534

You're just simplifying the administration. For small files performance won't be that bad, but for big files you'll see it's just like FTP. For big files, compression and high-performance ftp or scp followed by local decompression can be faster, but it's more programming. I don't mind the compress, ...
by kcbland
Thu Jul 20, 2006 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of selfmade routine
Replies: 14
Views: 2643

Thanks, that simple comma changes the tone.
by kcbland
Thu Jul 20, 2006 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ds_loadlibrary error
Replies: 8
Views: 2663

It means the client was not installed as administrator, you'll need to get that client folder opened up in permissions.
by kcbland
Thu Jul 20, 2006 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Efficient way of copying rows and dropping columns
Replies: 4
Views: 862

Sure, just write a SQL script and have DS execute it.
by kcbland
Thu Jul 20, 2006 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of selfmade routine
Replies: 14
Views: 2643

ray.wurlod wrote:You can do it in SQL with SQL functions, not with DataStage functions as Ken indicated.


You slight me sir :lol: I said no such thing. Please re-read my post.
by kcbland
Thu Jul 20, 2006 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job performance
Replies: 8
Views: 1879

The first question to be answered in performance tuning is: Are all available processing resources being utilized? In other words, if all of your cpus are busy for one hour, where would you go to get more processing completed? There's no cpu time available to do more work. So, use your unix environm...
by kcbland
Thu Jul 20, 2006 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to decrease the retrieval time from database
Replies: 5
Views: 1402

If the expected output is 10 rows, then your problem is now the time it takes to fetch and move the data out of the database, but the time to construct the result set. Your solution is to tune the SQL. If the expected output is 100000000 rows, then your problem is probably the fact you're moving a l...
by kcbland
Thu Jul 20, 2006 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of selfmade routine
Replies: 14
Views: 2643

Welcome aboard. If your database supports creating functions, that's where you need to do it. DS Functions are only good inside DS. When DS issues the SQL to the souce/target database the SQL is in the hands of the database, any use of functions in the SQL must be valid within the database itself. I...
by kcbland
Wed Jul 19, 2006 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase and Oracle errors
Replies: 27
Views: 9465

And not using EXPORT causes your changes to be just an exercise in typing.
by kcbland
Wed Jul 19, 2006 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase and Oracle errors
Replies: 27
Views: 9465

Where are your EXPORT statements after you set the environment variables? If you look at the dsenv file, you'll see you didn't do it right.