-
-
How can you prevent the users logging in through tools like TOAD or SQL Navigator or PLSQL Developer..?
Connect as sydba Write a LOGON trigger like this CREATE OR REPLACE TRIGGER RESTRICT_TOOL AFTER LOGON ON DATABASEDECLARE L_TOOL V$SESSION.PROGRAM%TYPE;BEGIN SELECT PROGRAM INTO L_TOOL FROM V$SESSION WHERE AUDSID = USERENV('SESSIONID') AND AUDSID != (SELECT AUDSID FROM V$SESSION WHERE USERNAME='SYS'); IF UPPER(L_TOOL) LIKE '%TOAD%' OR UPPER(L_TOOL) LIKE...
-
-
-
-
-
-
-
-
-
-
Database Instance
How can I copy a table from one database instance to another database instance
-
Migrate db2 data to Notepad
How to migrate db2 data to notepad?
-
-
DDL and DML
Why do we need a DDL and DML in a database system?
-
-
-
Case and Decode
What is the difference between Case and Decode?In what situation we can use Case and Decode
-
-
Strongest Normal Form
Which one is strongest normal form? Why?
Oracle Concepts Interview Questions
Ans