10)In an RDBMS, the information content of a table does not
depend on the order of the rows and columns. Is this
statement Correct?
A)Yes
B)No
C)Depends on the data being stored
D)Only for 2-dimensional tables
Answer Posted / yogesh babu
it depends on the data being stored....there are different
methods used to store data.for each and every storage
mechanisms the data of the table ll be stored in different
places
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How to use "startup" command to start default instance?
Explain view?
Why do we need integrity constraints in a database?
What is the oracle implicit cursor?
Explain oracle’s system global area (sga).
> 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?
Why should I use oracle database?
How to create a stored procedure in oracle?
Explain the use of grant option in exp command.
How to compare dates in oracle sql?
What are the ansi data types supported in oracle?
What is an oracle wallet?
defination of bitmap index
11. Display the client number and name and the client number and name of the person who referred that client.
How to define a variable of a specific record type?