Forum Replies Created

Viewing 15 posts - 1,171 through 1,185 (of 6,104 total)

  • RE: Local db user keeps losing permissions on database and view..

    Does any process recreate the view on a regular basis? You can check it by a query like the following:

    SELECT NAME, create_date, modify_date

    FROM sys.objects

    WHERE NAME = '** View Name...

    K. Brian Kelley
    @kbriankelley

  • RE: ActiveX component can't create object - SQL2005 Agent Job

    Is the SQL Server 2005 server the exact same server as where you were running SQL Server 2000? In other words, did you do an in-place upgrade or did you...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 2005 TCP Settings

    The port change only takes effect on a SQL Server restart. The value is actually stored in the registry and the SQL Server service only reads it when the service...

    K. Brian Kelley
    @kbriankelley

  • RE: Connections

    If the case is it's not working from any remote host, that pinpoints it as a server problem. Take a look at the KB article cited earlier, it's probably the...

    K. Brian Kelley
    @kbriankelley

  • RE: Cannot add any group to SQL login on new Win 2008 server

    Is the SQL Server on the same server as SMS?

    K. Brian Kelley
    @kbriankelley

  • RE: Restriction through odbc access

    If the users are coming into the database as their Windows accounts, or if they know their SQL Server logins with respect to an application that uses them, the short...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 2005 TCP Settings

    If you're on a cluster, you must first determine which physical node is hosting the virtual node. Then run it on that physical node.

    K. Brian Kelley
    @kbriankelley

  • RE: Stuck on security problem

    As long as the schema owners are the same, you're in good shape. That's what is actually used to determine cross-database ownership chaining in SQL Server 2005.

    K. Brian Kelley
    @kbriankelley

  • RE: Stuck on security problem

    I apologize, I was out of pocket for most of the week.

    Here's what should work.

    - Ensure the database owner for DISA and DISB are the same.

    - Activate cross-database ownership chaining...

    K. Brian Kelley
    @kbriankelley

  • RE: Connections

    As asked, have you tested a remote connection form another source other than your desktop? The problem could be either at the server or at your desktop. Testing from another...

    K. Brian Kelley
    @kbriankelley

  • RE: Sql server security

    Use of sa is strongly cautioned against because it doesn't undergo any security checks. So if you have someone connecting as sa, there's not anything you can do to stop...

    K. Brian Kelley
    @kbriankelley

  • RE: Cannot add any group to SQL login on new Win 2008 server

    Is the security group a local group or a domain group?

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server Agent reports unknown username or bad pw

    Giving it admin rights doesn't fix a bad username or password, so I would recommend against that. I know you probably have already, but re-check the keyed in username as...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 2005 TCP Settings

    When you change the port and then stop and restart SQL Server, bring up a command prompt and run the following command:

    netstat -ano

    Look to see if you have something listening...

    K. Brian Kelley
    @kbriankelley

  • RE: create procedure with encryption

    In SQL Server 2000, anyone with sysadmin rights can decrypt an encrypted stored procedure at any time. Depending on the length, someone with db_ddladmin could pull it off, too, with...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 1,171 through 1,185 (of 6,104 total)