Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Need a good Internet Mail Server

    Another good free alternative could be 'Mercury' which is the complementary Mail Transport for the email client 'Pegasus Mail'. See http://www.pmail.com/.

    While I haven't used it in anger myself I did...

  • RE: Table backup

    Here is an inelegant but straight forward way we use of creating a quick backup of a table in the same database:

    select *

    into [backup_table_name]

    from [source_table_name]

    Might not be a good method...

Viewing 2 posts - 1 through 2 (of 2 total)