Viewing 15 posts - 1 through 15 (of 102 total)
All passwords are encrypted, I would never store them as plain text.
My Mistake I meant a nonclustered Index to those columns.
In regards to your other response i.e Maybe, maybe not....
September 20, 2015 at 4:11 pm
Thanks for the responce, that's very similar to the query I have. I'll add the non clustered indexes to those columns.
Another question regarding indexes, I have other columns like...
September 20, 2015 at 6:54 am
ha ha, Ok you have lost me now.......
September 17, 2015 at 9:26 pm
Kristen-173977 (9/17/2015)
.Netter (9/17/2015)
I'm not sure what you mean in regards to chopping the userId to smallint? I think a Integer would be more then sufficient
If your User Base is less...
September 17, 2015 at 8:57 pm
Kristen-173977 (9/17/2015)
Eric M Russell (9/17/2015)
I'd also suggest turning on the table option 'large value types out of row'.
How do you feel about 65K users? Chopping the UserID down to...
September 17, 2015 at 7:31 pm
Ed Wagner (9/17/2015)
September 17, 2015 at 4:18 pm
I've just managed to get resolve this, I changed my where statement to look like the following:
where
(p.id = @userid or p.id = @SenderId)
and...
July 25, 2015 at 6:46 am
I've managed to get this to work by doing the following :
Select p.Username, count(mr.RecipientId) [TotalMessages],
(SELECT COUNT(*) FROM [MailBox].MessageRecipient where RecipientId = @userid and ReadDate is null)...
July 24, 2015 at 6:26 am
Hi thanks for the sql script, I was looking at outlook actually trying to figure out how it works etc, I won't be interested in read receipts, flags, or anything...
July 22, 2015 at 3:59 pm
Hi thanks for coming back to me, would you be able to provide me with a code sample as I'm trying to grasp your concept , also would your solution...
July 22, 2015 at 6:21 am
Hi All,
Thanks for the responses, I would like to touch base on that you mentioned regarding a parent table.
How would this parent table look? i.e what columns would it have?
When...
July 21, 2015 at 4:23 pm
I understand where your coming from I assumed we were still on the same page in regards to what I posted after the first code sample was provided i.e regarding...
July 14, 2015 at 4:37 pm
Apologies on the late reply was pulled on to another project, that sadly didn't work, can any suggest anything else?
July 14, 2015 at 4:00 am
Hey, can anyone shed any light on this please I've been battling it all day I tried checking the count of TVP and then saying in my where clause @Count...
July 9, 2015 at 5:25 am
Correct, I was informed this would be a required field but the spec has now changed whereby this is optional so if they pass is null for @TVP I want...
July 8, 2015 at 4:26 pm
Viewing 15 posts - 1 through 15 (of 102 total)