Viewing 15 posts - 901 through 915 (of 4,820 total)
July 16, 2018 at 7:53 am
Sorry for the late reply.
Had a few days off with the family.
Anyway -...
July 16, 2018 at 6:57 am
jkramprakash - Friday, July 13, 2018 9:19 AMThank You Very Much.
You are very welcome!
July 16, 2018 at 6:40 am
With that machine NOT in production yet, pull it's network cable and work directly from it's console and see if anything changes...
July 16, 2018 at 6:34 am
I think this will work as well:SELECT
P.person,
P.category,
P.item,
ISNULL(SUM(S.Qty), 0) AS Qty
FROM POSS AS P
LEFT OUTER JOIN Sales AS S
ON P.person = S.person
AND...
July 13, 2018 at 12:55 pm
July 13, 2018 at 12:03 pm
Here's the RDL for the matrix-based cross tab report based on my query from my previous post. Luis also has the right idea. T-SQL can do it as a CROSS...
July 13, 2018 at 11:19 am
I'm thinking that it may be plausible to do this more easily in SSRS than in T-SQL, and I'm going to try it, but in the meantime, I'm posting the...
July 13, 2018 at 10:08 am
July 12, 2018 at 2:54 pm
July 12, 2018 at 12:06 pm
I would also be sure you set your error variables BEFORE you roll back your transaction, and I would NOT rely on yet another separate stored procedure to play error...
July 12, 2018 at 11:52 am
If I understand correctly, and I may not, you can't just impersonate a Windows account using a SQL login. When I think about the security hole that would represent, it's...
July 12, 2018 at 11:23 am
Viewing 15 posts - 901 through 915 (of 4,820 total)