Viewing 15 posts - 6,736 through 6,750 (of 7,636 total)
what were those processes doing when they were "waiting for Service Broker"? And how did you determine that they were waiting for Service Broker?
June 5, 2008 at 8:22 pm
Your function misses those cases where the requested time range surrounds (or "Spans") an existing one. For example, let say that the only time range in your table for...
June 5, 2008 at 8:08 pm
GSquared (6/5/2008)
;with
CTE_CreateTime (ConID, Created) as
(select conid, max(createddatetime)
from Ex
group by conid),
CTE_SID (ConID, Created, [SID]) as
(select ex.conid, ex.createddatetime, max([sid])
from Ex
inner...
June 5, 2008 at 7:49 pm
louis315 (6/5/2008)
Didn't execute for me with eitherSET QUOTED_IDENTIFIER OFF
or
SET QUOTED_IDENTIFIER ON
No good reason to use double quotes in this stored proc.
"SET QUOTED_IDENTIFIER OFF" works fine for me. What...
June 5, 2008 at 7:04 pm
Glad we could help.
June 5, 2008 at 12:22 pm
Actually, the only thing that I see wrong with your query is that you are using GROUP BY in your subSelects when you do not need to.
June 5, 2008 at 11:47 am
Your problem is with your connection string, NOT your SQL commands (though I think that there are some problems there too).
Connection String:
You Initial DB (or "Catalog") is 'netGuest',...
June 5, 2008 at 8:50 am
Can you create any other Jobs or job steps?
June 4, 2008 at 8:14 pm
ben schwartz` (6/4/2008)
June 4, 2008 at 8:09 pm
ben schwartz` (6/4/2008)
MR. SSCommitted Thank you very, very much you are 100% correct.. i saw that but i did not see that...thanks
Heh. thanks, I think.
June 4, 2008 at 7:13 pm
You know, what's really wierd is that there is NO physical update operator in the ShowPlan, only the logical update operator.
June 4, 2008 at 6:31 pm
Please generate a script for table ats_CampaignClient, including all options.
June 4, 2008 at 6:21 pm
This is failing when you create the USERs, not when you are creatign the LOGIN. The USER create is failing for exactly the reason that the error message states:...
June 4, 2008 at 1:24 pm
Viewing 15 posts - 6,736 through 6,750 (of 7,636 total)