archives

FAQ 9.8 How do I fetch an HTML file?

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] .

SQL Query

I have three table with the following structure DomainTechDetails(DomainID,Dom ainName, ....) Domains(DomainID, CustomerID, ...) Customers(CustomerID, CustomerName, .... ) how do i retrieve the First DomainName for All Customers?

Ignore empty lines and ones that start w/...

While reading a file, ignoring empty lines seems pretty straightforward, but how can I ignore a line that starts with something like <-- which I use for comments. ex: <-- Title --> <-- Date --> ... info to parse ...

Cross platform TTS

Hi, I try to tansport a tablespace from AIX to Windows (10.2.0.3) convert with RAMN is OK When I import metadata to the windows database I get the error below Can you help me ? Thanks in advance Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Produc tion With the Partitioning, OLAP and Data Mining options

FAQ 9.18 How do I decode a MIME/BASE64 string?

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] .

Is PRIDE too rigid?

Discusses the implementation of a robust Systems Design Methodology.

Thread alternative for multi-processing?

Sometimes, I want to take the advantage of multi-core processor, and make the full use of my CPU time, e.g. I have a function, which takes a file name as input, do some text processing (e.g. CPU intensive), and save it back. I don't want to use thread, as it need to recompile perl on all my machines and I am not sure if it is stable enough to affect other

ПОИСК ВАШИХ ОДНОКЛАССНИКОВ

ПОИСК ВАШИХ ОДНОКЛАССНИКОВ [link] Регистрация. Выберите регион, в котором вы учились в школе

I was absolutely flabbergasted, when I found out...

I was absolutely flabbergasted when I found out that Oracle has intentionally left all exercises out of it's World A9.1 and EnterpriseOne 8.12 manuals.

How to find all IBM Information Server Products and Addons

The IBM Information Server has a lot of products, addons and partner offerings and I've tried to create an index page of goodies in the ITToolbox wiki.

EDB Tip #4: Database Links in EDB

LewisC's An Expert's Guide To Oracle Technology This tip relates to the latest version of EnterpriseDB's Advanced Server (AS) product. This is the commercially licensed database that provides Oracle compatibility. I have spoken quite a bit

FAQ 9.21 How do I use MIME to make an attachment to a mail message?

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] .

Unlink command for opened files

When a file is open does unlink automatically deletes the file or it generates an error. Because I wrote a program to delete a file and regenerate the file. if the file is not deleted the data simply gets appended to the existing file. which results in wrong results