Viewing 15 posts - 2,221 through 2,235 (of 7,498 total)
rellirel82 (3/15/2011)
March 16, 2011 at 12:17 am
Indeed. Dropping a single plan can only be done as of SQL2008.
March 15, 2011 at 3:32 pm
have a look at http://sqlblog.com/blogs/jonathan_kehayias/archive/2010/11/22/virtualizing-sql-on-vmware-reference-list.aspx
March 15, 2011 at 2:38 pm
Select ABS("The is no such thing as a game!") as Game_is_War
--results--
Game_is_War
-------------------------------------------
Let's have some fun. See what we can learn.
March 15, 2011 at 2:30 pm
If I'm correct you intended to opdate the temp table ?
You should modify the code Lowell provided to update the correct target !
(his query updates the data in the A...
March 15, 2011 at 12:20 pm
Can you post both execution plans ? (show actual execution plan and save the .sqlplan)
March 15, 2011 at 12:07 pm
Anyway you should set it if you don't want a single query eating up all your cpu capacity. ( a risk when leaving it at the default 0 )
March 15, 2011 at 12:00 pm
Lowell (3/14/2011)
for reference though, the format is not too difficult: it's INTO #Tablename just before the first from
SELECT
ColumnList
INTO #TMP
FROM ATable
JOIN OtherTables ON ...
UNION
SELECT columnList
FromBTable
Keep in mind, doing...
March 14, 2011 at 12:37 pm
If you would have posted both execution plans, we would get a better picture of what might be going on.
My guess, your select for id based on a (non indexed)...
March 14, 2011 at 12:32 pm
I use tweetdeck for Chrome.
I recently noticed it shows the "conversation" of a tweet if you click to reply to it :w00t:
Still twitter is a forest with many birds.
Hard...
March 14, 2011 at 11:02 am
Best is to create your temp table and then perform a regular insert into #temptb select .... yourunionquery
March 14, 2011 at 10:55 am
Indianrock (3/14/2011)
March 14, 2011 at 10:44 am
FYI - Maybe you can find some help and advise in this "Advantages to Using Stored Procedures over ORM Tools" by Idera.
March 14, 2011 at 8:05 am
Yesterday I encountered a nice list that will be a very good starting point:
March 14, 2011 at 1:36 am
You have a great tool set at your disposal.
If you also have their query optimizer, your biggest challange will only be the collaborative model.
March 13, 2011 at 11:17 am
Viewing 15 posts - 2,221 through 2,235 (of 7,498 total)