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 are the two different parts of the pl/sql packages?
what is rollback? : Sql dba
What is trigger in pl sql?
How do you explain an index?
What does truncate mean in sql?
Can instead of triggers be used to fire once for each statement on a view?
Can we perform dml on view?
What is delimiter sql?
what is error ora-03113: end-of-file on communication channel?
How to run sql commands in sql*plus?
how do you know the version of your mysql server? : Sql dba
what is sql profiler? : Sql dba
How do I install sql?
How do I pipe the output of one isql to another?
What is a string data type in sql?