Forum Replies Created

Viewing 15 posts - 16 through 30 (of 31 total)

  • RE: NT authenticated logins broken after migrating to AD

    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...

  • RE: xp_cmdshell returns null

    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...

  • RE: xp_sqlagent_proxy_account and xp_cmdshell

    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...

  • RE: SQL Services Account

    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 up a...

  • RE: SQL Backup & Third party backup software

    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...

  • RE: Transaction log will not shrink

    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...

  • RE: AWE Memory

    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...

  • RE: Script to backup transaction log

    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

  • RE: Very Large Transaction Logs

    "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...

  • RE: Using 3 GB of RAM

    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...

  • RE: Using 3 GB of RAM

    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...

  • RE: SQL tool-- Patrol for MS SQL

    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...

  • RE: QOD 10/24

    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...

  • RE: Check SQL Server Uptime

    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 "sqlserver", it...

  • RE: Best Practices for Reboot Schedule

    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...

Viewing 15 posts - 16 through 30 (of 31 total)