Viewing 15 posts - 16 through 30 (of 30 total)
This particular message is more than likely caused by the fact that the SQL Server Agent service is either running as LocalSystem or is still running under the "legacy" NT...
September 17, 2004 at 12:53 pm
Instead of just making your proxy account a member of the sysadm role, just grant it execute permissions to the xp_cmdshell Extended Stored Proc (i.e. GRANT execute on xp_cmdshell to...
August 30, 2004 at 10:48 am
Make sure that you gave the non-sysadmin account access to execute xp_cmdshell. Here are the steps that I use:
use master
go
xp_sqlagent_proxy_account N'SET', N'Yourdomain', N'nonsysadmin user', N'nonsysadmin user's password'
go
-- retrieve the...
August 16, 2004 at 1:37 pm
Check out this KB article. It tells you what "rights" the service account should have and how to manually configure it.
http://support.microsoft.com/default.aspx?scid=kb;en-us;283811
I have personally just set...
August 12, 2004 at 8:55 am
Like Steve Jones, I too have had a negative experience with the Veritas Solution (this was a few years ago, so it may not be relavent at this time), but...
July 30, 2004 at 8:55 am
Since everyone is giving there scripts .. here are 5 steps that I have used in the past. I don't remember where they came from originally (or I would...
June 25, 2004 at 3:32 pm
That's right ... also Task Manager does not know how to properly display memory that is mapped via AWE (and/or the Programmable Address Extensions).
Perfmon or Pstat can can give you...
March 17, 2004 at 8:44 am
Or just check out this article/script and schedule it as a job that runs every hour ... http://www.sqlservercentral.com/scripts/contributions/829.asp
February 8, 2004 at 7:53 pm
"Is there anything we can do on this end, from a front end application design, that will minimize the log size or is that something we will just have to...
February 6, 2004 at 1:50 pm
You might want to try just setting /PAE in the boot.ini file and not adding the /3GB switch. If you AWE enable SQL Server, it will use up the...
January 13, 2004 at 1:43 pm
Agreed. Once AWE is set, SQL Server shouldn't release the memory that it allocated. Did you also set the working set size option to 1? That option...
January 9, 2004 at 7:52 pm
We also use Patrol, and just like Steve mentioned, it is great for getting to the performance counter data and automating actions for exceeded thresholds. I have not seen...
December 16, 2003 at 12:14 pm
I agree. The question asks what is the "best" way. A firewall is one way to thrawt a would be hacker from UDP 1434, but if the port...
October 24, 2003 at 7:43 am
You can use a utility called pslist from the pstools suite at Sysinternals - http://www.sysinternals.com.
Create a quick script to run the pslist utility passing it the process name...
July 3, 2003 at 10:22 am
We have been presented with a similar scenario with our management and have settled on a 60-day reboot schedule for our most busy SQL Server,and 90-days for all of the...
June 12, 2003 at 6:14 am
Viewing 15 posts - 16 through 30 (of 30 total)