You have just compiled a PL/SQL package but got errors, how
would you view the errors?
Answers were Sorted based on User's Feedback
Answer / priya reddy
show error;
This is the command used to view the errors..
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / santo
Sometimes 'Show error' won't display the required
info...then check dba_errors table
select text from dba_errors where name='****';
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / santosh
show error package <package name>
to check the compilation errors
similarly for functions
show error function <function name>
and for procedures
show error procedure <procedure name>
Is This Answer Correct ? | 0 Yes | 0 No |
Explain about your sql server dba experience? : sql server DBA
how can you connect from 10g user to 11g user??
How can we see the database version in os level
who owns the operating system files created by the utl_file package?
How does propagation differ between Advanced Replication and Snapshot Replication (read-only)?
What view(s) do you use to associate a user's SQLPLUS session with his o/s process?
What is a deadlock and what is a live lock? How will you go about resolving deadlocks?
What are the different types of indexes available in sql server? : sql server DBA
If you are given access to a sql server, how do you find if the sql instance is a named instance or a default instance? : sql server DBA
In oracle 10g export, import if we declare rows=y/n what would be the output?
How to start SQL Server in minimal configuration mode?
how can you generate profile of pl/sql applications to identify performance bottlenecks?