Viewing 15 posts - 1 through 15 (of 32 total)
Craig,
Ah, that's an excellent idea. I should have thought of that. Thanks!
BTW, no, the messages being sent aren't in the same conversation, but what I found is that this is...
November 3, 2011 at 10:20 am
Sure thing. I'm glad you solved your problem.
October 26, 2011 at 10:06 am
No, no different queues. All messages are going into the same service in the source database, to be delivered to the same service on the target database.
Let me be...
October 25, 2011 at 7:35 pm
We'd have to see how you set up your endpoints, etc. Though I imagine at this point you've either solved your problem or given up.
October 25, 2011 at 5:21 pm
Hi Joe,
CELKO (10/14/2011)
link_id INTEGER NULL IDENTITY(1,1),
IDENTITY is the count of physical insertions attempts on one machine. It is no more a part of ta valid data model than the...
October 15, 2011 at 7:50 pm
SpringTownDBA (10/15/2011)
[...]Honestly, the only queries I've written recently have either been against dmv's, or really large ugly ones that exceed the skill level of our .net developers.
Ha! That's not saying...
October 15, 2011 at 7:28 pm
SpringTownDBA,
Any particular reason you chose CTEs over, say, derived tables? I guess I'm wondering if there are performance implications, or if that was just your personal preference. For me, in...
October 15, 2011 at 6:53 pm
Performace Guard (Shehap) (10/14/2011)
select Max (s.varietycount)as Max_cluster from
...
October 15, 2011 at 6:33 pm
SELECT a.CustomerID, COALESCE(SUM(b.Total), 0) Total
FROM Customer a
LEFT JOIN Order b
ON b.CustomerID = a.CustomerID
GROUP BY...
October 15, 2011 at 6:17 pm
SELECT COALESCE(b.name, '') name
FROM (SELECT 'XYZ' name) a
LEFT JOIN tableA b
ON b.name = a.name
October 13, 2011 at 4:15 pm
I'd typically use a temp table to pass a bunch of results to another sp, the way Ninja's_RGR'us suggested. But if you're stuck on passing the data in as a...
September 22, 2011 at 3:35 pm
If you're looking for the count of distinct donors per org, then your results are correct. If you're looking for the count of distinct donors, that's something else entirely. I...
September 22, 2011 at 3:14 pm
...
But I am not getting the correct decrypted data when I run the last query.
Please correct me if I am wrong at any step and let me the neccessary changes...
September 22, 2011 at 2:57 pm
SELECT a.eid, a.fname, a.lname, SUM(CASE b.estatus WHEN 'good' THEN b.points END) points1,
SUM(CASE b.estatus WHEN 'verygood' THEN b.points END) points2
FROM #mytable1 a
...
September 22, 2011 at 2:44 pm
Viewing 15 posts - 1 through 15 (of 32 total)