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 / pariksheet de
Grant Insert,Update,Delete
On Employees
To All
-----------------------------------------------
Create Trigger Upd_Employees
Before Insert,Update,Delete on Employees
For Each Row
Begin
if to_char(sysdate,'Dy') in
('Mon','Tues','Wed','Thrs','Fri','Sat','Sun') and to_char
(sysdate,'hr:mi') not between ('10:00') and ('6:00')
then raise_application_error(-
20145,'Insertion/Updation/Deletion can take place between
10:00 am and 6:00);
end if;
end;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What do you mean by “trigger” in sql?
What is pls_integer in pl sql?
What is foreign key and example?
how to see the create table statement of an existing table? : Sql dba
Do we need to create index on primary key?
What are the query optimization techniques?
What will you get by the cursor attribute sql%found?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
Can a key be both primary and foreign?
Is it possible for a table to have more than one foreign key?
Is natural join and inner join same?
what's the difference between a primary key and a unique key? : Sql dba
How do you delete duplicates in sql query using rowid?
what are enums used for in mysql? : Sql dba
Is sql developer case sensitive?