how to give permission to users that users can
update/insert/delete on a row of table on timeing 10am to
6pm only?
Answer Posted / hari
We have to create trigger
create trigger trg_name
before insert/delete/update on table
when sysdate between 10am to 6pm
begin
logic
end;
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
What is a common use of group by in sql?
Is join and inner join the same?
what is cursor. write example of it. What are the attributes of cursor.
Explain sql data types?
What is denormalization in a database?
Does inner join return duplicate rows?
How many times can we commit in a loop?
Why primary key is required?
What is the difference between local and global temporary table?
What is the use of function "module procedure" in pl/sql?
What is the difference between alter trigger and drop trigger statements?
What are transaction and its controls?
What is sorting in sql?
Explain clause in sql?
Can we use threading in pl/sql?