In SQL Server 2012, how can we give a permission to someone to have full control to SSRS and a permission to a specific Db so they can configure and run the SSRS reports and have a full control to backup/restore their Databases but do not have control to other databases on the same SQL Server machine?
How can we assign permissions to setup SQL Server Reporting Services
91 Views Asked by nam At
1
There are 1 best solutions below
Related Questions in SQL-SERVER
- SQL server not returning all rows
- Big data with spatial queries/indexing
- Conditional null constraint on Null
- SQL Query - Order by String (which contains number and chars)
- Optimising a slow running SQL Server Stored procedure ordered by calculated fields to return a closest match
- Dynamics CRM Publishing Customizations - Multi Developers
- Is there anyway to set the relationship of many tables from Model?
- Implementation of Rank and Dense Rank in MySQL
- ORM Code First versa Database First in Production
- MVC : Insert data to two tables
- Data streams in case of Merge
- table with multiple IDs but seperate notes need sorting (Tried SQL code to make a union query)
- SQL table Partitioning by Year with ColumnStore index implemented on the table
- Defining which network to use for SQL Server 2012 Management Studio
- Fill a week days in a table with preceding Sundays value
Related Questions in REPORTING-SERVICES
- Pass multiple account variables to single parameter
- Update SSRS security for reports
- SSRS Report Expression, for 2 fields in one column
- How to assign dataset values in RDLC report header?
- SSRS Multi-Value Parameter Not Filtering
- Toggle groups based on a parameter
- How to build rptproj using C#
- Don't produce report if there is no data - PDF
- SSRS ListRenderingExtension Unauthorised Exception
- SSRS Color Expression Lesser than X
- Format Numbers in Multiple columns of SSRS Report
- Create Sum of calculated columns in Microsoft Reporting Services like Fibonacci series
- SSRS parameter Datatypes
- creating many reports from a single template - what is this called?
- SSRS Add Parent Group to Entire Tablix
Related Questions in SQL-SERVER-2012
- Combine two rows based on common ID
- Data streams in case of Merge
- Defining which network to use for SQL Server 2012 Management Studio
- Insert into Change Log based on Trigger After Update
- Change column values based on another column in same table
- Using a Table of Column Definitions to Create an Insert Query
- How to deploy Windows app with SQL Server database?
- t-sql update XML element value based on another element value
- SQL Server union not sorting correctly
- Sql mapping problems
- Is there a way to export huge amount of data (more than a million rows) from SQL Server to csv?
- SQL Server 2012 or 2014 Failover Cluster - Change Instance Port Number
- SQL breakout date range to rows
- Declare table dependency in stored procedure when using T-SQL
- How to update the database once when the timer expires?
Related Questions in SQL-SERVER-ADMINISTRATION
- How to determine the size of a Full-Text Index on SQL Server 2008 R2?
- SQL Server Scheduled Job - says its running with no errors but doing nothing
- Permission of sqlserver doesn't exist but with sa exists
- Extended Events and SQL Server Profiler
- Blocking access to specific tables
- SQL Server Connection error: Setting IsolationLevel to ReadCommitted is not supported
- Default dbo schema for user from ACL group
- Script to Deny backup for Database owners
- SQL Server 2016 _can't start mirror
- How to calculate the total memory occupied by the database
- Rails, Extjs and SQL Server
- Database Backup Failure SQL Server 2012 Enterprise
- Detaching a database as a backup strategy
- Granting permissions to analysis services SQL Server 2014 with windows authentication
- SQL Server Agent new Job dependency on existing Step of an existing Job
Related Questions in SQL-SERVER-AUTHENTICATION
- MVC 5 IIS 7.5 double-hop issue (avoid hard coded SQL passwords)
- Cannot create new user in SQL Server
- Python pyodbc connect to Sql Server using SQL Server Authentication
- Securing database credential with user, data database for mobile/web application
- How to pass parameter to a store procedure in openrowset and sql-server authentication
- Connect Local SQL Server Database using Azure Active Directory Credentials
- Default dbo schema for user from ACL group
- Error when connecting to sql-server using windows authentication mode
- Pyodbc is only accepting windows authentication
- ColdFusion is not connecting datasource with SQL Server 2014
- node.js is not connecting to SQL Server database using SQL Server authentication
- postman server basic auth and bearer token
- How can we assign permissions to setup SQL Server Reporting Services
- SQL Server : Authorize User not in domain
- How do I connect to a SQL Server which is usually a machine I remote desktop into
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Lets say you create a sql user login called
sqllogin, Leave this user'sServer rolesaspublic.Under
Login Propertiessection for this user inUser Mappingselect the one database you want them against (in the list on rightside) and choose the following rolesNote: not all options are ticked in image.
This allows user login only to
tempdb(for this example) and not the others. They might be able to see other databases but cannot access them in anyway.More info on roles here
As far as SSRS is concerned, create a
datasourcemapped to this database with thissqllogin.This is not the same as permission to SSRS but only to the database they get access to.SSRS permissions are different, I'm pretty sure the sql login cannot be used. This might be of help Authentication SSRS.
But I hope this gets you started.