Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is count(*) from po_vendors(any table)? what does it do
and
what is count(1) from po_vendors(any table)?
what is count(0) from po_vendors(any table)
the out put is same
what is the difference

Answers were Sorted based on User's Feedback



what is count(*) from po_vendors(any table)? what does it do and what is count(1) from po_vendors(..

Answer / sandeep sutar

Result if count(*), count(1), count(0) will be same.

Howevenr,

When we use count(*) then
first oracle query executer gets all the rows in buffure
cache, including all column and then counts all the rows.
this will impact with less performance.


select count(1) or count(0)
This reduces unwanted I/O by selecting just '1' against all
the rows.


Best practice to getting rowcount of table is

select count(rowid) from table_name;

Is This Answer Correct ?    10 Yes 1 No

what is count(*) from po_vendors(any table)? what does it do and what is count(1) from po_vendors(..

Answer / koti

Not For above Qution..........

Q)How to fine How many coloumns in the APPs TABLES ?

Ans):-

select count(*) from dba_tab_columns
where table_name ='give apps table name';

Is This Answer Correct ?    4 Yes 0 No

what is count(*) from po_vendors(any table)? what does it do and what is count(1) from po_vendors(..

Answer / bujji

select count(*) from temp1;
select count(1) from temp1;
select count(0) from temp1;

Above all 3 statements gives count (all are same) including
null vaues.

select count(Column_Name) from temp1;

Above statement gives the coulumn count witout null vaues.

Is This Answer Correct ?    3 Yes 0 No

what is count(*) from po_vendors(any table)? what does it do and what is count(1) from po_vendors(..

Answer / eshwar

count(*) give the column count including null vaues

count(1),count(0) both will give the same result they will
count with out nulls

Is This Answer Correct ?    8 Yes 8 No

Post New Answer

More Oracle Apps Technical Interview Questions

in which table sub inventory related information for item is stored?

3 Answers   chain sys, Scan Steel,


what is the difference between oracle 8i and 9i?

1 Answers  


what are the functions you are used in utl_file at the time of transferring the data?

2 Answers   Oracle,


In which directory your flatfile is given?if u connected different instance where it is find?

3 Answers  


How many standard interface programs in oracle purchasing module and oracle inventory? What are they?

3 Answers   KPIT,


Cycle of requestion to receving transaction.

1 Answers   Accenture,


How to create a link between One dependent value set to another Dependent value set

5 Answers   Indorama, ManSoft System, Syntel, TE Data,


what are the error tables in AP?

6 Answers  


What are different execution methods of executabls?

1 Answers   Genpact, TCS,


How do u identity its name of report?

3 Answers  


Except the SRS window in which we can submit the concurrent program.

5 Answers   IBM, TCS,


how to set org context?

3 Answers  


Categories
  • Oracle Apps Technical Interview Questions Oracle Apps Technical (547)
  • Oracle Apps Financial Interview Questions Oracle Apps Financial (793)
  • Oracle Apps Manufacturing Interview Questions Oracle Apps Manufacturing (53)
  • Oracle Apps HRMS Interview Questions Oracle Apps HRMS (169)
  • Oracle Apps CRM Interview Questions Oracle Apps CRM (9)
  • Oracle Apps SCM Interview Questions Oracle Apps SCM (141)
  • Oracle Install Base Interview Questions Oracle Install Base (62)
  • Oracle Service Contracts Interview Questions Oracle Service Contracts (101)
  • Oracle Apps AllOther Interview Questions Oracle Apps AllOther (114)