Search found 4992 matches
- Sun Aug 13, 2006 6:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Question about dual core CPUs and hyperthreading!!
- Replies: 9
- Views: 2400
- Fri Aug 11, 2006 8:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: datastage conversion unix to windows
- Replies: 9
- Views: 4501
- Fri Aug 11, 2006 11:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine to get month-enddate
- Replies: 2
- Views: 802
Here's the trick. Write a function to take a date YYYY-MM-DD, add one to the month and allow for going over 12, then use the ICONV function to make the date the internal integer value. Subtract one from that value and then use OCONV to reformat the date. You will now have the last day of the month f...
- Fri Aug 11, 2006 8:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Question about dual core CPUs and hyperthreading!!
- Replies: 9
- Views: 2400
- Fri Aug 11, 2006 6:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Not able to view data from localuv DSN
- Replies: 5
- Views: 2375
- Thu Aug 10, 2006 1:18 pm
- Forum: Site/Forum
- Topic: Premium Content? (I know its been done to death, but...)
- Replies: 9
- Views: 4732
If you haven't noticed, non-Premium Member questions are being left open for a little while before we jump on it. I've been trying to "promote" other folks by letting them try first, if I don't need to add to it or correct it - I don't. But, if a Premium Member posts something, I'll jump right away,...
- Thu Aug 10, 2006 12:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Question about dual core CPUs and hyperthreading!!
- Replies: 9
- Views: 2400
Dual core means 2 chips on one set of pins. It's truly 2 cpus. Hyper-threading is an Intel trick to simulate 2 chips, but it's really 2 pipelines on one chip. Both show up to Windoze as 2 chips. Given a choice, dual core is the one to want. Hyper-thread is about 1.2X the power (in ideal situations),...
- Thu Aug 10, 2006 12:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: "DSD.GetStatus": Line 25, Read operation failure.
- Replies: 6
- Views: 1497
- Thu Aug 10, 2006 10:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: "DSD.GetStatus": Line 25, Read operation failure.
- Replies: 6
- Views: 1497
- Thu Aug 10, 2006 10:32 am
- Forum: Site/Forum
- Topic: Premium Content? (I know its been done to death, but...)
- Replies: 9
- Views: 4732
Here's something to think about: The constant answering of all "small issues" questions by the Premium Posters has actually harmed this site. There are 100's of members who could have answered, but don't, because they know that the top posters will swarm on the question and answer it. This means tha...
- Thu Aug 10, 2006 10:08 am
- Forum: Site/Forum
- Topic: Premium Content? (I know its been done to death, but...)
- Replies: 9
- Views: 4732
Premium Membership only buys you the "privilege" of viewing extended answers from 6 individuals. Other experts have no restriction on posting and sharing answers. All complaints center around 6 individuals' answers. The future of the site will include video and audio. Who's paying for that developme...
- Wed Aug 09, 2006 6:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to get number of working days in a month in SQL
- Replies: 12
- Views: 4485
- Tue Aug 08, 2006 8:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to get number of working days in a month in SQL
- Replies: 12
- Views: 4485
Re: How to get number of working days in a month in SQL
hariprasad wrote:My Database is Oracle.kcbland wrote:DATABASE? ...
Fantastic, but it's not your question to answer. A person demanding a database specific query solution should have the courtesy to tell us the database they are using.
Else I'll be tempted to answer with SQL for the most arcane RDBMS I can think up.
- Tue Aug 08, 2006 8:09 pm
- Forum: General
- Topic: Index Sequential File?
- Replies: 8
- Views: 4390
DataStage does not have anything like this, it doesn't read or write these. The Sequential stage is a traditional sequential textfile reader/writer.
A quick google found this for your reading pleasure:
http://www.theteacher99.btinternet.co.u ... p5_7_1.htm
A quick google found this for your reading pleasure:
http://www.theteacher99.btinternet.co.u ... p5_7_1.htm
- Tue Aug 08, 2006 8:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Simple Execute Command Activity
- Replies: 8
- Views: 4446
First: DataStage does not run GUI programs, it moves data around. If you want to see it run a OS command, you can start with a simple test. Just try "echo 'hello world". You should be able to read the job log and see the message. After that, it's up to you to make sure that directory paths are accur...