Forum Replies Created

Viewing 15 posts - 106 through 120 (of 2,487 total)

  • RE: Problem DB Mirroring

    and when specifying computer names you HAVE to use fully-qualified names-that means PROTOCOL:\\COMPUTER.DOMAIN.DOMAINIDENTIFIER:PORTNUMBER

    No you don't, using IP addresses works just as well as using FQDN.

    --------------------
    Colt 45 - the original point and click interface

  • RE: Problem DB Mirroring

    Firstly, check your ip connectivity between the servers. If you have connectivity issues you may need to update the hosts file with the ip addresses of the other servers.

    Secondly, all...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Split function with store procedure

    Ughhh .... try a re-write without a loop and you might get some performance.

    http://philcart.blogspot.com/2007/06/split-function.html

    --------------------
    Colt 45 - the original point and click interface

  • RE: Return Query Text Along With sp_who2 Using SQL 2000

    How about using fn_get_sql instead of dbcc inputbuffer? That way the sql statement won't be truncated. 😉

    --------------------
    Colt 45 - the original point and click interface

  • RE: The Report Builder

    I don't think I was inferring that I couldn't rename the fields, I was just saying that the task was a big chore in building the model.

    There are no tools/wizards...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Executing SQL Server Jobs From An External Scheduler

    Sameer

    Are you running on SQL 2000 or SQL 2005?

    Thinking some sort of query on the sysjobhistory table in the msdb database would be what you're after.

    --------------------
    Colt 45 - the original point and click interface

  • RE: sp_send_dbmail does not work properly

    Do you receive the same "... content restriction ..." message?

    --------------------
    Colt 45 - the original point and click interface

  • RE: sp_send_dbmail does not work properly

    "Inbound" would be when mail is arriving at the mail server, "Outbound" would be when mail is leaving the mail server.

    --------------------
    Colt 45 - the original point and click interface

  • RE: sp_send_dbmail does not work properly

    So the message might be text, what about any disclaimers, etc... that may be added to the outbound email?

    I had one client that had similar problems sending plain text emails...

    --------------------
    Colt 45 - the original point and click interface

  • RE: sp_send_dbmail does not work properly

    "Message rejected due to content restrictions"

    This is a small clue which indicates why the message isn't being received 😀

    --------------------
    Colt 45 - the original point and click interface

  • RE: CLR

    One thing we use CLR code for is sending out alerts via SMS using a web service.

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQL Mail Not Working in SQL 2005

    The usual culprit in this sort of scenario is that you haven't created the Outlook profile using the same credentials that the SQL Server services are using.

    Try logging in to...

    --------------------
    Colt 45 - the original point and click interface

  • RE: how to tune this query

    Just curious, what are you trying to achieve with these two statements?

    CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),

    CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' +...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Convert Row values to Columns

    The closest you're going to get is this tool,

    http://www.geckoware.com.au/Content.aspx?Doc_id=1002

    If that doesn't meet your needs then its time to re-evaluate your desired outcomes.

    I mean really, who is going to look a...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Moving Database to new server.

    To end up with data in different files, you will need to do some sort of data transfer process. Either DTS or BCP will suit your needs.

    Another option is to...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 106 through 120 (of 2,487 total)