Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. EriRobert

    Sql Server 2005 - Fast growing msdb

    Michael Lovely - that works a treat. I'm puzzled though as to what's going on behind the scenes. I suspect my resolution '48 hours later' (see above) was due to a restart of SQL Server. Thanks
  2. EriRobert

    Check for overlapping date range

    Thanks Rudy - that is a neat solution. I was jumping on the 'Or' route, but the 'And' method is lovely. Thanks
  3. EriRobert

    Sql Server 2005 - Fast growing msdb

    I took these statistics 24 hours after running the mail_delete routines. When I look 48 hours later at the properties of msdb the Space Available is now 4000 meg (it was small before); this has allowed be to shrink the database regaining the space in the two tables in question. I'm surprised...
  4. EriRobert

    Check for overlapping date range

    Hi Can anyone come up with a neat where statement to catch overlapping date ranges. My table has a from and to date eg. ID F_FromDate F_ToDate 1 1-Mar-2008 18-Mar-2008 2 1-Jan-2000 31-Dec-2010 3 10-Mar-2008 01-Apr-2008 4 13-Mar-2008 15-Mar-2008 5 1-Jan-2008 01-Mar-2008 6...
  5. EriRobert

    Sql Server 2005 - Fast growing msdb

    Sorry to come back again, but a related question. Having run above mail delete I am left with table properties as below: table Data Space Index Space Row Count sysmail_attachments 2566 MB 0.016 MB 70 sysmail_attachments_transfer 2131...
  6. EriRobert

    Sql Server 2005 - Fast growing msdb

    The answer is: DECLARE @GETDATE datetime SET @GETDATE = GETDATE() EXECUTE msdb.dbo.sysmail_delete_mailitems_sp @sent_before = @GETDATE to purge them all. Thanks Denny - you set me on the right track.
  7. EriRobert

    Sql Server 2005 - Fast growing msdb

    Thanks for the reply Denny. The sys.transmission_queue was empty, but snuffling around the other system views I notice that select * from msdb.dbo.sysmail_mailattachments seems to indicate that my attachments are being retained of successfully sent items. How do I go about purging these...
  8. EriRobert

    Sql Server 2005 - Fast growing msdb

    .... I should add a reference to my other thread which may or may not be relevant (thread962-1446671). This was to do with email attachments that were dumped in a temporary folder, which I manually deleted. Are these attachments also stored in msdb? If so, where? Thanks
  9. EriRobert

    Sql Server 2005 - Fast growing msdb

    Hello Our SQL server 2005 msdb database is growing at rate of 100 Meg per day and is currently 4844 Meg. Having looked at thread962-1142670 I can discount dts packages (none in use), and backupset (1325 records). Job history is 999. I'm struggling to find a table with a large number of...
  10. EriRobert

    SQL 2005 Database Mail - Attachments Saved

    Thanks Paul Yes I can do that. Why does Database mail leave them in the first place? For example, we don't expect to clean up Tempdb after it has run some queries. Is there a reason why they are allowed to build up? Curious really Many Thanks Robert
  11. EriRobert

    SQL 2005 Database Mail - Attachments Saved

    Hi We recently started to use Database Mail to send information packs to our clients (pdf attachments). The emails + attachments are sent without a problem. I have subsequently noticed that the attachments are being saved on the C drive causing space issues - for example: C:\Documents and...
  12. EriRobert

    SQL 2005 Database Mail - Format Question

    One more question - Where is this receivers default font defined? Thanks
  13. EriRobert

    SQL 2005 Database Mail - Format Question

    Hi Is it possible to change the default font and font size settings for emails sent using 'Database Mail' with 'Text' as the value for the @body_format parameter. Many Thanks
  14. EriRobert

    Loading workstation components

    Just a quick question - how do you go about loading workstation components onto a Win32 PC where the SQL Server itself is x64? I can't use the x64 setup disk on my XP (Win32) workstation. Thanks in advance
  15. EriRobert

    Record Date Backup was run

    Nicky SELECT Max(backup_finish_date ) as LastBackupDate FROM msdb.dbo.backupset WHERE database_name = @vchClientName works for me Regards
  16. EriRobert

    Job History Messages

    For completeness: Deleting the job in question and recreating it seems to have solved the problem. Thanks All
  17. EriRobert

    Job History Messages

    Thanks Lawn The jobname reported (in Job History) is the same as the successful backup name and starts immediately after the backup finishes. Other info: Version 10.0 and this has been happening since December.
  18. EriRobert

    Job History Messages

    For some time now we have been receiving the message: The job was scheduled to run, but the availability window closed before the job could start. There may not have been any destination devices available during the window, or the job may have been submitted to run when the window was closed...
  19. EriRobert

    I've made my select faster but ... - Advice please

    Thanks Boris This is significantly faster than the case statement version, but is still 25% slower than the dynamic one. Would you expect this? Robert

Part and Inventory Search

Back
Top