Viewing 15 posts - 826 through 840 (of 1,155 total)
SQL Server needn't be recycled for changing the MAX Memory.
If using TSQL then the it should look like this
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'max server memory', 6144;
GO
RECONFIGURE;
GO
Also if there is...
September 20, 2010 at 12:44 pm
Please find the attachement. Actually I got the script from the web. I don't remember from where. All credits to tha actual author.
...
September 19, 2010 at 1:04 pm
Hi Csoloway,
You should use this translator.
...
September 18, 2010 at 9:03 pm
One Alternative ...
You can Grant Execute Privileges on that Proc to that non sysadmin user so that he can execute it.
...
September 17, 2010 at 2:48 pm
It would be better to change it in Server properties in SSMS.
...
September 17, 2010 at 12:49 pm
It doesn't need a restart.
Thank You,
Best regards,
SQLBuddy
September 17, 2010 at 12:48 pm
I don't think it's a good idea to continue with the installation. It's only an invitation to problems. Please run the CHKDSK utility to possibly fix the problem before you...
September 17, 2010 at 11:28 am
Yes. Let's be optimistic. Please try that and we will proceed from there.
...
September 17, 2010 at 11:18 am
Lock pages in memory matters a lot... at least for this scenario
1. First try to check for the Page File activity during the Package runtime. You can use Permon to...
September 17, 2010 at 10:51 am
Adding a second log file won't help you. SQL Server fills the log file sequentially.
Try to identifty the cause for the blocking and try to reduce or eliminate it.
...
September 17, 2010 at 10:32 am
Max Memory only specifies the upper limit for the SQL Server Buffer Pool but not for the Non-Buffer Pool Memory and hence the utilization > 5 GB.
...
September 17, 2010 at 10:06 am
Also PAGEIOLATCH_SH indicates a possible I/O bottleneck on the server. Often mmeory pressures lead to inreased I/O.
Please check if you are having any memory pressures...
Check the following counters..
1. Buffer Cache...
September 17, 2010 at 9:17 am
Update statistics... Check if have outdated ststistics.
No matter how good indexes you have on your tables, if your statistics are outdated, then Query optmizer can't generate optimal execution plans.
Also check...
September 17, 2010 at 9:09 am
This would most possibly have occured due to a single large transaction. If you can find the time period during which this happens, you can either use a profiler or...
September 16, 2010 at 2:39 pm
Viewing 15 posts - 826 through 840 (of 1,155 total)