how to find count rows in table without count function?
Answer Posted / rajender varma
Select num-rows from user-tables where table-name='emp'
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we connect to ORACLE db using Windows Authentication?
What is a proxy class?
How would you change old and new values in an insert, delete and update triggers?
How to define and use table alias names in oracle?
can anyody please send me the dump for Oracle 10g certifications for DBA path?
how to use select statement as formal parameter in procedure specification?(someone said that using string) ex:-procedure(a in number,select ename from emp ) i am asking syntax like this?
What are the different types of failures that occur in Oracle database?
Explain the use of record option in exp command.
You have 4 instances running on the same UNIX box. How can you determine which shared memory and semaphores are associated with which instance?
Can a parameter be passed to a cursor?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
is there a tool to trace queries, like profiler for sql server?
What happens to the current transaction if the session is ended?
List out the components of logical database structure of oracle database.
What is object data modeling?