what is the difference between binary_integer and
pls_integer

Answers were Sorted based on User's Feedback



what is the difference between binary_integer and pls_integer..

Answer / mkumar.it

Both binary_integer and pls_integer are almost same at front
end, however internal working logic are different. Both are
signed integer. For better performance, use pls_integer as
it uses machine arithmatic whereas binary_integer uses
library arithmatic. Other than this, if calculation
overflows the in pls_integer, it throws exception but
binary_integer does not.

Is This Answer Correct ?    35 Yes 7 No

what is the difference between binary_integer and pls_integer..

Answer / l. meher

The difference is :

PLS_INTEGER and BINARY_INTEGER have the same magnitude
range, they are not fully compatible. When a PLS_INTEGER
calculation overflows, an exception is raised. However,
when a BINARY_INTEGER calculation overflows, no exception
is raised if the result is assigned to a NUMBER variable.

Also, PLS_INTEGER operations use machine arithmetic, so
they are faster than NUMBER and BINARY_INTEGER operations,
which use library arithmetic.

In new applications, always use PLS_INTEGER for better
performance.

Is This Answer Correct ?    15 Yes 11 No

Post New Answer

More SQL PLSQL Interview Questions

Explain normalization and what are the advantages of it?

0 Answers  


How many databases can sql express handle?

0 Answers  


What is the use of function "module procedure" in pl/sql?

0 Answers  


What is primary key and foreign key?

0 Answers  


What is asqueryable?

0 Answers  






What are Lexical Parameters.How They are used in Reports 6i

2 Answers   eicc,


What is a database link?

3 Answers  


When sql appeared?

0 Answers  


Can we use insert statement in function?

0 Answers  


What are tables and fields?

0 Answers  


What is int identity in sql?

0 Answers  


What is left join in postgresql?

0 Answers  


Categories