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 boolean in sql?
What is sql stand for?
What is audit logout in sql profiler?
Can we perform dml on view?
Is a table valued function object?
How can you view the errors encountered in a trigger?
What are different types of tables in sql?
What does 0 mean in sql?
Does sql backup shrink transaction log?
What is a unique key?
What is pl sql package?
what are dynamic queries in t-sql? : Transact sql
when is the use of update_statistics command? : Sql dba
how to run 'mysql' commands from a batch file? : Sql dba
What is difference between pl and sql?