Viewing 15 posts - 4,906 through 4,920 (of 8,416 total)
r.dragoi-1095738 (3/24/2010)
Maybe you are looking for something like this:SELECT TOP (10) *
FROM table
OPTION (HASH Join , recompile)
-- or just simple: OPTION (recompile)
What's the HASH JOIN hint for? ...
March 24, 2010 at 7:16 am
deepforest (3/22/2010)
But, did you know...
Yes.
One of my favourite QODs was the one that executed a procedure named GO.
March 24, 2010 at 6:57 am
Nawar.Tabaa (3/24/2010)
March 24, 2010 at 6:53 am
Ratheesh.K.Nair (3/24/2010)
Hi Experts,Is it possible to take a table level backup?
TIA
Yes, in some circumstances.
March 24, 2010 at 6:47 am
sku370870 (3/23/2010)
Can you mark posts as resolved on this forum?
No, because you never know when someone else might find the question or discussion interesting and make another contribution.
Hey Wayne, nice...
March 24, 2010 at 6:46 am
The Dixie Flatline (3/24/2010)
March 24, 2010 at 6:26 am
Strictly speaking, this is not a parameter-sniffing issue. SQL Server picks a bad plan on this occasion due to a lack of accurate statistics. This results in SQL...
March 24, 2010 at 6:22 am
Everything anyone ever needs to know about compilation and recompilation:
http://msdn.microsoft.com/en-us/library/cc966425.aspx#XSLTsection127121120120
That link will take you to the section on statement-level recompilation.
March 24, 2010 at 5:34 am
Sticking with the design presented, here is one possible method:
CREATE TABLE #Sample
(
patient_no ...
March 24, 2010 at 5:32 am
Collation is so important when coding a routine that does a large number of comparisons or sorts, and not just because of the potential for errors as shown in this...
March 24, 2010 at 5:17 am
Thanks for taking the time to fix my solution Peter 🙂
I have another chance to look at this, and find the following interesting:
Setup:
CREATE TABLE #Table1
...
March 24, 2010 at 12:54 am
petervdkerk (3/23/2010)
You're right, switched the 2 tables and now it does work 🙂So, even maybe if you didnt fully mean to, it IS a copy paste solution 🙂 Thanks!
Glad...
March 23, 2010 at 10:14 pm
petervdkerk (3/23/2010)
After executing the queries, the values in prospects are still NULL...
Not a massive surprise, since you are updating the prospects_copy table with my code.
I provided the code as a...
March 23, 2010 at 11:15 am
Viewing 15 posts - 4,906 through 4,920 (of 8,416 total)