Forum Replies Created

Viewing 15 posts - 3,871 through 3,885 (of 6,104 total)

  • RE: Make Sql server as secure as possible

    Okay, let's take this step-by-step...

    Removing the BUILTIN\Administrators, while a good idea, doesn't help your SQL Server security with respect to the web. The reason being a connection from your web...

  • RE: OSQL is performing better then SQL Server Agent

    This is something we noticed empirically, I don't have docs saying this is actually the case. Take it with a grain of salt. Jobs run through SQL Agent seem to...

  • RE: Sevice Pack Version

    Here is the readout of a SQL Server:

    Microsoft SQL Server  2000 - 8.00.818 (Intel X86)   
    
    Dec 17 2002 14:22:05
    Copyright (c)...
  • RE: Add/Delete Login audit (1/2 a solution)

    Both of those IDs are raised using RAISERROR() in the appropriate stored procedures. EM uses sp_addlogin and sp_droplogin, at least according to a Profiler trace I just ran. You didn't,...

  • RE: I cannot beleive...

    Based on the sp_addrolemember stored procedure, only members of the db_owner role can add a user/role to a fixed db role. Here is the relevant code:

    ...
  • RE: BOL Version

    The latest version will have (Updated - SP3) in the title bar. Not sure about the 8.00.002 since all of my versions are updated.

    K. Brian Kelley, GSEC

    http://www.truthsolutions.com/

    Author: Start to Finish...

  • RE: Installing SQL 2000 Standard

    No, SQL Server 2000 Standard requires a Server version of the operating system. Personal Edition or Developer Edition (only available through MSDN) can be installed on Windows 2000 Professional.

    K. Brian...

  • RE: Search & Replace inside SP's

    You can always write to a temporary file (xp_cmdshell using echo >>), then use xp_cmdshell to call isql or osql and login/execute the create proc statement.

    K. Brian Kelley, GSEC

    http://www.truthsolutions.com/

    Author: Start...

  • RE: Problems with Query Analyzer

    If you want to dup what permissions you already have, you'd put the account in the local Administrators group for the system. Make the account change through EM because it...

  • RE: Problems with Query Analyzer

    If the service is set to start under the LocalSystem account, debugging won't work. Either a domain or local account will need to be created and SQL Server configured to...

  • RE: Problems with Query Analyzer

    Default would be to run under LocalSystem, and debugging requires an actual login, whether local or domain. If you have access to the server, check the account the MSSQLServer service...

  • RE: Problems with Query Analyzer

    Are those servers running with the service under LocalSystem or are they using a local/domain account?

    K. Brian Kelley, GSEC

    http://www.truthsolutions.com/

    Author: Start to Finish Guide to SQL Server Performance Monitoring

    http://www.netimpress.com/

  • RE: Search & Replace inside SP's

    You can query against syscomments to find matches (search against text and pull the id), but then you're still going to have to do something like a cursor with sp_helptext...

  • RE: Problems with Query Analyzer

    Is this consistent for a particular server or intermittent?

    K. Brian Kelley, GSEC

    http://www.truthsolutions.com/

    Author: Start to Finish Guide to SQL Server Performance Monitoring

    http://www.netimpress.com/

  • RE: Logon and change password audit

    That error means a RECONFIGURE needs to be executed to "install" what configuration change you made. This shouldn't be related to changing the audit settings, because that's kept in a...

Viewing 15 posts - 3,871 through 3,885 (of 6,104 total)