Viewing 15 posts - 3,331 through 3,345 (of 8,416 total)
Gianluca Sartori (5/24/2010)
josh shilling (5/21/2010)
See this post by Mark Cohen...
That page contains quite questionable statements. It's a shame it still comes in the first Google page for "sql short-circuit".
I'll...
May 24, 2010 at 8:26 am
Jeff Moden (5/23/2010)
Heh... I actually forgot to mark the article before. 5 stars it is.;-)
Thanks Jeff, a bit of balance has been restored to The Force 🙂
May 24, 2010 at 8:22 am
sbrownell 30624 (5/24/2010)
To what extent can your results be applied to SQL Azure? Will the indexed view method work there?
The honest answer is: I have absolutely no idea, since...
May 24, 2010 at 8:09 am
WayneS (5/21/2010)
This...
May 24, 2010 at 8:07 am
Ioannis Tsakpinis (5/24/2010)
Hey Paul and thanks for this series, both articles were great.
Thanks, I'm glad you enjoyed them. There will be at least one more in this series.
I think...
May 24, 2010 at 7:20 am
jcaradocdavies (5/24/2010)
Fantastic work, great analysis.
Thank you.
If I may make the following observation: the Indexed View solution simply defers calculation from the SELECT query to the UPDATE/INSERT/DELETE queries that edit the...
May 24, 2010 at 7:12 am
Florian Reischl (5/23/2010)
Hi PaulHard stuff for sunday, but a really great article! 🙂
Thanks Flo - I appreciate it.
May 24, 2010 at 6:48 am
My favourite SELECT without a FROM clause (sadly this does not draw pictures):
SELECT 'penguins'
WHERE 1 = 2
HAVING 0 < 1;
May 22, 2010 at 9:34 am
Known issue, which Microsoft have chosen not to fix for SQL Server 2005.
The problem is fixed in SQL Server 2008.
The workaround is to omit the RETURN statement or use GOTO...
May 22, 2010 at 9:30 am
CREATE TABLE dbo.Person
(
person_id ...
May 22, 2010 at 3:55 am
Francisco Lopez Lopez (5/22/2010)
all the service account running SQL Server are administrator of the OS but how can i check the lock pages in memory policy?
For the 2008 server, you...
May 22, 2010 at 2:19 am
Plagerizing the blog post about plagerizing. There is a moment when it is almost worth the irony to leave it there. Just a moment.
-- Kit
May 21, 2010 at 2:15 pm
DECLARE @Param INTEGER;
SET @Param = NULL;
SELECT *
FROM master.dbo.spt_values V
WHERE (@Param IS NULL)
OR (V.number = 999)
OR...
May 21, 2010 at 1:44 pm
clementhuge (5/21/2010)
May 21, 2010 at 12:32 pm
Oleg Netchaev (5/21/2010)
I saw on other posts yesterday that line 359 hints that the database is near corruption, I just hope that this is not the case.
Agreed. Definitely time...
May 21, 2010 at 9:06 am
Viewing 15 posts - 3,331 through 3,345 (of 8,416 total)