Viewing 15 posts - 1,831 through 1,845 (of 6,679 total)
Maybe, but it shouldn't be for long unless you have a huge number of emails per day. Of course, you would have had the same blocking (short and sweet)...
May 18, 2020 at 4:06 pm
I did not include the progress table...you can add that in if needed:
Use msdb;
Go
Set...
May 17, 2020 at 3:54 pm
For a fixed width file - you should never have a comma in the data. If you have a comma then it is most likely because you have a column...
May 17, 2020 at 3:02 pm
The same thing - either return a NULL or convert the date into a string. Depending on the downstream systems that will be using this - it generally is much...
May 17, 2020 at 2:48 pm
You cannot define an export that will be a fixed width from SSRS - in order for a fixed width file to be generated you need to know the length...
May 16, 2020 at 3:39 pm
You are returning a numeric value - and '' is not a numeric value so it will be converted to the corresponding numeric value of 0. You can either return...
May 16, 2020 at 3:16 pm
Sorry - I don't understand.
Are you saying you are going to supply the min/max values each time? If so - then why batch the process and create a loop? Just...
May 16, 2020 at 2:33 pm
You are restoring the database to a clean installation of SQL Server...and no, there will not be any cobwebs or dust bunnies in the database.
There will be - however -...
May 15, 2020 at 6:12 pm
Thank you for your help. I, mistakenly, understood it as meaning that it would create separate transactions in each sub package. I set it to see if it would...
May 15, 2020 at 4:03 pm
I think there is a problem with this portion:
DELETE TOP (@top)
FROM msdb.dbo.sysmail_mailitems
WHERE (mailitem_id >= 1 AND mailitem_id <= 12000);
SET @rc = @@ROWCOUNT;
Once this code deletes the mailitem_id's...
May 14, 2020 at 9:41 pm
You have 2 separate statements here - the second statement doesn't know anything about the first statement.
There are 2 ways to do this...use a CTE or a derived table:
May 14, 2020 at 8:08 pm
I found that this was something I would forget every time I setup a new server - so I created a script to take care of both database mail and...
May 14, 2020 at 7:44 pm
Is there a reason you changed the transaction support value to 'required'? This is not the default value - and is forcing SSIS to create a distributed transaction and probably...
May 14, 2020 at 6:58 pm
You could add an index on the column send_request_date - nothing preventing that index from being created (except space and time - of course).
The other option would be to batch...
May 13, 2020 at 8:44 pm
thx for the suggestin Jeff. I'd really prefer NOT to free the cache.. Looking for the command to mark the procs for RECOMPILE -- across all DB's..
Whether you free...
May 13, 2020 at 6:12 pm
Viewing 15 posts - 1,831 through 1,845 (of 6,679 total)