‎2006 Nov 23 8:31 AM
Hello All
can join work on transperent table ,cluster table and pool table?
in my application i have 1 transperent table 1 cluster table and 1 pool table
Is join works on that ..if yes how to do this ?
thanks
‎2006 Nov 23 8:33 AM
‎2006 Nov 23 8:37 AM
hi,
<b>Transparent Table:</b>
Exists with the same structure both in dictionary as well as in database exactly with the same data and fields.
<b>Pooled Table:</b>
Pooled tables are logical tables that must be assigned to a table pool when they are defined.
Pooled tables are used to store control data. Several pooled tables can be cominied in a table pool.
The data of these pooled tables are then sorted in a common table in the database.
<b>Cluster Table:</b>
Cluster tables are logical tables that must be assigned to a table cluster when they are defined.
Cluster tables can be used to strore control data.
They can also be used to store temporary data or texts, such as documentation.
<i>So join will not work for cluster and pool tables.</i>
rgds
Anver
‎2006 Nov 23 9:12 AM
‎2006 Nov 23 9:22 AM
hi
good
Transparent tables (BKPF, VBAK, VBAP, KNA1, COEP)
Allows secondary indexes (SE11->Display Table->Indexes)
Can be buffered (SE11->Display Table->technical settings) Heavily updated tables should not be buffered.
II. Pool Tables (match codes, look up tables)
Should be accessed via primary key or
Should be buffered (SE11->Display Table->technical settings)
No secondary indexes
Select * is Ok because all columns retrieved anyway
III. Cluster Tables (BSEG,BSEC)
Should be accessed via primary key - very fast retrieval otherwise very slow
No secondary indexes
Select * is Ok because all columns retrieved anyway. Performing an operation on multiple rows is more efficient than single row operations. Therefore you still want to select into an internal table. If many rows are being selected into the internal table, you might still like to retrieve specific columns to cut down on the memory required.
Statistical SQL functions (SUM, AVG, MIN, MAX, etc) not supported
Can not be buffered
Join works in all the kind of table.
thanks
mrutyun^