Viewing 15 posts - 361 through 375 (of 1,219 total)
No, it is not an SQL Server permission per se. The error comes from LoginUserW which is a Win32 routine. So fiddling with groups etc in SQL Server is not...
November 4, 2015 at 1:17 pm
NET HELPMSG 1385 says:
Logon failure: the user has not been granted the requested logon type at this computer.
But if this was a permission issue on the NAS, I would not...
November 4, 2015 at 12:30 pm
Not sure why you are digging in the past. Better to get things working again.
But if you want to look, the primary places to for differences would be sys.database_permissions and...
October 24, 2015 at 3:11 am
TDE can be applied to an existing database. Beware that it does not apply to FILESTREAM data.
I agree with everything that Elliot said and not the least: be careful with...
October 15, 2015 at 3:06 pm
A title from Joe Jackson's excellent album "Body and Soul" comes to mind: You can't get what you want, before you know what you want.
None of the encryption solutions in...
October 15, 2015 at 1:01 pm
You can add EXECUTE AS '<somelogin>' to the trigger and this login has been granted access to the table. Or been granted VIEW SERVER STATE. You need to use original_login()...
September 28, 2015 at 8:45 am
It is unclear what you did, but you can grant permissions on schema level. For instance:
GRANT SELECT ON SCHEMA::DataArchive TO someuser
September 14, 2015 at 2:25 pm
Say that you at some point run
CREATE LOGIN Hilary WITH PASSWORD = 'sdefhsdhhh'
And then you go on and grant permissions to this new employee. However, when this person turns...
September 13, 2015 at 12:52 pm
SELECT u.name
FROM sys.database_principals u
JOIN sys.database_role_members rm ON u.principal_id = rm.member_principal_id
JOIN sys.database_principals r ON r.principal_id = rm.role_principal_id
WHERE r.name = 'yourrole'
ORDER BY u.name
September 9, 2015 at 1:10 am
Far from a complete solution for your case, but at least a starting point. Look at this blog post from Sebastian Meine:
http://sqlity.net/en/2584/script-database-permissions/%5B/url%5D
August 29, 2015 at 2:50 pm
Since I am not versed in Active Directory, maybe I should not answer, but my gut feeling is no. The login has to be validated by other domain, and if...
August 17, 2015 at 2:45 pm
Or course they do. principal_id in sys.database_principals is always 1 for dbo, and 0x01 is also the SID for sa in sys.server_principals. That is, you are mixing apples and oranges....
July 6, 2015 at 4:32 pm
This can happen when you restore a database from one server on another. sys.databases says one thing about who is the owner, but sys.database_principals in the database has a different...
July 6, 2015 at 4:19 pm
Lynn Pettis (6/17/2015)
June 17, 2015 at 2:20 pm
You encrypt the data client-side, and the users owns the encryption key out of reach for sysadmin. Values that needs to be keys, you hash.
As for auditing, there is SQL...
June 11, 2015 at 1:27 am
Viewing 15 posts - 361 through 375 (of 1,219 total)