Forum Replies Created

Viewing 15 posts - 106 through 120 (of 6,104 total)

  • RE: Why deny direct access?

    The advice on SELECT generally refers to OLTP environments. For reporting, usually users have access either to the tables or through views if row-level security is being applied.

    The reason...

    K. Brian Kelley
    @kbriankelley

  • RE: Grant SELECT on all views (new & existing)

    You want to use a DDL trigger. DDL trigger looks for view creation and automatically grants the appropriate permission.

    K. Brian Kelley
    @kbriankelley

  • RE: Determining password length

    This isn't possible, because the actual password isn't stored (nor would you want it to be). A hash is stored, much as it is with Windows systems. Since it's a...

    K. Brian Kelley
    @kbriankelley

  • RE: Changing Service Account causes xp_logininfo to error

    So there are two domains.

    The domain your user account is in is obviously trusted by the domain where the service accounts reside. However, is the reverse set up? If...

    K. Brian Kelley
    @kbriankelley

  • RE: Changing Service Account causes xp_logininfo to error

    You said Domain\dev and Domain\prod, is everything in one domain? In other words, it's not actually DomainA\dev and DomainB\prod?

    K. Brian Kelley
    @kbriankelley

  • RE: Recover sa Password

    I'm assuming you started up a command prompt running as administrator, correct? If you didn't you need to if UAC is turned on. Then start sql server from the command...

    K. Brian Kelley
    @kbriankelley

  • RE: Schema/Owners question

    You're saying through ownership chaining the user has appropriate access.

    As far as tying to a particular owner, no.

    When you create a schema you should create the permissions then. While...

    K. Brian Kelley
    @kbriankelley

  • RE: sql server process memory has been paged out

    Out of curiousity did anyone set the reserved memory for the VM itself? This prevents the balloon driver most virtualization systems use to reclaim memory from telling the guest OS...

    K. Brian Kelley
    @kbriankelley

  • RE: prevent data using encryption (suggestion needed)

    +1 to everything Gail said.

    K. Brian Kelley
    @kbriankelley

  • RE: Password protect Backup files

    But then the app couldn't use the database, either. 🙂 It's hard to retrofit an existing app to use column-level encryption.

    K. Brian Kelley
    @kbriankelley

  • RE: Changing Physical IP Addresses - SQL Server 2005 Cluster

    I would give a quick support call to Microsoft, but I don't believe changing the IP addresses for the physical nodes is an issue. If you're going to change the...

    K. Brian Kelley
    @kbriankelley

  • RE: Third party load balancer??

    We aren't using it but we've considered it. I've had a pretty lengthy conversation about what it does and doesn't do with the folks at Citrix. It's primary advantage over...

    K. Brian Kelley
    @kbriankelley

  • RE: prevent data using encryption (suggestion needed)

    Unless you are talking SQL Server 2000, if I am a Windows admin I can get right in by putting SQL Server in single-user mode from the command line. If...

    K. Brian Kelley
    @kbriankelley

  • RE: Allowing *ALL* users to access a database

    If you know for a fact that you want every login that is granted access to the SQL Server to access this database and that's not going to change (or...

    K. Brian Kelley
    @kbriankelley

  • RE: logins, groups

    As said, syslogins is deprecated. It is included only for backward compatibility and shouldn't be used if you're not querying SQL Server 2000 systems. The difference betwen sys.server_principals and sys.sql_logins...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 106 through 120 (of 6,104 total)