|
| Total Answers and Comments: 6 |
Last Update: October 28, 2009 Asked by: ashish88 |
|
| | |
|
Submitted by: tripathi.atul Dual is a table owned by sys user and public synonym for the same is created. So it is available to all the users of the database.
To get the details use following query :
select * from all_synonyms a where a.synonym_name = 'DUAL';
By using create table to create dual table we can insert into dual .
But without creating dual we cannot insert into dual.As we didn't have insert object privilege on sys.dual table or public synonym dual.
Above answer was rated as good by the following members: subravin, shiiva, karams, universeproperty | Go To Top
|