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 natural join sql?
How many sectors are in a partition?
Is record in oracle pl sql?
What are the two types of exceptions in pl/sql?
what is difference between delete and truncate commands? : Sql dba
what are dynamic queries in t-sql? : Transact sql
When to use inner join and left join?
What is sql profiler in oracle?
What is normalization? How many normalization forms are there?
What is an oracle stored procedure?
What is varray in pl sql?
Does sql profiler affect performance?
what are the different type of normalization? : Sql dba
Do prepared statements prevent sql injection?
Why should I use postgresql?