A big question indeed. I doubt that there is one script that does everything you want all at once, so you would be best to take things one at time.

First of all, look here for a good introductory tutorial that should head you off in the right direction. Perl Monks' own tutorials contain a wealth of information.

Next, epoptai's home node has links to a number of online books that you might want to keep handy. You might want to consider reverse engineering the scripts you have using these books, since (I assume) you know what they do, if not exactly how they do it.

Not sure what a particular function does? Try "perldoc -f" followed by the name of the function at the command line...

Specifically regarding databases and Perl, I found this tutorial very clear and concise for a newbie like me:

One of the most confusing things I found about Perl when I first started where the regular expressions (seen something like s/\t.?\\s/ in your code?). Check out String matching and Regular Expressions and Common Regex Gotchas for help on this issue.

I hope this has been of some help. Good luck...

*~-}o{-~*


In reply to Re: Perl scripts to do extraction into Sybase by hotyopa
in thread Perl scripts to do extraction into Sybase by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.