Viewing 15 posts - 13,306 through 13,320 (of 49,552 total)
haiao2000 (4/29/2013)
GilaMonster (4/29/2013)
Add more space and/or remove files that aren't necessary (old backups, logs, etc)
What error do you get when you try to connect? Logging...
April 29, 2013 at 12:54 pm
fsuoj (4/29/2013)
their is no precompiled execution plan for that SQL string.
Ad-hoc SQL has exactly the same plan caching and reuse as stored procedures, the matching is just done on a...
April 29, 2013 at 12:49 pm
Try a plan guide, you may be able to overrule the join hint with another, though you will have to work out what the optimal join is and keep testing...
April 29, 2013 at 10:39 am
Was TempDB out of space as well? Was there a logon trigger?
April 29, 2013 at 8:14 am
Yes, it's an optimisation, SQL caches the definition and a single data page to reduce the work required to recreate it. The table variable's effectively gone, you cannot access it...
April 29, 2013 at 8:12 am
Do Not delete the log file.
Add more space and/or remove files that aren't necessary (old backups, logs, etc)
What error do you get when you try to connect? Logging in doesn't...
April 29, 2013 at 7:58 am
Take a read through this: http://www.sqlservercentral.com/articles/Transaction+Log/72488/
April 29, 2013 at 7:51 am
AWE does, max server memory is immediate.
April 29, 2013 at 7:35 am
You change that through SQL, either with SSMS right click the server, properties, memory or using sp_configure
April 29, 2013 at 7:14 am
The presence or absence of a log backup will make absolutely no difference in this case as you're shrinking a data file, not a log file.
LOB data causes shrinks to...
April 29, 2013 at 6:35 am
S_Kumar_S (4/29/2013)
April 29, 2013 at 6:33 am
I suggest the following for that script:
Ctrl-A, Del.
Then read over this for an idea on how to manage your transaction logs properly.
April 29, 2013 at 6:29 am
More TempDB space, more resources, longer duration. It still takes locks, just short-lived ones
April 29, 2013 at 3:08 am
Viewing 15 posts - 13,306 through 13,320 (of 49,552 total)