yes, of course. The configuration file is in /usr/local/etc/freetds.conf (depends by version anyway). It's recommended to add an entry for your database connection, such this
[MY_DB_NAME] host = 12.34.56.78 port = 1433 tds version = 7.0 database = my_database user = my_user password = my_password
You can configure all of this options or less. In MY_DB_NAME you create an alias for the configuration; in "host" you enter the db's ip and in "port" the used port (usually 1433 for MS SQL). In "database", if you need, you enter the start database, and you can also add values for "user" and "password". I've seen in various forums that the best working tds's version for MS SQL is 7.0, so it's recommended add the "tds version" value with "7.0" such in the example. After, you can recall this connection configuration simply by the alias, like this /usr/local/freetds/bin/tsql -S MY_DB_NAME. If you're missing the "user" and "password" values nevermind, you can always launch tsql in this way /usr/local/freetds/bin/tsql -S MY_DB_NAME -U my_user, and so on. I hope it's helpful.

In reply to Re^4: issue with DBI and MS SQL SERVER by DanBev
in thread issue with DBI and MS SQL SERVER by DanBev

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.