Questions tagged [privilege]
71 questions
0
votes
1 answer
How to set the Privilege for each control and page globally in ReactJs?
We have a requirement where we have to set the privilege for each action, control and pages in our reactjs project. We want to set the privilege in one place of our application. What is the best way to set the privilege in reactjs project?

Gorakh Nath
- 9,140
- 15
- 46
- 68
0
votes
2 answers
Access table user in sysdba privilege
I created some tables as a normal user, and when I change the privilege to sysdba I didn't fiund my tables!
I get this message: table or view does not exist
This is what I do:
First of all, with a normal user's privilege I create tab1:
create table…

Kati Dev
- 25
- 1
- 3
- 10
0
votes
0 answers
Some users need administrative privileges to run my program
I read from "Hkey_Current_User" and create file in "AppData" folder.
While many users run my program without problems, some are required to activate windows "Administrator" account and install software before they are able to run my program. Even…

reza pahlevan
- 9
- 1
0
votes
1 answer
Dynamics CRM Copy Campaign Privilage
I'm working on a CRM project. My customers want to restrict some of campaign menu options. They particularly want to limit the copying of a campaign. I checked user roles but I can not find anything about it. So how can I take to privilege of…

Ahmetcan
- 9
- 7
0
votes
1 answer
Start an android privileged app without ever opening it
I wish to create a privilege app (pre-installed or in a rooted device). Can I make my app run a service without the user ever open it? How?

MTZ4
- 2,274
- 2
- 25
- 41
0
votes
0 answers
the mysql root account becomes ''@'localhost'
I think the root account has lost all privileges,or this root account has been replaced by ''@'localhost'
I use windows 7.
I login in the mysql with root account
C:\Users\Administrator>mysql -u root -p
Enter password: ******
when type use mysql,i…

liubanghaolihai
- 1
- 1
- 2
0
votes
1 answer
Remove all permission from a user in specific database in MySQL
I have installed MySQL on my local server. I want to create a user with all privilege to all database except one. In this case he also can create a new database and can access it with full functionality.
In another word, how can we remove permission…

Ahmad Asjad
- 825
- 1
- 8
- 29
0
votes
1 answer
Oracle one user's Full(All schema objects) privilege to another user
I want to provide grant-all (All the schema objects) of one user to another user.
I don't want to the table grant-all. What are the user1 having i.e. table, procedure, triggers, synonyms, functions .. etc that should be accessible by user2 in the…

sathish srd
- 25
- 1
- 10
0
votes
2 answers
GRANT Privilege In SQL
Fast :
GRANT SELECT ON SYSTEM.* TO appadmin;
I want to grant AppAdmin the rights of SELECT on all tables of the database
I'm using Oracle SQL, why does my statement not work ?

Forrest
- 723
- 2
- 8
- 24
0
votes
1 answer
How to set privilaged mode in ARM Cortex-A8?
I have to use Neon co-processor of Ti Sitara am335x processor. To enable neon, I have to enable the 30th bit of FPEXC(floating point exceptional register). For that I need to get into the privilaged/system mode.
Some of them suggested to attain…

Rak
- 147
- 8
0
votes
1 answer
ORA-01031: insufficient privileges Oracle Toad XE 11g
I have created users KEN_ROA_DB and KEN_ROA_CORE_DB respectively. I did the following commands when creating the users:
CREATE USER KEN_ROA_DB IDENTIFIED BY KEN_ROA_DB;
GRANT DBA TO KEN_ROA_DB WITH ADMIN OPTION;
CREATE USER KEN_ROA_CORE_DB…

Roshan DiMateo
- 7
- 1
- 5
0
votes
2 answers
Query multiple tables in PostgreSQL (LEFT or RIGHT and other)
I have 3 table in my PostgreSQL database:
menu(id_menu,parent_id,name_uri,uri)
type_role(id_role,name_role)
menutyperole(id_menu,id_role)
In my table type_role I have the following data (administrator and technician), in the table menu exist has…

user3622259
- 1
- 1
0
votes
1 answer
Running an external application WITHOUT administrator right from a C# application that has administrator right
I have written C# application that needs administrator privilege. So I manually changed the property of its executable to run as administrator. So it is running as administrator.
Now, this executable needs to run an external application. When I use…

NESHOM
- 899
- 16
- 46
0
votes
0 answers
How to add SeSecurityPrivilege to directory in Windows 8.1?
I want to add SeSecurityPrivilege to directory.
I found that library.
http://processprivileges.codeplex.com
I tested the code below in windows 8.1
static void Main(string[] args)
{
String dirPath =…

İsmail Kocacan
- 1,204
- 13
- 38
0
votes
0 answers
What privilege is required to open \\.\TCP?
I'm trying to open \\.\TCP device directly,
CreateFileA ("\\\\.\\Tcp",
FILE_SHARE_WRITE|FILE_SHARE_READ,
0, None, OPEN_EXISTING, 0, None)
With a normal user that does not belong to the administrators group, it fails with Access denied…

daisy
- 22,498
- 29
- 129
- 265