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


Please Help Members By Posting Answers For Below Questions

What action do you have to perform before retrieving data from the next result set of a stored procedure ?

2095


What are the advantages of sql?

560


What do you understand by pl/sql cursors?

550


What is trigger in pl sql with examples?

525


What is the non-clustered index in sql?

589






How to read/write files from pl/sql?

582


Can a foreign key be null?

591


What is the use of sqldataadapter?

536


What is sql select statement?

505


What is pl sql in oracle?

585


How do I count duplicates in sql?

550


Is sql similar to python?

538


What's the difference between a primary key and a clustered index?

516


Which normal form is best?

515


what is the difference between nested subquery and correlated subquery?

549