Forum Replies Created

Viewing 15 posts - 1,216 through 1,230 (of 6,105 total)

  • RE: Setting up SQL Server 2005 SP2 to be FIPS 140-2 complaince mode

    What entries in the SQL Server log do you see for Service Broker?

  • RE: GRANT VIEW TO DEFAULT Database ONLY

    Unfortunately, I do believe you're going to have to live with granting VIEW ANY DATABASE.

  • RE: System Center 2007 DPM & SQL Server 2005

    I'm not familiar with the product, but there are a couple of things it might be.

    First, did anyone remove BUILTIN\Administrators or reduce its permissions within SQL Server? Second, if that...

  • RE: Can't connect to clustered server locally or remotely

    If the virtual server name is sqla17 and the instance name is sqla17n1, the connection would be to:

    sqla17\sqla17n1

    One thing you might want to check is to see what port SQL...

  • RE: ping SQL Server instance?

    Or simple SELECT @@SERVERNAME, which you can use to verify you are connected to the SQL Server you think you should be connecting to.

  • RE: Assign all Logins to a Database (SQL 2005)

    You can easily write a script to create a script. Something along the lines of:

    SELECT 'CREATE USER [' + sp1.name + '] FROM LOGIN [' + sp1.name + '];'

    FROM [sys].server_principals...

  • RE: Restore tables

    Cory Ellingson (4/11/2008)


    individual Table restores are not possible yet. An option is to restore the DB to a new name or server, and then copy the table(s) needed back...

  • RE: SQL Server Connectivity

    Have you verified your DSN by clicking the Test button? Have you turned on Audit for Failures with respect to SQL Server? If so, are you seeing an audit failure?

  • RE: SQL Server 2005 Logins

    TDuffy (4/11/2008)


    Nice article thanks.

    One thing I found interesting in 05 is that when you use the UI to script an existing login, it still uses the old syntax!

    /****** Object: ...

  • RE: SECURITY:: Grant Vs WithGrant

    WITH GRANT gives the ability to also GRANT that permission.

    If you just GRANT SELECT to John, He can SELECT on the table.

    If you GRANT SELECT and use WITH GRANT to...

  • RE: security admin vs admin

    SecurityAdmin cannot grant rights to himself/herself.

    SecurityAdmin cannot enter into a database unless specifically granted permission.

    SecurityAdmin can't add anyone to the SysAdmin role.

    SecurityAdmin can't reset the password of...

  • RE: SQL Server 2005 Logins

    Tom Garth (4/11/2008)


    Great article Brian!

    An application that I wrote has an interface for the app admin to create and manage users, and role memberships. It has been running on SQL...

  • RE: Audit trial report for user rights modifications and table modifications

    This is true, the default trace has it, too. However, you'll need to read it using Profiler with respect to user-related events. The report handles objects (DDL changes) just fine,...

  • RE: SQL 2000 Database login encryption

    If Windows authentication is used, a hash is sent. This would likely meet the requirements. If SQL Server authentication is used, while technically the password is encrypted, it is an...

  • RE: Revoke Connect to Guest

    MarkusB (4/4/2008)


    Steve Jones - Editor (4/3/2008)


    Remove the guest user, don't give them access to master.

    Sorry Steve,

    that's not an option.

    First of all SQL 2005 do't allow you to remove...

Viewing 15 posts - 1,216 through 1,230 (of 6,105 total)