Answer Posted / sarika
select * from tablename;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How to use attributes of the implicit cursor in oracle?
What is oracle latest version?
How many memory layers are in the oracle shared pool?
What are the various types of snapshots ?
What are the various oracle database objects?
How to apply filtering criteria at group level in oracle?
How to delete an existing row from a table in oracle?
Please explain drop constraint oracle?
What is a user account in oracle?
In Oracle Clinical 4.5.0, can the VIEW_TEMPLATE_ID column in DATA_EXTRACT_VIEWS table contain NULL value?
What is a sub query and what are the different types of subqueries?
> 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?
Does oracle database need java?
What are the ways tablespaces can be managed and how do they differ?
How to install oracle database 10g xe?