archives

Complex Data Sharing Using XSLT and XPath - Integration Developers

Complex Data Sharing Using XSLT and XPath Integration Developers, CA - 23 hours ago Rendon: The first and most important thing that programmers need to understand about XSLT is that it isn't intended to be a general-purpose conversion tool.

FAQ 9.3 How can I get better error messages from a CGI program?

This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

FAQ 8.44 How do I tell the difference between errors from the shell and perl?

This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

Six New Monitoring Plug-in's Are Available for Oracle Enterprise Manager

Oracle just announced the availability of six new system monitoring plug-in's to extend Oracle Enterprise Manager Grid Control's ability to monitor third party applications and technologies. These plug-in's support two commonly used applications - Microsoft Exchange and SAP R/3. They also cover infrastructure technologies such as

Time::HiRes < 1.91 and glibc 2.4 incompatibility

A long time ago I found a very peculiar timing bug in my open source performance monitoring tool 'collectl' - I discovered that when glibc went from version 2.3 to 2.4 it changed the time resolution from microseconds to nanoseconds, going from 32 bits to 64 bits. It also tuned out at the time the only one to make the move to that newer glibc

FAQ 8.48 How do I add the directory my program lives in to the module/library search path?

This is an excerpt from the latest version perlfaq8.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

Oracle 11 and NLS Indexes

Folks, We've got an application that runs right now on Oracle 10g. The app runs with NLS sorting and comparisons on e.g. ALTER SESSION SET NLS_COMP=LINGUISTIC ALTER SESSION SET NLS_SORT=BINARY_CI To make this work efficiently, we added a large number of functional indexes on commonly access colums e.g.

Install Oracle11g on Linux CentOS-5

An installation guide for Oracle 11g on Linux CentOS-5

FAQ 9.1 What is the correct form of response from a CGI script?

This is an excerpt from the latest version perlfaq9.pod, which comes with the standard Perl distribution. These postings aim to reduce the number of repeated questions as well as allow the community to review and update the answers. The latest version of the complete perlfaq is at [link] .

Yes, this is probably a stupid question but...

We have an application that stores operational data as a single master table and a set of child tables. Based on the class of data, a different child table gets joined in e.g. master inner_join pets -> gives us pet data master inner_join cars -> gives us car data It works reasonably well, and it makes the developer's lives easier.