Viewing 15 posts - 44,116 through 44,130 (of 49,571 total)
Clay.Angelly (9/30/2008)
@GilaMonster
: Yes, the particular example we're focusing on anyway...has gone from ~50ms execution times to ~1.5 minutes since the migration to SS2005.
Ah. Could you post that example here, along...
September 30, 2008 at 1:40 pm
Grant Fritchey (9/30/2008)
Not really unless you get the Team System Database Edition.
Which is now available to any software assurance customers who have Team System for developers (and vis versa)
http://www.microsoft.com/presspass/press/2008/sep08/09-29VS10PR.mspx
September 30, 2008 at 1:23 pm
Sorry. 🙁
That's what I get for posting while I'm doing something else.
September 30, 2008 at 1:20 pm
YSLGuru (9/30/2008)
Also, how do you add a solid line below where your name would appear and above a quote you're adding to your signature?
[ hr ] Remove the spaces to...
September 30, 2008 at 1:20 pm
Why do you need to rewrite?
Are they suddenly performing badly? Are they giving incorrect results?
September 30, 2008 at 1:15 pm
Same kind of thing as a select statement that has a derived table (subquery) in the from clause.
The subquery resolves to a rowset that's treated as if it were a...
September 30, 2008 at 1:06 pm
How big is the table in question? If I had to take a guess, I'd say it's fairly small, under 25 or so pages.
You can get the page count from...
September 30, 2008 at 12:55 pm
The query processor operates on pages in memory. If it needs a page and the page isn't there, it sends a request to the storage engine to fetch that page....
September 30, 2008 at 12:47 pm
Pro: SQL can use a lot of memory.
Con: SQL can use a lot of memory.
If you go 64 bit, make sure you set the max memory for SQL. What you...
September 30, 2008 at 12:42 pm
Records won't be exactly be moved to make space.
If the row has to go onto a page and there isn't space on the page, the page is spit in...
September 30, 2008 at 12:39 pm
Trace to file, set a reasonable size for the files. Once a file is no longer been written to, load that into a database (preferably on a different server) with...
September 30, 2008 at 11:03 am
Luke L (9/30/2008)
September 30, 2008 at 10:50 am
Yup, so something like this should work
UPDATE OrderDetails
SET ShipID = LatestShipping
from OrderDetails
...
September 30, 2008 at 10:47 am
Then you're going to need some form of trace running. I recommend a server-side trace as it will have the least impact. Set up the trace within profiler, tracing the...
September 30, 2008 at 10:44 am
The reason you can't connect is that your login has, as its default DB, the database that you detached. It doesn't matter where the DB is, just that it's not...
September 30, 2008 at 10:38 am
Viewing 15 posts - 44,116 through 44,130 (of 49,571 total)