Viewing 10 posts - 1 through 10 (of 10 total)
Found the reason. Hope they address this soon...
April 3, 2017 at 12:53 pm
Honestly, this would have very little to do with SQL Server.
Roles and Authorization for web applications are usually managed by the code of the application itself.
You could leverage...
May 21, 2010 at 10:39 pm
It is erroneous to assume that all roles other than sysadmin and db_owner are mutually exclusive.
As far as why this redundancy is allowed, my guess it that it's easier and...
May 21, 2010 at 1:11 pm
You can also do...
GRANT VIEW DEFINITION ON SCHEMA::[SchemaName] TO [User/Role];
-- or
GRANT EXECUTE ON SCHEMA::[SchemaName] TO [User/Role];
May 21, 2010 at 10:07 am
Maybe it's overkill, but I would probably write your query like this...
As far as indexing goes, my first inclination is to drop index [tblrecord].[idx_Followupdate] and replace it with 2 new...
May 21, 2010 at 1:19 am
How I actually solved this for now is:
CREATE PROCEDURE dbo.usp_CreateSnapshot_ExecAs
AS
BEGIN
EXECUTE AS LOGIN = 'ProxyTest';
CREATE DATABASE MY_SNAPSHOT
ON
(Name = 'MyDBData', Filename = 'E:\MSSQL.3\DATA\MY_SNAPSHOT_MyDB_1.SNAP'),
(Name = 'MyDBData2', Filename = 'E:\MSSQL.3\DATA\MY_SNAPSHOT_MyDB_1_2.SNAP'),
(Name = 'MyDBData3', Filename =...
February 5, 2010 at 3:59 pm
Hello all,
I found the source of my problem, which also describes why this setup worked for us in DEV, but not TST.
Long story short, the [master] database was set to...
February 5, 2010 at 12:52 pm
Has anybody seen this before?
Does anyone have any other suggestions for locking down the stored procedure without using EXECUTE AS?
February 4, 2010 at 6:54 pm
Here is a script that I wrote for repairing schema ownerships before making bulk security changes. It saves lots of time and avoids having to do this manually. ...
February 4, 2010 at 4:33 pm
Here is a CTE query I use with SSRS to get the same type information. It works perfectly. Just adjust it for your needs.
;WITH ReportUsageCounts AS
(
SELECT ...
December 23, 2009 at 5:14 pm
Viewing 10 posts - 1 through 10 (of 10 total)