is there any point learning about and using MS SQL DTS when many of the tasks can be performed adequately using Perl.

It's always useful to know multiple ways to accomplish a task, esp, when so many solutions will be pre-created in another language for you.

There are a few things DTS, esp. in combination with the SQL Server Wizards, make easier. For one project, I have a DTS package that backs up my PROD DB to DEV, for testing and the like. Could I do it in Perl? Sure. But it was much easier to use the DTS-based Import/Export tool.

In general, I think it's best to learn as much as you can about a tool, and then see if using it fits your application/development focus. Obviously, you lose portability of code with DTS, and that's one major reason I shy away from its use, save with purely "backend" work like the DB backup mentioned above.

Learn DTS, learn Transact SQL, but also learn how to code well in Perl. The more you know, and the better you balance depth and breath of knowledge, the better your applications will be.

----Asim, known to some as Woodrow.


In reply to Re: MS SQL DTS Packages by Asim
in thread MS SQL DTS Packages by Win

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.