Viewing 15 posts - 20,116 through 20,130 (of 22,202 total)
F'ing lovely. Worked perfect. Thank you.
Now what the heck did you do?:w00t:
June 18, 2008 at 7:56 am
I think the frequency is also going to affect this. You would have to check often enough to catch the event as it occurs.
June 18, 2008 at 7:44 am
Different people do it different ways. You can control the transaction from the application, but you need to be very cautious about getting extraneous code in the way of the...
June 18, 2008 at 7:38 am
Sorry, I only posted part of the XML. It's the XML from an execution plan. Here's a section of the entire XML file (brackets replaced):
[ShowPlanXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0" Build="9.00.3042.00" xmlns="http://schemas.microsoft.com/sqlserver/2004/07/showplan"]
...
June 18, 2008 at 7:34 am
OK. It ran, but it's returning null for all the values and that's wrong. A little more help please?
June 18, 2008 at 7:08 am
OK. I think I get why you're using the [1] twice in the first example, but what do the parenthesis do in the second?
Oh, and thanks for the help.
June 18, 2008 at 7:06 am
You're stuck. You either need to move to 2005 & use VARCHAR(MAX) or stay in 2000 and use TEXT. There's no in between.
DB2 supports (MAX), but I'm not sure about...
June 17, 2008 at 12:18 pm
Look into using the NODES method. Here's an example from BOL:
SELECT C.query('.') as result
FROM Production.ProductModel
CROSS APPLY Instructions.nodes('
declare namespace MI="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions";
/MI:root/MI:Location') as T(C)
WHERE ProductModelID=7
June 17, 2008 at 11:43 am
Provisional-DBA? But that'd be true & not funny.
Uhm... wanna-be-DBA?
June 16, 2008 at 11:16 am
You're hitting a variation of parameter sniffing (here's Ken Henderson's description of parameter sniffing). Usually this is a good thing, but sometimes it isn't. Ken shows a method for helping,...
June 16, 2008 at 8:49 am
I'd suggest two things, first, get an estimated execution plan with the parameters and compare it to an actual execution plan without. Also, because you're setting your date values to...
June 16, 2008 at 6:55 am
Do everything the previous poster said. If you're still getting the error, post the full error, not "something like this" because that's really hard to narrow down.
June 16, 2008 at 6:23 am
Start by succinctly explaining the problem you're trying to solve. Absolutely show hard number examples. Be very careful of using technical jargon, these aren't tslq coders, they're managers. Focus on...
June 16, 2008 at 6:19 am
Viewing 15 posts - 20,116 through 20,130 (of 22,202 total)