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
Show code of a cursor for loop.
What is nosql vs sql?
What are functions in sql?
what is a unique key ? : Sql dba
how to create a new view in mysql? : Sql dba
What are the ddl commands?
How do I get sql certification?
how many columns can be used for creating index? : Sql dba
How do you use a while loop in pl sql?
How do I tune a sql query?
what is 'trigger' in sql? : Sql dba
What pl/sql package consists of?
What is normalization in a database?
what are the differences between char and nchar? : Sql dba
What is the use of sql trace?