vd


{ City } nashik
< Country > india
* Profession * programmer
User No # 6724
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 47
Users Marked my Answers as Wrong # 7
Questions / { vd }
Questions Answers Category Views Company eMail




Answers / { vd }

Question { 8169 }

what is null value?


Answer

Null value is that value which is neither zero or space or
any character.This value is defined by Oracle server, and
hence cannot be described.Also every null value generated
by server is unique than another..hence we cannot compare
it with character, numeric or date functions.

Is This Answer Correct ?    4 Yes 4 No

Question { 12346 }

what is the difference between rollback & commit?
can a foreign key has null value?


Answer

With commit, all the changes, which are made using insert,
update or delete SQL statments, are save permanently in the
table(ie DB).Whereas, if one want to undo the changes made
by DML statments, then before issuing commit, one can use
rollback statment.Rollback statment has no effect, if used
after commit.
Yes foreign key can have null value.

Is This Answer Correct ?    9 Yes 1 No


Question { TCS, 18421 }

what is the difernece between named and anonymous pl/sql
blocks??


Answer

Anonymous block those pl/sql blocks which are not stored in
your DB as an objects, whereas named pl/sql blocks are
those blocks which are stored in DB as an objects.Due to
storage in DB, these named pl/sql blocks can be called from
another named or anonymous blocks, or from any form also...

Is This Answer Correct ?    34 Yes 2 No