Forum Replies Created

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

  • RE: Trace data from an App

    The best tool for this is sql profiler as mentioned by AJ Ahrens

  • RE: Trusted Connection and ASP

    for using the trusted connection, just leave the user id and password from the connectionstring parameter (not even mentioning it). It will automatically uses trusted connection to connect to the sql...

  • RE: SQL Mail port

    SQL Mail directly does not use any port communication. Insteady It uses MAPI client to send and receive mails. Once If you create a mail profile that is enough to...

  • RE: Get Second Highest Value

    there is one more way...

    select top 1 id from (

    select top 2 id from tmp_tmp_tmp order by id desc)

    as tmp order by id

     

  • RE: Schedule and e-mail query results in HTML formated email

    this is so simple. we can do it in 2 steps.

    step 1: build the html file using sp_makewebtask

    step 2: by using the sp_smtp_sendmail, you can send mail.

    and sp_smtp_sendmail is a...

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