How would you hide a table in sql. ie the table can be only
visible to its maker?
Answers were Sorted based on User's Feedback
Answer / sa123
Dont create any public synonym, then that is available only
for its owner
Is This Answer Correct ? | 7 Yes | 4 No |
Answer / ankush
dont give any grant permission for the table except the
schema where the table is actually crearted.U can also use
a private synonym.. with in the schema to recognizing the
table with a dirrerent name.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / swapna
Once table is created in your own schema that is only
visible to that schema. For others it is not visible.
Is This Answer Correct ? | 5 Yes | 8 No |
Is sql between inclusive?
What is the difference between DELETE, TRUNCATE, and DROP?
Interchange the value of a column Gender in a table where values are Male and Female. So, where the value is Male, it should changed to Female and Female to Male.
Explain commit, rollback and savepoint.
how to drop an existing view in mysql? : Sql dba
What is sql basics?
What is a constraint? Tell me about its various levels.
How to create a view on a table which does not exists
what are the features and advantages of object-oriented programming? : Sql dba
What is function and procedure in pl sql?
select * from emp where sal in(select max(sal) from emp) here there is any limit for in operator how many values accpect ?
Is sql scripting language?