Viewing 5 posts - 1 through 5 (of 5 total)
Well technically the DNS is for the 'Listener' for the AG, not the AG itself. Not sure if that's what you meant. But if you have a Listener,...
July 17, 2014 at 10:13 am
It's not a matter of getting the PunchIn and PunchOut. Whoever wrote this query is using a another field to grab what is considered PunchIn and PunchOut, a field...
May 12, 2014 at 5:13 am
Basically im looking at a query for someome. Someone (not me) wrote this query to grab the punchin time for employees and punch out time. The problem is...
May 11, 2014 at 7:30 am
Facetious about what?? Adding to a much more complex query, or making the logic more complex? I'd like to keep the logic as simple as possible, but the...
May 10, 2014 at 8:13 pm
Thank you both very much. Im using a CTE pretty simply now.
with cte as
(select name, col2, col3, COUNT(*) over (PARTITION By Name, col2, col3) as freq
from...
May 10, 2014 at 4:14 pm
Viewing 5 posts - 1 through 5 (of 5 total)