Viewing 15 posts - 1 through 15 (of 17 total)
This just started to happen to us, exact same user failing when trying to send directly calling sp_send_dbmail, not via a sproc.
...
May 29, 2024 at 10:53 am
Assuming you have an index on NormalizedUserName...
I'd use something like this:
DECLARE @UserName VARCHAR(1000);
DECLARE @PasswordHash VARCHAR(1000);
SELECT TOP 1 * FROM
(
SELECT U.UserName, CASE WHEN U.EmailConfirmed = 1 THEN 1 ELSE -2 END...
December 16, 2016 at 3:36 am
Dammit, I got all excited there until I realised it was an Enterprise feature.
November 1, 2011 at 5:53 am
How about an index on ServerId ASC, DateCreated DESC
Again, just another punt, I don't have ssms to try it out.
September 2, 2011 at 5:14 pm
Have you tried
WHERE ServerId IN (1,2,3,4)
in the group by query just to see if it makes a difference?
It probably wont but worth a try 🙂
September 2, 2011 at 4:37 pm
Out of sheer curiosity, did you try the reversed where clause with distinct?
May 13, 2011 at 11:44 am
It sounds to me that they are refering to the fact that you can write code that applies both an in-row varchar and the max LOB type. As opposed to...
April 12, 2011 at 12:35 pm
Guys, i'm by no means playing the same sport let alone be in the same league as jeff and grant but from the the op's query he does seem to...
March 13, 2011 at 4:30 pm
It does look like the parameters are just getting their lengths from the lengths of the strings that are assigned to them instead of getting set a predefined size.
i'm not...
March 12, 2011 at 1:45 pm
Hi,
I'm not sure if there is a better way but you could try:
SELECT CEILING(251.438246 * 10000) / 10000
All it does is get the 4 decimal places into the int portion.
You...
January 26, 2011 at 4:47 pm
Paul White NZ (9/20/2010)
I wish it were that simple 🙂
Brad's query example is not a nice one for the optimizer: the input is a variable (obviously no stats on a...
September 20, 2010 at 10:44 am
@howard - thanks for replying so quickly.
Sorry, that was pretty rude.
Had a bit of a busy day, I didn't intend on posting and then ignoring the thread....
September 20, 2010 at 8:53 am
Anyone else a little concerned about the 2k8 results for the inline Tally?
Sorry, I would obviously try this myself but I don't have a 2k8 instance to hand, could someone...
September 20, 2010 at 5:06 am
Just a thought but does anyone know if using Deleted bits instead of actually deleting help with the stats and index fragmentation?
October 7, 2009 at 7:25 am
Viewing 15 posts - 1 through 15 (of 17 total)