Forum Replies Created

Viewing 15 posts - 766 through 780 (of 1,409 total)

  • RE: SQL SERVER DB Mail 2005

    What is the message stated in the [sysmail_event_log].[description] column if you execute the query below?

    SELECT *

    FROM msdb.dbo.sysmail_allitems

    LEFT OUTER JOIN msdb.dbo.sysmail_event_log

    ON sysmail_allitems.mailitem_id = sysmail_event_log.mailitem_id

    ORDER BY

    send_request_date desc

  • RE: SQL SERVER DB Mail 2005

    Is a anti-virus application blocking the mail?

    What if you temporarily(!) turn off the firewall?

  • RE: Having trouble with reports of logship mointor

    Was the server downtime on the SOURCE of the logshipping or on the TARGET?

    You mention the LOG backups are created correctly. Are the LOG backup files being copied correctly? Are...

  • RE: Search Value

    I think that is a going to be very complicated. When the line is commented using "--" you are able to match it with "AND NOT LIKE '%--%' ". But...

  • RE: I want to make my Server 2008 R2 server a dedicated game server.

    You are talking about a configuration of Windows Server. But you are posting this in a SQL Server forum. Many of the readers won't have the proper knowledge to answer...

  • RE: problem with installation of Sql Server Management Studio Express 2008

    Yes, a service pack is always applicable to all editions (standard, professional, etc.).

  • RE: Log LDF file

    Yes

    Restore FULL backup from day 2 (with standby mode) and then restore each LOG backup taken after this FULL backuip up until the point-in-time of your needs.

  • RE: Order by Name not works

    pandiyarajk.rjpm (8/21/2013)


    It is Finnish_Swedish_CI_AS

    With the code below I am able to reproduce the same results. It looks like with this collation the "W" and "V" are treated as the same...

  • RE: enabling page verification

    You can execute this command on-the-fly without effect on the current activities.

    You can also change this setting in the GUI: go to the property of the database and select "Options"....

  • RE: Order by Name not works

    I can't reproduce it on my instance. What is the collation setting of your instance and your database?

  • RE: Email contents of table

    Use the result_seperator option:

    exec sp_send_dbmail

    ...

    @query_attachment_filename = 'sample.csv',

    @query_result_separator = ',',

    ...

  • RE: Email contents of table

    To sent the results on a schedule, you can create a SQL Agent job and execute the sp_send_dbmail from a job step.

    Most of the time it is no problem to...

  • RE: Email contents of table

    Take a look at the "sp_send_dbmail" stored procedure and make use of the @query parameter.

    http://technet.microsoft.com/en-us/library/ms190307(v=sql.100).aspx

  • RE: Find Deadlocks

    OnlyOneRJ (8/21/2013)


    Well how do we deactivate it? as this cant be kept on for long period i think

    Read Books OnLine and/or google a bit on the internet. You will find...

  • RE: Find Deadlocks

    OnlyOneRJ (8/21/2013)


    Does this mean their was nothing happened on that day except backup task???

    No, it does mean: nothing that need to be logged happened on that day

Viewing 15 posts - 766 through 780 (of 1,409 total)