what is the difference between authorization and
authentication?
Answer Posted / sujith
authorization means being capable to access some data or
application
authentication is a process of being identified by certain
condition to become authorized...... but at the same time
authentication might not be the only criterion to become
authorized......
There is a narrow gap between these two terms.....
take an example.....
to enter into your e-mail account , you
should be authenticated by user id and pwd... however it
doesn't mean that you are fully authorized to access the
whole page,
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
how the indexes are stored in the Oracle Database?
What are the differences between primary key and unique key?
Can I create users through internet explorer in oracle 10g?
What are the attributes of cursor?
Can we call procedure inside function in oracle?
What is raw datatype?
How data locks are respected in oracle?
What are the arithmetic operations?
What is a data dictionary and how can it be created?
How to get a create statement for an existing table?
What is query image?
How to create a table interactively?
> 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?
What is a snapshot in oracle database?
Why do we use coalesce function in oracle?