Viewing 10 posts - 16 through 25 (of 25 total)
SELECT
t.tranname,
planname
FROM #temptable t INNER JOIN
(SELECT
tranname,
MIN(priority) as min_priority
FROM #temptable
GROUP BY tranName) t1
ON t.tranName = t1.tranName AND t.priority = t1.min_priority
April 8, 2011 at 12:15 pm
OK, I am trying again. I have to put space between chars so that it won't unescape when it was posted.
It gave me
1& l t ;A...
August 11, 2010 at 2:24 pm
thanks. but it didn't give me what I need.
probably when I copied, it unescaped again.
this was the result I got:
1<A>, <B>, <C>, <D>,
2<E>, <U>, <Z>,
3<G>,...
August 11, 2010 at 2:11 pm
Yep, agree replication is neat, and set it up is easier than go through people comfort zone.;-)
April 20, 2010 at 7:01 pm
we are a small shop, and I am the only dba. Management prefers software because in the case I am on vacation, somebody else can handle the sync.
April 19, 2010 at 9:00 pm
did you solve your problem yet? I am having the same issue. My SQLmail had worked for years and it broke a couple of days ago. SQL...
February 17, 2010 at 10:23 am
thanks for all your replies, and sorry for my late response, I was away for a few days.
the left join query gave me the exact result that I wanted. ...
December 3, 2009 at 7:17 pm
Viewing 10 posts - 16 through 25 (of 25 total)