Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: error: during upgrade database raised exception 945 severity 14 state 2

    Thanks a lot. Assigning full control to SQL SErvice Account on respective file/folder works.:-)

  • RE: List All Permissions a User Has in SQL Server

    The query with inner joins is not getting correct results in all cases. Try this one

    select sys.schemas.name 'Schema'

    , sys.objects.name Object

    , sys.database_principals.name username

    , sys.database_permissions.type permissions_type

    , sys.database_permissions.permission_name

    , sys.database_permissions.state permission_state

    , sys.database_permissions.state_desc

    , state_desc...

  • RE: SQL 2014 SP1 memory issues ?

    I am also experiencing similar problem occasionally with our workload while running in SQL 2014 sp1 getting error: There is insufficient memory available in the buffer pool. I run the...

  • RE: Registered Servers window is gone

    I found an easy way in SSMS menus select Window > Reset Window Layout and click yes on the confirmation box. Now you can click and open Registered servers window...

Viewing 4 posts - 1 through 4 (of 4 total)