Search found 15603 matches

by ArndW
Thu Jun 25, 2009 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: patch to connect to sqlserver2005
Replies: 9
Views: 2764

Sorry for digressing. Have you checked your SQL Server documentation for native code 11? The SQL code 01000 denotes a warning in SQL server, if I recall correctly.
by ArndW
Thu Jun 25, 2009 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installing DataStage 8.1 on AIX
Replies: 9
Views: 4868

Unfortunately HACMP does not continue the job or session.
by ArndW
Thu Jun 25, 2009 4:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need the Date Conversion
Replies: 2
Views: 1381

Actually, it looks like you are getting an Oracle abort and you should check the log file. The warnng on date conversion results in a null result. You can avoid that warning by implementing IsValid() in your transform stage.
by ArndW
Thu Jun 25, 2009 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: patch to connect to sqlserver2005
Replies: 9
Views: 2764

ray.wurlod wrote:
chulett wrote:Define "not working" please.
Another word for "not working" is unemployed
Some people define "not working" as being an IT consultant. Actually the full line should be "Not working, but being paid for it."
by ArndW
Thu Jun 25, 2009 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IS8.1 --> Linux 64 Bit - Performance issues
Replies: 12
Views: 4563

bobyon, please take a look at your uvconfig file. I've noticed that the MFILES setting at 8.0.1 defaults to 12 - a ridiculously low number. If you have several jobs running and several users developing the system will quickly use up all 12 file units and start "swapping" them. In our devel...
by ArndW
Thu Jun 25, 2009 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help on parallel routines
Replies: 7
Views: 2015

So you entered the UNIX command "/opt/SUNWspro/bin/CC -dalign -O -PIC -librar=iostream -c test.cpp" and created a object file. The object file needs to be linked and then it can be bound into a job and exectued.
by ArndW
Thu Jun 25, 2009 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential files - flush option?
Replies: 2
Views: 844

Buffering is always a tradeoff - by increasing the buffer sizes you also increase throughput but, in the case of failure, you will lose more data. Since DataStage jobs generally are all-or-nothing there is no benefit in force-writing data more frequently. But if you do require more frequent flushing...
by ArndW
Wed Jun 24, 2009 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQS.DLL FAILED TO LOAD
Replies: 7
Views: 4741

None of those three directories are in the runtime "LIB" path, which explains your error message. Now you need to figure out why your LIB variable is so small. I don't have a Windows installation, but perhaps someone here who does could post their LIB environment value.
by ArndW
Wed Jun 24, 2009 10:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installing DataStage 8.1 on AIX
Replies: 9
Views: 4868

We have the HACMP setup this way. Our transactions are processed from (and to) MQ; once a system fails and switches to another DataStage server we can continue where we left off because of the way we use MQ for transactions. In other implementations the running job would abort and, depending on how ...
by ArndW
Wed Jun 24, 2009 9:56 am
Forum: General
Topic: Median Calculation
Replies: 36
Views: 10179

Umm, just checked the routine. Change

Code: Select all

      getCMD = "SELECT F1 FMT '20L' FROM myMedian USING DICT VOC ORDER BY F1;" 
to

Code: Select all

      getCMD = "SELECT F1 FMT '20R' FROM myMedian USING DICT VOC ORDER BY F1 FMT '20R';" 
by ArndW
Wed Jun 24, 2009 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creationg of Hashed File
Replies: 7
Views: 1238

Accessing SAP isn't normally done through hashed files; so I don't know how to answer your question.
by ArndW
Wed Jun 24, 2009 8:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to to complie read only routine
Replies: 4
Views: 1331

the search function really is your friend.

I used it to find this thread which goes into both V7 and V8 options.
by ArndW
Wed Jun 24, 2009 8:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: not able to create new project
Replies: 27
Views: 8187

Yes, the square brackets probably prevent parsing of the -fix option.
by ArndW
Wed Jun 24, 2009 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running DSJob through CommandPromt
Replies: 10
Views: 9856

This is just normal Command Prompt 101 stuff that I guess more and more people have absolutely no clue about having grown up in a completely GUI world. [sigh] You said exactly what I have been thinking! Standard shell (and DOS "CMD" is a shell) knowledge should be a prerequisite of any ty...
by ArndW
Wed Jun 24, 2009 8:34 am
Forum: General
Topic: Median Calculation
Replies: 36
Views: 10179

ascen, you just replied to a thread that has been dead for over 2 years. And I don't understand how what you did post applies to median calculations?