Below Query will insert two rows which are 999,666 and Oracle will give you logs as 2 Rows Inserted.
insert into departments(department_id, department_name, manager_id,location_id)
select 999,'Administration',200,1700 from dual
union all select 666,'Marketing' ,201,1800 from dual
How do i get logs like "Rows 999 and 666 has been inserted".. by putting logs statement in query itself..(User defined logs)..Like in java we are using log4j for the same..