Viewing 15 posts - 181 through 195 (of 196 total)
GilaMonster (11/26/2012)
What I said was
"Typically a scan is a full scan (in the absence of TOP or other operators that give row goals)"
Hence, if you see a scan and there...
November 26, 2012 at 7:28 am
GilaMonster (11/26/2012)
... you can tell partially from the number of rows outputted...
Yes, in this case I can. But we have many, many, many tables and I don't know the number...
November 26, 2012 at 7:10 am
GilaMonster (11/26/2012)
Typically a scan is a full scan ...
Hi Gila,
that's the point, it seems that it is NOT ALWAYS a full scan. The example shows it, using the min()-Function does...
November 26, 2012 at 6:57 am
ahaaaaaaa 🙂 now I understood
November 26, 2012 at 6:53 am
Hello Grant Fritchey,
thank's a lot for your very detailled explanation. I'm still not sure if I understand the part I'm interested in most.
I know these queries had no predicate and...
November 26, 2012 at 6:52 am
hi. here is the execution plan. some explanations:
@InsertedCumulatedDataIds:
A table filled at the beginning of the procedures. For this Ids we have to write records in table #tmpProductHistory.
The tables DetailledDataANP...
November 26, 2012 at 6:41 am
I don't think your table is normalized. Your have two entities, cars and parts. One car can have several parts, on part can be used in several cars. That's an...
November 26, 2012 at 6:18 am
hi,
for making the delete more performant you should use a loop, something like that:
delete top ( 100000 ) from myTable
while @@rowcount > 0
begin
delete top ( 100000 ) from myTable
end
For leaving...
November 26, 2012 at 5:23 am
There is no simple query for doing this update for all colums of all tables. If you only have to do it once you could use dynamic SQL.
You get the...
November 26, 2012 at 5:02 am
Why do you want to set the value "unknown" at all? The NULL already tells you that the content ist unknown. The way mentioned by John is for using in...
November 26, 2012 at 4:34 am
hello GSquared,
thank's for your answer.
Using the subselect as shown in the example or switching it to a cross apply ends up in exactly the same execution plan.
The table variables are...
November 21, 2012 at 11:49 am
hi there,
maybe this little trick helps:
I personally understood this behaviour of outer joins quite a time ago when it was explained to me as follows (yes I know, very simplified...):
there...
September 10, 2012 at 2:52 am
Thank you for your answers. I feared there would not be a possibility. Well that will be some funny days dropping these indexes 😀
June 18, 2012 at 6:55 am
scripting objects or table contents can all be done using Microsoft management studio. right click the database and choose "tasks, generate scripts". select the objects you want to script. in...
May 22, 2012 at 10:19 am
Mike Hinds (5/18/2012)
...
...
I'm interested, too. If we had a command such as "EXEC sp_help Customers", could we direct the output of that statement to a temporary (or permanent) table,...
May 18, 2012 at 12:17 pm
Viewing 15 posts - 181 through 195 (of 196 total)