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

Why do we need a foreign key?

0 Answers  


how can we transpose a table using sql (changing rows to column or vice-versa) ? : Sql dba

0 Answers  


what is the use of HASH, LIST partitions?

1 Answers   ITC Infotech,


Differentiate between pl/sql and sql?

0 Answers  


what is timestamp in mysql? : Sql dba

0 Answers  






What is ttitle and btitle?

0 Answers  


what is mean by forward declaration and where we'll use it.

4 Answers   TCS,


What are stuff and replace function?

0 Answers  


What is indexing oracle sql?

0 Answers  


What does the acronym acid stand for in database management?

0 Answers  


How many joins in sql?

0 Answers  


Does execute immediate commit?

0 Answers  


Categories