Using and Indexing Tables

Hi, I'm fairly new to LabVIEW and had a few questions in regards to a VI I'm building.
I would like to be able to enter in a pressure profile into a table (basically a pressure and time the system stays at that pressure).  However, the built-in tables that I've found only use the string format.  Is there a standard table for using numeric values, or do I have to build the table from scratch?  I could not seem to find a way to format the table to use numeric values.
In addition, I'm trying to use a timer in order to look up the associated pressure value.  For instance, if 10 minutes have passed, use that time to look up the pressure from the table.  Is this most easily accomplished by indexing?  I also saw a look-up table, but was unsure if there is a more appropriate tool to use.
Does anyone have some advice or could you point me in the right direction?  Thanks in advance for your time.

Hi drfunkphd,
well a table is just a 2d array of strings...
There are other ways to store your time/pressure pairs. Maybe a 2d array of DBL would be ok? Or an array of clusters of [time, pressure] using different representation for each value?
To look up the pressure by time you have to add up the time values for each pressure value and the use "Threshold 1D Array" to find the index of the pressure value
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • How to Use and Filter Table contents after execution of Bapi

    Can anybody guide me how to Use and Filter the table Contents which i got after successful execution of a Bapi
    I used Component Controller in my Project
    Ex: My table contains Redundant data for a single column but i want to display the column contents with out Redundancy
    Name
    Raghu
    Raghu
    Raghu
    Debasish
    Debasish
    I want to filter the table contents and i want to display the table with out Redundancy
    and Even when i am using a Dropdown i selected a Column  from a Table as the values for that Dropdown  but that table is having redundant data and the same data is getting displayed in that Dropdown i want the Dropdown to display data with out redundancy
    Thanks

    I also got that problem recently and after debuging for a while I figured out, that it was resulting from an error in my table's model: When the model received new items to display I
    1.) Fired an delete event for the old items
    2.) Fired an insert event for the new items
    Problem was that when firing the delete event I didn't already assigned the new items to the model. Therefore it had still the old row count.
    Maybe you have also a faulty table model?...

  • SES and indexing table

    Hi
    I have a task, to use SES to create intarface (in ABAP) for search in one specyfic table. This table contains field with long description text and I would like to use SES to search over it. I read some documents and i checked SAP Help ... but i still don't know how to start. Is there any step by step tutorial for using SES? Do I have to create Business Object Type for this table? If i have to ... how to create it for to enable SES for it?
    Regards
    Marcin

    Hi Marcin,
      I don't know, what you have already read.
    The official develper's guide is here:
    http://help.sap.com/saphelp_nw70/helpdata/en/43/419742042fc86ae10000000a155106/frameset.htm
    -> Business Object Search with Search Engine Service (SES)
    Please read the system documentation of the SES ABAP interfaces as well!
    Administrator's guide is here:
    http://help.sap.com/saphelp_nw70/helpdata/en/27/08ef417fc65f24e10000000a1550b0/frameset.htm
    If your task refers to a new entity, you must create you own, new, customer-specific business object type.
    You should get access to an ERP 6.0 system, where SES is live for some objects and analyze existing implementations, for example the material master (BUS1001006)
    In the customizing you find the implementing class: for material master, it is CL_ERP_SE_BUS1001006.
    SES has no problems in handling long fields, containing text.
    Maybe you refer to SAPscript long texts. Then have a view at method ADD_TEXT_TO_CONTENT in the above class.
    Kind regards, Klaus

  • Confused by the removal of aggregate/index tables in HANA

    Hiya,
    I've heard that HANA removes the need for aggregate and index tables like BSIS, BSAS, VRPMA etc.
    Is HANA smart enough to do this? Or does Simple finance (sFIN) do this?
    I mean if we were to replace our Oracle DB with HANA would the index tables no longer exist?
    Or would we then need to implement simple finance to then remove the need for index tables?
    Thanks in advance!

    "HANA is just the DB."
    I wouldn't say it's "just" a DB, but for the point we're making here you can say that SAP HANA is mainly used as a DBMS and not as a application platform.
    "To remove index tables, aggregate tables etc you can activate business functions through SFW5 to improve specific lines of business."
    That's not generally true. Some enhancements (like the VBOX removal) are delivered via enhancement packages. These change the software, but typically don't make a new product out of your system.
    "Installation of sFIN, or S/4HANA contain more deeper changes to both the tables and ABAP code - that improve speed and efficiency."
    Nope, these are actual new implementations. These are new programs that do similar things as the former NetWeaver programs. But they are newly written code.
    This allows for much more radical redesign of functionality leading (hopefully) to even more improvements.
    Coming back to your first sentence: the more radical the software changes the more tightly integrated the solution will be with SAP HANA. More and more function will actually run "in" SAP HANA, making it more than just the DB.
    Ok, I hope this didn't increase the confusion again.
    Cheers,
    Lars

  • How to use and edit Outlines

    Can somebody provide me some information on how to edit and create Outlines in 11g? I have a case where we are using a third party tool whose generated SQL we can't control and it is generating a query that is incredibly slow due to the optimizer's choice of an index to use. Since we can't add a hint to the query, my understanding is that I should use stored Outlines. I can see how to create one but I am unclear as to how to add a "NO_INDEX" hint / how to tell it not to use and index. Can anybody provide me help on how to do this?
    Thanks,
    Greg

    1. SQL profile is not an alternative to stored outline. Oracle implemented SQL plan baseline as an alternative to stored outline.
    2. Stored outline can be used as an way of chaning execution plan without modifying the origincal SQL text(OP seems to find the way of doing this, am I right?).
    I call it "switching outline".
    See following test case which demonstrate how to use stored outline to fix execution plan without chaning SQL text.
    UKJA@ukja102> -- create objects
    UKJA@ukja102> drop table t1 purge;
    Table dropped.
    Elapsed: 00:00:00.12
    UKJA@ukja102>
    UKJA@ukja102> create table t1(c1 int, c2 int);
    Table created.
    Elapsed: 00:00:00.01
    UKJA@ukja102>
    UKJA@ukja102> create index t1_n1 on t1(c1);
    Index created.
    Elapsed: 00:00:00.03
    UKJA@ukja102> create index t1_n2 on t1(c2);
    Index created.
    Elapsed: 00:00:00.01
    UKJA@ukja102>
    UKJA@ukja102> insert into t1
      2  select level, level
      3  from dual
      4  connect by level <= 1000
      5  ;
    1000 rows created.
    Elapsed: 00:00:00.04
    UKJA@ukja102>
    UKJA@ukja102> exec dbms_stats.gather_table_stats(user, '&1', no_invalidate=>false);
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.42
    UKJA@ukja102>
    UKJA@ukja102>
    UKJA@ukja102> --------------------------------------------------
    UKJA@ukja102> -- case1: switching outline
    UKJA@ukja102>
    UKJA@ukja102> -- this is "current" plan
    UKJA@ukja102> explain plan for
      2  select /*+ full(t1) */
      3    *
      4  from t1
      5  where c1 = 1 or c2 = 2
      6  ;
    Explained.
    Elapsed: 00:00:00.04
    UKJA@ukja102>
    UKJA@ukja102> @plan
    UKJA@ukja102> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT                                                              
    Plan hash value: 3617692013                                                    
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |     
    |   0 | SELECT STATEMENT  |      |     2 |    14 |     3   (0)| 00:00:01 |     
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    14 |     3   (0)| 00:00:01 |     
    Predicate Information (identified by operation id):                            
       1 - filter("C1"=1 OR "C2"=2)                                                
    13 rows selected.
    Elapsed: 00:00:00.14
    UKJA@ukja102>
    UKJA@ukja102> -- want to change to this
    UKJA@ukja102> explain plan for
      2  select /*+ use_concat */
      3    *
      4  from t1
      5  where c1 = 1 or c2 = 2
      6  ;
    Explained.
    Elapsed: 00:00:00.01
    UKJA@ukja102>
    UKJA@ukja102> @plan
    UKJA@ukja102> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT                                                              
    Plan hash value: 82564388                                                      
    | Id  | Operation                    | Name  | Rows  | Bytes | Cost (%CPU)| Time
         |                                                                         
    |   0 | SELECT STATEMENT             |       |     2 |    14 |     4   (0)| 00:0
    0:01 |                                                                         
    |   1 |  CONCATENATION               |       |       |       |            |    
         |                                                                         
    |   2 |   TABLE ACCESS BY INDEX ROWID| T1    |     1 |     7 |     2   (0)| 00:0
    0:01 |                                                                         
    |*  3 |    INDEX RANGE SCAN          | T1_N2 |     1 |       |     1   (0)| 00:0
    0:01 |                                                                         
    |*  4 |   TABLE ACCESS BY INDEX ROWID| T1    |     1 |     7 |     2   (0)| 00:0
    0:01 |                                                                         
    |*  5 |    INDEX RANGE SCAN          | T1_N1 |     1 |       |     1   (0)| 00:0
    0:01 |                                                                         
    Predicate Information (identified by operation id):                            
       3 - access("C2"=2)                                                          
       4 - filter(LNNVL("C2"=2))                                                   
       5 - access("C1"=1)                                                          
    19 rows selected.
    Elapsed: 00:00:00.04
    UKJA@ukja102>
    UKJA@ukja102> -- create "bad" outline
    UKJA@ukja102> create or replace outline test_outln1
      2  on
      3  select /*+ full(t1) */
      4    *
      5  from t1
      6  where c1 = 1 or c2 = 2
      7  ;
    Outline created.
    Elapsed: 00:00:00.18
    UKJA@ukja102>
    UKJA@ukja102>
    UKJA@ukja102> -- create "good" outline
    UKJA@ukja102> create or replace outline test_outln2
      2  on
      3  select /*+ use_concat */
      4    *
      5  from t1
      6  where c1 = 1 or c2 = 2
      7  ;
    Outline created.
    Elapsed: 00:00:00.01
    UKJA@ukja102>
    UKJA@ukja102> -- check outline
    UKJA@ukja102> select hint
      2  from user_outline_hints
      3  where name = 'TEST_OUTLN2'
      4  ;
    HINT                                                                           
    INDEX(@"SEL$1_2" "T1"@"SEL$1_2" ("T1"."C1"))                                   
    INDEX(@"SEL$1_1" "T1"@"SEL$1" ("T1"."C2"))                                     
    OUTLINE(@"SEL$1")                                                              
    OUTLINE_LEAF(@"SEL$1_2")                                                       
    USE_CONCAT(@"SEL$1" 8)                                                         
    OUTLINE_LEAF(@"SEL$1_1")                                                       
    OUTLINE_LEAF(@"SEL$1")                                                         
    ALL_ROWS                                                                       
    OPTIMIZER_FEATURES_ENABLE('10.2.0.1')                                          
    IGNORE_OPTIM_EMBEDDED_HINTS                                                    
    10 rows selected.
    Elapsed: 00:00:00.11
    UKJA@ukja102>
    UKJA@ukja102>
    UKJA@ukja102> -- update outline
    UKJA@ukja102> update outln.ol$
      2  set hintcount = (
      3    select hintcount
      4    from outln.ol$
      5    where ol_name = 'TEST_OUTLN2')
      6  where
      7    ol_name = 'TEST_OUTLN1'
      8  ;
    1 row updated.
    Elapsed: 00:00:00.01
    UKJA@ukja102>
    UKJA@ukja102> delete from outln.ol$hints
      2  where ol_name = 'TEST_OUTLN1'
      3  ;
    5 rows deleted.
    Elapsed: 00:00:00.00
    UKJA@ukja102>
    UKJA@ukja102> update outln.ol$hints
      2  set ol_name = 'TEST_OUTLN1'
      3  where ol_name = 'TEST_OUTLN2'
      4  ;
    10 rows updated.
    Elapsed: 00:00:00.03
    UKJA@ukja102>
    UKJA@ukja102> delete from outln.ol$nodes
      2  where ol_name = 'TEST_OUTLN1'
      3  ;
    1 row deleted.
    Elapsed: 00:00:00.01
    UKJA@ukja102>
    UKJA@ukja102> update outln.ol$nodes
      2  set ol_name = 'TEST_OUTLN1'
      3  where ol_name = 'TEST_OUTLN2'
      4  ;
    3 rows updated.
    Elapsed: 00:00:00.01
    UKJA@ukja102>
    UKJA@ukja102> commit;
    Commit complete.
    Elapsed: 00:00:00.00
    UKJA@ukja102>
    UKJA@ukja102> -- see that stored outline is used in explain plan
    UKJA@ukja102> alter session set use_stored_outlines = true;
    Session altered.
    Elapsed: 00:00:00.04
    UKJA@ukja102>
    UKJA@ukja102> explain plan for
      2  select /*+ full(t1) */
      3    *
      4  from t1
      5  where c1 = 1 or c2 = 2
      6  ;
    Explained.
    Elapsed: 00:00:00.03
    UKJA@ukja102>
    UKJA@ukja102> @plan
    UKJA@ukja102> select * from table(dbms_xplan.display)
      2  /
    PLAN_TABLE_OUTPUT                                                              
    Plan hash value: 82564388                                                      
    | Id  | Operation                    | Name  | Rows  | Bytes | Cost (%CPU)| Time
         |                                                                         
    |   0 | SELECT STATEMENT             |       |     2 |    14 |     4   (0)| 00:0
    0:01 |                                                                         
    |   1 |  CONCATENATION               |       |       |       |            |    
         |                                                                         
    |   2 |   TABLE ACCESS BY INDEX ROWID| T1    |     1 |     7 |     2   (0)| 00:0
    0:01 |                                                                         
    |*  3 |    INDEX RANGE SCAN          | T1_N2 |     1 |       |     1   (0)| 00:0
    0:01 |                                                                         
    |*  4 |   TABLE ACCESS BY INDEX ROWID| T1    |     1 |     7 |     2   (0)| 00:0
    0:01 |                                                                         
    |*  5 |    INDEX RANGE SCAN          | T1_N1 |     1 |       |     1   (0)| 00:0
    0:01 |                                                                         
    Predicate Information (identified by operation id):                            
       3 - access("C2"=2)                                                          
       4 - filter(LNNVL("C2"=2))                                                   
       5 - access("C1"=1)                                                          
    Note                                                                           
       - outline "TEST_OUTLN1" used for this statement                             
    23 rows selected.
    Elapsed: 00:00:00.06
    UKJA@ukja102>
    UKJA@ukja102> drop outline test_outln1;
    Outline dropped.
    Elapsed: 00:00:00.04
    UKJA@ukja102> drop outline test_outln2;
    Outline dropped.================================
    Dion Cho - Oracle Performance Storyteller
    http://dioncho.wordpress.com (english)
    http://ukja.tistory.com (korean)
    ================================
    Edited by: Dion_Cho on Jan 29, 2009 8:25 PM
    Typo...

  • Should we use LOGGING or NOLOGGING for table, lob segment, and indexes?

    We have some DML performance issue on cf contention over the tables that also include LOB segments. In this case, should we define LOGGING on tables, lob segments, and/or INDEXES?
    Based on the metalink note < Performance Degradation as a Result of 'enq: CF - contention' [ID 1072417.1]> It looks we need to turn on logging for at least table and lob segment. What about the indexes?
    Thanks!

    >
    These tables that have nologging are likely from the application team. Yes, we need to turn on the logging from nologging for tables and lob segments. What about the indexes?
    >
    Indexes only get modified when the underlying table is modified. When you need recovery you don't want to do things that can interfere with Oracle's ability to perform its normal recovery. For indexes there will never be loss of data that can't be recovered by rebuilding the index.
    But use of NOLOGGING means that NO RECOVERY is possible. For production objects you should ALWAYS use LOGGING. And even for those use cases where use of NOLOGGING is appropriate for a table (loading a large amount of data into a staging table) the indexes are typically dropped (or at least disabled) before the load and then rebuilt afterward. When they are rebuilt NOLOGGING is used during the rebuild. Normal index operations will be logged anyway so for these 'offline' staging tables the setting for the indexes doesn't really matter. Still, as a rule of thumb you only use NOLOGGING during the specific load (for a table) or rebuild (for an index) and then you would ALTER the setting to LOGGING again.
    This is from Tom Kyte in his AskTom blog from over 10 years ago and it still applies today.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5280714813869
    >
    NO NO NO -- it does not make sense to leave objects in NOLOGGING mode in a production
    instance!!!! it should be used CAREFULLY, and only in close coordination with the guys
    responsible for doing backups -- every non-logged operation performed makes media
    recovery for that segment IMPOSSIBLE until you back it up.
    >
    Use of NOLOGGING is a special-case operation. It is mainly used in Datawarehouse (OLAP systems) data processing during truncate-and-load operations on staging tables. Those are background or even offline operations and the tables are NOT accessible by end users; they are work tables used to prepare the data that will be merged to the production tables.
    1. TRUNCATE a table
    2. load the table with data
    3. process the data in the table
    In those operations the table load is seldom backed up and rarely needs recovery. So use of NOLOGGING enhances the performance of the data load and the data can be recovered, if necessary, from the source it was loaded from to begin with.
    Use of NOLOGGING is rarely, if ever, used for OLTP systems since that data needs to be recovered.

  • How Find space Used by Tables and Indexes

    Dear All(s)
    How i check space used (and number of rows) by each table and index in schema. ( can i check current space utilization and sysdate-date past in time)
    How i can check used, and free space for each database and tablespace.
    Thanks

    You can always use the search feature
    anyway
    how to calculate the percentage of free space for a table in Oracle
    Re: incorrect free space in dba_free_space
    These links could give you all the necessary info

  • Can I use shrink for Tables and Indexes

    Hi Experts,
    I am planning to run shrink on large tables and indexes to reclaim space, I would like to know what are the dis-advantages or limitations of shrink on e-business suite.
    Architecture
    Four node application server (R12.1.1)
    Four node rac db (11gr2)
    HP OS.

    Hi;
    Please see:
    Using SHRINK or DELETE on tables FND_LOG_MESSAGES, FND_TEMP_FILE_PARAMETERS, FND_LOBS in EBS [ID 1066580.1]
    Regard
    Helios

  • Why cant we use sy-index in loop and endloop?where exactly we used sy-index

    hi
    can u help me for this

    Hi...
    Genereally Sy-index is used in iterative cases like
    while....endwhile
    and
    Do.... Enddo
    In LOOP ..... Endloop.... We should use SY-TABIX....
    It would be more consistent we use sy-tabix as we loop at internal table so this SY-TABIX points to the current record its reading...
    we can use sy-index but rarely depends on condition.....
    SY-INDEX and SY-TABIX will not be same always in LOOP and ENDLOOP
    Rewards points if satisfied..
    Regards
    Narin Nandivada

  • DB02 view is empty on Table and Index analyses  DB2 9.7 after system copy

    Dear All,
                 I did the Quality refresh by System copy export/import method. ECC6 on HP-UX DB29.7.
    After Import Runstats status n Db02 for Table and Index analysis was empty and all value showing '-1'. Eventhough
    a) all standard backgrnd job scheduled in sm36
    b) Automatic runstats are enabled in db2 parameters
    c) Reorgchk all scheduled periodically from db13 and already ran twice.
    4) 'reorgchk update statistics on table all' was also ran on db2 level.
    but Run stats staus in db02 was not getting updated. Its empty.
    Please suggest.
    Regards
    Vinay

    Hi Deepak,
    Yes, that is possible (but only offline backup). But for the new features like reclaimable tablespace (to lower the high watermark)
    it's better to export/import with systemcopy.
    Also with systemcopy you can use index compression.
    After backup and restore you can have also reclaimable tablespace, but you have to create new tablespaces
    and then work with db6conv and online table move to move one tablespace online to the new one.
    Best regards,
    Joachim

  • Index was not used in join tables query

    I tested the following query on my dev 10g and the explain plan did not indicated to use the index of a(t$trec, t$tdoc)
    select a.somecolumns, b.othercolumns
    from a, b
    where (a.t$trec = 1 or a.t$trec = 4 and t$tdoc = ' ')
    and a.t$ttyp = b.t$ityp and a.t$ninv = b.t$idoc
    | Id  | Operation          | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |              |   613 | 81529 |   578   (1)| 00:00:07 |
    |*  1 |  HASH JOIN         |              |   613 | 81529 |   578   (1)| 00:00:07 |
    |   2 |   TABLE ACCESS FULL| B            |  2362 |   186K|    32   (0)| 00:00:01 |
    |*  3 |   TABLE ACCESS FULL| A            |  9988 |   507K|   545   (1)| 00:00:07 |
    -----------------------------------------------------------------------------------t$tdoc = ' ' is NO NULL column with a [space] value when no enter entered.
    So why system did not pick up the index?

    Because Oracle believes, for any number of possible reasons, that the use of the index would be less efficient.
    Force the index usage with a hint and see how Oracle reacts or run a 10053 trace and see why Oracle is making the decision it is making.
    Perhaps it is as impressed by a column holding a single space as a placeholder for null as I am. <g>

  • How to make use of Index of a table in report to fetch data?

    Hi,
    I need a sample code for select statement which is making use of INDEX of a table
    to fetch data.
    Doubt:
    Can I fetch all the fields in the table by passing certain key fields of INDEX in where condition?

    Hi Raja,
    1) Mention the fields that you wish from database table (incase you don't need all the fields from the database table).
    2) Don't use the INTO CORRESPONDING FIELDS OF TABLE ztable clause.
    3)Instead use INTO TABLE ztable (But take care that during the declaration of the ztable, the fields declared are in order that in database table to fetch the Records in sequence).
    Please Find the Syntax and Code Below..
    SELECT *  FROM <TABLE>
      WHERE  <WHERE>
        %_HINTS ORACLE 'INDEX("<TABLE>~<INDEX ID")'.
    SELECT carrid
    INTO TABLE t_spfli
    FROM spfli
    WHERE carrud IN s_carrid AND
    connid IN s_connid
    %_HINTS ORACLE 'INDEX("&SPFLI&" "SPFLI~XXX")'.
    Hope this Is helpFul
    Thanks
    kalyan

  • Missing Tables and Indexes greyed out in DBACOCKPIT

    Hi All,
    I use Solution Manager 7.01 with MS SQL Server 2008 DB.
    I want to monitor with DBACOCKPIT a MS SQL Server 2005 DataBase of a SAP BPC 5.1.
    I connected the DB but in DBACOCKPIT some functionality are greyed out.
    I want to use in Diagnostics section the "MISSING TABLES AND INDEXES" function but this command is greyed out.
    Is it possible to use this function?
    Please, help me!
    Regards,
    Alessandro

    Hi,
    Gray color means that screen is disabled for any reason (authorization, SQL Server release, monitoring remote, etc).
    I believe, those items cannot be monitored unless these limitations are sorted out.
    Please refer to the Document "The SAP DBA Cockpit for Microsoft SQL Server" in SDN.
    You can get the status about the restriction in the bottom of dbacockpit screen.
    Thanks,
    Jagan
    Edited by: jagadheeshan govindasamy on Sep 16, 2009 1:03 PM

  • DB02 = Missing Tables and Indexes = Unknown objects in ABAP Dictionary = DB views

    Hi SAP Gurus,
    on our SAP NetWeaver 7.x BW (based on AIX/Oracle) I find via transaction DB02 (path = Diagnostics => Missing Tables and Indexes) under "Unknown objects in ABAP Dictionary" under DB views a BW object /BI0/.....
    When I make a double click on the object, I am getting the popup window "Display not possible for this object":
    How can I identify the object and clarify with the BW application expert, if needed, how to resolve this object?
    I searched already via RSA1 for the object, but I wasn't able to find anything so far ...
    Thanks for your help and ideas.
    Best regards
    Carlos

    Hello Carlos
    The database view in question is a temporary database object created during a query execution.
    Please read this SAP note 449891 - Temporary database objects in BW 3.x to understand what that view is all about and impact if those views are removed.
    The SAP notes 449891 and 1139396 suggests to run the report SAP_DROP_TMPTABLES to drop these temporary objects. Whether the objects are still required or not is a question to be put across to the BW team. If the temporary objects are removed when they are used by a query, then the query will fail.
    Have a nice day
    RB

  • Import dumpfile with seperate tablespaces for table and index

    Hi,
    We have a schema for which the its tables are stored in seperate tablespace and indexes are stored in different tablespace. Now we have take full schema export. Now we want to import it on another schema. Now I want to know if the we have difference in the tablespace name we use REMAP_TABLESPACE clause of the impdp command but what about the seperate tablespace for table and indexes. How would Oracle handle this.
    Regards,
    Abbasi

    Hi,
    I hope you created the same tablespace structure on the target side if not so remap_tablespace option you have to use for specifying different tablespaces.Oracle will take care of putting data and index.Any how if a index is moved from one tablespace to other you have to rebuild them,once you rebuild them than only stattistics are gathered otherwise you
    might face some performance issue.
    Better option is to keep same tablespace structures in source and target environment.
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com
    Edited by: Rafi (Oracle DBA) on May 9, 2011 7:07 AM

Maybe you are looking for

  • How to capture PLSQL package error and show the same in OAF Page.?

    Hi all, I am having the requirement to capture the error from a PL/SQL package and show the error in OAF page with meaning full error. Assume i am having the create and review page. The create page having the employeeLOV input field (non mandatory fi

  • Is there a way to make system.out.println() scroll down as it goes?

    I am writing a program where I want to be able to read what's printed out in the console of my IDE through System.out.println() as the program runs/after the program runs. However, right now I run the program, the message prints out, and then when I

  • Origin of Sales Tax ID Number in billing document

    Hi In the billing Header, Taxes, there is a field "Origin of Sales Tax ID Number". Can you pls. guide me what is the mean of this field and how the value for that particular field is detemined. with regards

  • In FR, how to create dynamical reference column

    In FR, can we do something like below: I have scenarios in the column header; while in column 1, scenario is selected from the current point of view, for example when I select Budget, I would like in column 2 to be the Actual; If I select Forecast in

  • Oracle 10g R2 in solaris.

    Hi, i have installed oracle 10g(10.2.0.2) in solaris 10. i have installed database with ASM. Now i have connected to the database through PUTTY session and started both the ASM instance and DB instance. When i connect as sys from another session thro