Forum Replies Created

Viewing 15 posts - 1,696 through 1,710 (of 6,105 total)

  • RE: Server Administrator Permissions

    I disagree with respect to processmon because we're comparing apps that run on workstations versus servers. Quite simply, just about everything a DBA would need to do (if looked at from...

  • RE: Server Administrator Permissions

    SysAdmin = abbreviation for System Administrator. This is actually where Sybase/SQL Server got it from. For instance, SysAdmin magazine. I should have been more clear, but usually when I...

  • RE: Named Instances Through a Firewall

    It does sound like udp/1434 is not going through on both sides. Can you have a network analyst do a network capture looking specifically for that?

     

  • RE: Primary Key Index and Primary Key with Clustered Index

    You are using one arbitrary example and the database engine will use whatever techniques it can in order to get the data back as quickly as possible. Somewhere along the...

  • RE: Primary Key Index and Primary Key with Clustered Index

    Keep in mind that if you are dealing with an RDBMS, you are not guaranteed sorted data unless you specify an ORDER BY clause.

     

  • RE: Server Administrator Permissions

    I think he's referring to the service account the SQL Server service actually runs under. If you know its password and it is granted administrative rights over the system, you...

  • RE: Server Administrator Permissions

    Actually, unless you're installing things all the time, running with a normal user account in Windows XP is quite possible. Not just for the home user, but also for the...

  • RE: Allow user to grant select on views?

    Use a DDL Trigger on the CREATE_VIEW event. Something like:

     

    GRANT

    TRIGGER trigDDL_CreateView

    ON DATABASE

    WITH EXECUTE

  • RE: Server Administrator Permissions

    Why shouldn't they? The Principle of Least Privilege is why. If the DBAs aren't expected to be responsible administratively for a server, they shouldn't have those rights. This just isn't...

  • RE: Server Administrator Permissions

    Brandie,

      you are right, this is something that most DBAs wouldn't be doing. However, this is certainly a great prompt to the GPO/directory services administrators. Those guys are also supposed...

  • RE: Server Administrator Permissions

    This is true... and those templates can be applied via GPO so you can push out to all SQL Servers. However, if you go down this road, don't forget to...

  • RE: Connectivity to SQL 2005 from same domain.

    First thing I'd check is a firewall on the client. After that, determine if your networking folks have any ACLs in place to restrict access. Also, you may see if...

  • RE: Server Administrator Permissions

    To echo what's been said: local administrator rights aren't strictly required but often granted. Why?

    1. Ability to stop and restart services (although power user can give you this, Mark Russinovich demonstrated...
  • RE: Getting rid of DBO and SA access

    1. Use Database roles
    2. Don't use the public role
    3. Put the users into database roles
    4. Assign permissions against the roles, not the users
    5. Assign permissions at the Schema level if they need to be able to...
  • RE: Database Access to Domain User

    In order to be able to stop/start services, the Windows user must be a member of the local administrators or power users groups on the Windows side. However, if this...

Viewing 15 posts - 1,696 through 1,710 (of 6,105 total)