Rights granted to a user for a particular entity instance.
Questions tagged [access-rights]
266 questions
0
votes
1 answer
MS Access and MSSQL
I'm tyring to connect my MS Access frontend to an MSSQL database, this is a big database with many tables and many views. It is prohibited to connect as a sysadmin user.
The SQL's admin has created a user and given rights to this user (even take…

Atlasy
- 57
- 4
0
votes
1 answer
give access rule permission to the specific user on local network
My app is working on local network,and the admin create the folder for every user on shared folder with this code:
for example "me1" is a user on local network.
DirectoryInfo d=new DirectoryInfo(@"\\server\Test");
DirectoryInfo di = new…

Farna
- 1,157
- 6
- 26
- 45
0
votes
2 answers
Read from file while it is being written to in Python?
I followed the solution proposed here
In order to test it, I used two programs, writer.py and reader.py respectively.
# writer.py
import time
with open('pipe.txt', 'w', encoding = 'utf-8') as f:
i = 0
while True:
…
user12546101
0
votes
1 answer
User does not have any of the necessary access rights Laravel 6
I am trying to access dashboard as super admin
I used laratrust to set roles and permissions:
laratrustSeeder.php file:
[
'super_admin' => [
'users' => 'c,r,u,d',
'categories'…

shaza
- 37
- 11
0
votes
1 answer
Restrict a MySQL foreign key based on another column value ("foreign key to a view's column")?
My main goal is to have a database user that I can restrict access rights so they won't see some confidential stuff, while still being able to use foreign keys for integrity checks. So the foo user below must be allowed to only see the PUBLIC items,…

Xenos
- 3,351
- 2
- 27
- 50
0
votes
2 answers
How to hide these modules with internal user in Odoo 13?
I would like to hide Apps and Settings modules with internal user in Odoo 13. Just the administrator could control these modules!
How to do that?

Leon Nguyen
- 187
- 1
- 16
0
votes
2 answers
How to limit an itil user to view incidents only from their company/group? ServiceNow
Within my ServiceNow environment, I manage a number of incidents from different organizations, I've started the process of setting up a dashboard for one customer's CIO to view all tickets and incidents which relate to their company. I'm attempting…

Matthew
- 1,412
- 2
- 20
- 35
0
votes
1 answer
How to start windows service from application
I have a Windows Service and i want to start it using ServiceController.The service runs as LocalSystem.When i am trying to Start it i get:
System.InvalidOperationException: 'Cannot open [service] service on
computer '.'.' Inner Exception…

Bercovici Adrian
- 8,794
- 17
- 73
- 152
0
votes
1 answer
Typo3 user rights are inherited incorrectly
I am trying to create user rights in Typo3 7.6 so that a user can simply work as an editor. He has, for his department, a section of the page tree. In that he can almost exclusively create text & media. For a single subpage of this whole tree, it…

Kendel Ventonda
- 411
- 3
- 9
- 22
0
votes
0 answers
Docker permission behaviour different on Linux and macOs
I have a docker-compose init script with this specific problematic line running at startup :
chown -R www-data:www-data /var/www/html/*
/var/www/html is mounted from a folder on the host machine.
When starting the container on macOs, the specified…

Tom
- 1,357
- 2
- 13
- 32
0
votes
0 answers
Apparmor: php script need rw access to "/"
I have a PHP script that runs every hour to clean up a table. (Location: /var/www/example.php)

johndoe5221
- 5
- 2
0
votes
0 answers
Read and run Select-String cmdLet in network folder, write to local folder
Am at last getting my script working as intended. Hopefully last issue is that i have only read-access to a network drive. This is okay since it is a somewhat critical place to operate in. Makes me want to write the output to a local folder instead,…

Egan
- 43
- 5
0
votes
1 answer
Does "Set-Content" in PowerShell keep the File Access rights?
I plan to update some files via PowerShell. Will Set-Content keep the access rights (ACL) or do I have to backup and restore these rights explicitly?

Martini Bianco
- 1,484
- 1
- 13
- 23
0
votes
1 answer
Access rights of stored procedures, views and tables (sql server)
I have a question about the topic access rights of stored procedures, views and tables.
Users can execute stored procedures and views. If the user needs to update data in a view (this view contains only one base table) do I need to define the…

yuro
- 2,189
- 6
- 40
- 76
0
votes
2 answers
Same CMD command does two different things
The purpose is to find any new/modified/deleted files.
00tobedeleted is the folder i created in C:\Windows\System32.
When im running following command via CMD:
dir C:\Windows\System32\00tobedeleted /s /b > E:\Database\filepaths.txt
Nothing goes…

Ironwing
- 121
- 1
- 15