Viewing 15 posts - 766 through 780 (of 1,409 total)
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
August 22, 2013 at 7:19 am
Is a anti-virus application blocking the mail?
What if you temporarily(!) turn off the firewall?
August 22, 2013 at 6:47 am
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...
August 22, 2013 at 4:05 am
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...
August 22, 2013 at 3:40 am
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...
August 22, 2013 at 3:26 am
Yes, a service pack is always applicable to all editions (standard, professional, etc.).
August 22, 2013 at 1:01 am
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.
August 22, 2013 at 12:48 am
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...
August 21, 2013 at 7:31 am
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"....
August 21, 2013 at 7:19 am
I can't reproduce it on my instance. What is the collation setting of your instance and your database?
August 21, 2013 at 7:13 am
Use the result_seperator option:
exec sp_send_dbmail
...
@query_attachment_filename = 'sample.csv',
@query_result_separator = ',',
...
August 21, 2013 at 5:41 am
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...
August 21, 2013 at 4:52 am
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
August 21, 2013 at 4:48 am
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...
August 21, 2013 at 4:40 am
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
August 21, 2013 at 4:14 am
Viewing 15 posts - 766 through 780 (of 1,409 total)