Interval partitioning. How to choose partition name

Hi all,
Is there any wat to choose partition name when new partitions are created?
I mean insted of "SYS_P101" something like CUSTOMRES_P_256 where 256 is the new value that caused the creation of the partition.
The reason is that before running a long process I need to gather statistics on the partition based on that number
Thanks in advance,

You can rename a partition with your preferred naming convention:
alter table CUSTOMER rename partition SYS_P101 to CUSTOMRES_P_256;But first you need to know the name of the partition. One thing I have used in cases when an interval partition has not been created yet is to insert a record with the new partition key value so that the interval partition is created, then get the partition name and then roll back the insert. This way you know the partition name in advance of any data loading.
You can of course query dba_tab_partitions and look at the high_value column to select the correct partition. However, I prefer the following method of getting the partition name. It gives you the name of the partition for a row in a table. This is also useful for existing data (not just new partitions) if you ever need to find the partition where a certain row lives.
select subobject_name
into v_partition
from ALL_OBJECTS
where OWNER = 'SCHEMA_OWNER'
AND data_object_id in (select dbms_rowid.rowid_object(rowid)
                                 from FACT_TABLE
                                 where PARTITION_KEY_COL = MY_VALUE
                                 and rownum = 1);You can then use the partition name to load your facts, gather statistics, or rename the partition.

Similar Messages

  • How to change datasource name based on the partition in configplan

    Hi
    Can any one please give me some solutions regarding how to change datasource name based on the partition in
    configplan.
    can't we do this in configuration plan?

    If you want to change template based on parameter. you have to use below syntax
    v_layout boolean
    V_LAYOUT:= FND_SUBMIT.add_layout(template_appl_name => 'SQLAP' -- application short name
    ,template_code => 'HUBAPAPN' -- template name
    ,template_language => 'en'
    ,template_territory => '00'
    ,output_format => 'PDF');
    Above can be used in plsql stored procedure before submitting Concurrent Program (Bi Publisher report) or may be you can try to add this code in Oracle reports after report or before report trigger
    Thanks
    Kamalakar

  • How to Find partition name by value ?

    hey,
    I have a big loading process into a certain fact table. the table is partitioned first by interval on a date column and then sub partitioned by hash. this is a big fact table so there are alot of bitmap indexes on it.
    i want to disable all indexes on a specific partition given a certain value of the partition key.
    is there any nice good looking way of finding the partition name by value ?
    i would realy like to avoid running a loop on the high_value long column in all_tab_partitions
    the etl process is running on the entire partition - after finding the partition name i would disable all sub partitions
    if i could only do something like...
    select $partition_name from some_table for (to_date('01/03/2012','dd/mm/yyyy'));i'm using oracle 11.2.0.2

    haki_benita wrote:
    now if we want to find the corresponding partition for a given value we need to check for the partition it's high value is greater then thy value and the previous one is lower then.Not necessarily. You can use the CBO to tell you what partition(s) will be used for a SQL statement. E.g.
    // partition range table using dates and yearly partitions
    SQL> create table testtab(
      2          id      number,
      3          day     date,
      4          flag    varchar2(1)
      5  )
      6  partition by range(day)
      7  (
      8          partition year_1900 values less than (TO_DATE('2000/01/01','yyyy/mm/dd')),
      9          partition year_2000 values less than (TO_DATE('2001/01/01','yyyy/mm/dd')),
    10          partition year_2001 values less than (TO_DATE('2002/01/01','yyyy/mm/dd')),
    11          partition year_2002 values less than (TO_DATE('2003/01/01','yyyy/mm/dd')),
    12          partition year_2003 values less than (TO_DATE('2004/01/01','yyyy/mm/dd')),
    13          partition year_2004 values less than (TO_DATE('2005/01/01','yyyy/mm/dd')),
    14          partition year_2005 values less than (TO_DATE('2006/01/01','yyyy/mm/dd')),
    15          partition year_2006 values less than (TO_DATE('2007/01/01','yyyy/mm/dd')),
    16          partition year_2007 values less than (TO_DATE('2008/01/01','yyyy/mm/dd')),
    17          partition year_2008 values less than (TO_DATE('2009/01/01','yyyy/mm/dd')),
    18          partition year_2009 values less than (TO_DATE('2010/01/01','yyyy/mm/dd')),
    19          partition year_2010 values less than (TO_DATE('2011/01/01','yyyy/mm/dd')),
    20          partition year_2011 values less than (TO_DATE('2012/01/01','yyyy/mm/dd')),
    21          partition year_2012 values less than (TO_DATE('2013/01/01','yyyy/mm/dd'))
    22  );
    Table created.
    // the following can be automated using PL/SQL - e.g. passing the date parameter to
    // a PL/SQL function and the function using the following approach to determine the
    // target partition
    SQL> explain plan
      2          set statement_id = 'partition.testtab.1' for
      3  select * from testtab where day = to_date( '2002/10/09','yyyy/mm/dd' );
    Explained.
    SQL> col PARTITIONS format a40
    SQL> select
      2          column_value    as PARTITIONS
      3  from       TABLE(
      4                  XmlSequence( extract(
      5                          DBMS_XPLAN.Build_Plan_Xml( 'PLAN_TABLE', 'partition.testtab.1' ),
      6                          '/plan/operation/partition'
      7                  )
      8                )
      9          );
    PARTITIONS
    <partition start="4" stop="4"/>
    <partition start="4" stop="4"/>
    SQL> select partition_name from user_tab_partitions where table_name = 'TESTTAB' and partition_position = 4;
    PARTITION_NAME
    YEAR_2002
    SQL>

  • How to choose the partition in oracle tables?

    Dear all,
    i m in need to create the partitions on prod.db tables since i m not aware of creating partitions?i just go through some theroy concepts and understood the range and list partitions (i.e)Range is normally used for values less than like jan,feb,march or values less than 50,000 values less than 1,00,000 like that each partition is having separate tablespaces to increase the performance. and for list is used to denoting the directions like west,east,north,south like that.
    Now what i want to know is ?
    1.)when will i can go ahead with partitions?
    2.)before creating partitions is it advise to create index or not needed?
    3.)if i started to create partition what is the leading column have to create partition and which partition has to choose?
    pls let me know and pardon me if i did any mistakes.
    thanks in advance..

    I had to research on same topic. One of my teammates suggested few points that might help you also.
    Advantages of partitioning:
    1) Partitioning enables data management operations such data loads, index creation and rebuilding, and backup/recovery at the partition level, rather than on the entire table. This results in significantly reduced times for these operations.
    2) Partitioning improves query performance. In some cases, the results of a query can be achieved by accessing a subset of partitions, rather than the entire table. Parallel queries/DML and Partition-wise Joins are also got benefited much.
    3) Partitioning increases the availability of mission-critical databases if critical tables and indexes are divided into partitions to reduce the maintenance windows, recovery times, and impact of failures. (Each partition can have separate physical attributes such as pctfree, pctused, and tablespaces.)
    Partitioning can be implemented without requiring any modifications to your applications. For example, you could convert a nonpartitioned table to a partitioned table without needing to modify any of the SELECT statements or DML statements which access that table. You do not need to rewrite your application code to take advantage of partitioning.
    Disadvantages of partitioning:-
    1) Advantages of partition nullified when you use bind variables.
    Additional administration tasks to manage partitions viz. If situation arises for rebuilding of index then rebuilding should to be done for each individual partition.
    2) Need more space to implement partitioning objects.
    3) More time for some tasks, such as create non-partitioning indexes, collection of “global" statistics (dbms_stat’s granularity parameter to be set to GLOBAL. if sub partition are used then we have to set it to ALL).
    4) Partition would implies a modification (of explain plan) for ALL the queries against the partitioned tables. So, if some queries use the choosing partition key and may greatly improve, some other queries not use the partition key and are dramatically bad impact by the partitioning.
    5) To get the full advantage of partitioning (partition pruning, partition-wise joins, and so on), you must use the Cost Based Optimizer (CBO). If you use the RBO, and a table in the query is partitioned, Oracle kicks in the CBO while optimizing it. But because the statistics are not present, the CBO makes up the statistics, and this could lead to severely expensive optimization plans and extremely poor performance.
    Message was edited by:
    Abou

  • How do I partition my MacBook Pro so I can keep Snow Leopard and also install Mountain Lion?

    How do I partition my MacBook Pro so I can keep Snow Leopard and also install Mountain Lion?
    I want to install the latest OS, but I already know that I will lose a lot of my software unless I can partition the hard drive and have two "bootable" drives.
    How do I retain everything I have, partition the drive, then reloa the software I own according to which OS it will work under?

    msmedia wrote:
    I do not currently own OS X ML.
    I am currently running OS X (10.6.8 Snow Leopard) on my MacBook Pro. It has a 2.8GHz Intel Core 2 Duo Processor. I want to upgrade to Mountain Lion, but many of my software titles will not operate with ML and I cannot afford to replace some of them (Adobe Creative Suite, for e.g.)
    After I back-up my HD and then partition the HD, how do I use the back-up to reinstall what I want to the SL partition, and then place the rest on the ML partition.
    I have not done what you want to do, so can only offer some general thoughts in support. Take value from the following where you can. No guarantees.
    If it was me, I would use a disk clone utility (e.g. Carbon Copy Cloner) to image the existing Snow Leopard disk to an external drive. Then verify that the external drive would boot and run Snow Leopard normally.
    I would then purchase and download the Mountain Lion upgrade installer, but not run it. Use Lion Diskmaker to make a bootable USB stick, and perform a clean install of Mountain Lion, replacing the Snow Leopard on your MBP. This way, you make absolutely certain that no third-party drivers or other SL cruft remains to make Mountain Lion unstable. Update to latest ML point release. Fix permissions. Let TimeMachine make a full backup of your ML installation to a different external drive. Then turn of Time Machine.
    In Disk Utility, use the + sign at the bottom of the ML partition to add another GUID, HFS+ Journaled partition for Snow Leopard. Resize to taste. Name it differently from your ML partition. Exhale.
    Now ideally, you would like to reverse the external clone and put it back into the new SL partition. Then fix permissions. And demonstrate that you can boot into individually stable OS X installations. This would save you alot of work. Resist copying your home directory into ML just yet.
    If you cannot successfully achieve the preceding paragraph, you will be faced with a full SL and application reinstall.
    The ~/Library contents for SL and ML are sufficiently different that you do not want to mix them. You may want to salvage Safari bookmarks.plist. And, ML created folders in the home directory may have different permissions or ACL settings than in SL. So, my rule of thumb would be to copy folders that you created in SL, and only the contents of matching named OS created folders such as Music, Pictures, Downloads, etc.
    For each operating system, you probably want the Time Machine settings to exclude the opposite OS X partition. If you use the same host name in Sharing prefs, then you will mix SL and ML backups on the same Time Machine back up drive. If you use different host names, they will be distinct folders in the Time Machine backups.backupdb and allow discrete restores per host. You may also want to gag Spotlight from indexing the opposite OS X partition.

  • I created a new partition; how do I open it? I want to install Mavericks on it?

    I created a new partition; how do I open it? I want to install Mavericks on it?

    When the Mavericks installer opens, you'll be given the chance to choose where you want it installed to. Select that partition.
    If the partition's formatted as Mac OS Extended (Journaled), no additional preparation is required.
    (94071)

  • Creating interval parition to existing range partition

    I have a table which has range partition on a number column.
    CREATE TABLE TEST(
    id INT NOT NULL,
    start INT NOT NULL
    PARTITION BY RANGE (start)
         PARTITION old_Data VALUES LESS THAN (1000000) TABLESPACE old,
         PARTITION new_Data VALUES LESS THAN (MAXVALUE) TABLESPACE new
    I would like to create monthly interval partition in old_data partition. Is this possible? Don't see any syntax for supporting this scenario.

    Welcome to the forum!
    Whenever you post provide your 4 digit Oracle version.
    >
    I have a table which has range partition on a number column.
    CREATE TABLE TEST(
    id INT NOT NULL,
    start INT NOT NULL
    PARTITION BY RANGE (start)
    PARTITION old_Data VALUES LESS THAN (1000000) TABLESPACE old,
    PARTITION new_Data VALUES LESS THAN (MAXVALUE) TABLESPACE new
    I would like to create monthly interval partition in old_data partition. Is this possible? Don't see any syntax for supporting this scenario.
    >
    No - it is not possible. There isn't any syntax for supporting that because integers do have have 'months' so how would Oracle partition an integer 'monthly'?
    If those integers are supposed to represent Unix 'epoch' date values then in 11g you can create a virtual column of DATE datatype and partition on that.
    But you will need to either recreate the table or, if you needed to do it online, use the DBMS_REDEFINITION package. Either approach results in a new table with the correct partitioning that includes the existing data.
    Here is a similar table to yours with a VIRTUAL column that is partitioned by day:
    drop table some_table_int
    create table some_table_int (
        column_1 nvarchar2(50),
        start_t number(38,0),
        column_n number,
        start_date DATE GENERATED ALWAYS AS (
        to_timestamp(to_char( to_date('01011970','ddmmyyyy') + 1/24/60/60 * start_t, 'DD-MON-YYYY HH24:MI:SS'),'DD-MON-YYYY HH24:MI:SS')
      ) VIRTUAL
    partition by range (start_date) interval (NUMTODSINTERVAL(7,'day'))
    (partition p_19700105 values less than (to_date('19700105', 'yyyymmdd'))
    /That VIRTUAL column is an ordinary DATE column and your ranges will be dates rather than numbers that have no meaning for anyone.
    The VIRTUAL column is only a data dictionary entry so it won't affect any actual data.

  • How many hash partitions create is prefer

    I want to create hash partitions on a large table,but i don't know how many partitions to create?
    create table T_PARTITION_HASH
      ID   NUMBER,
      NAME VARCHAR2(50)
    partition by hash (ID)
      partition T_HASH_P1
        tablespace USERS,
      partition T_HASH_P2
        tablespace USERS,
      partition T_HASH_P3
        tablespace USERS
    );

    Agustin UN wrote:
    What is the table size in rows and Mb?
    What is the grow estimated of table?
    What access is on table?
    . :-) Any help with my english will be welcome :-).the table contain about 1 hundred million rows.
    the table grows 1000000 rows per day.
    the table is use for statistical analysis in data wasehouse.
    Edited by: user7244870 on Nov 5, 2010 2:22 AM

  • Truncating first partition created for table partitioned by INTERVAL

    Hi,
    I have a table created with interval partitions.
    When I truncate the partitions, I am unable to truncate the very first partition created on the table. How can I do this?
    Thanks.

    >
    When I truncate the partitions, I am unable to truncate the very first partition created on the table
    >
    I'm going to assume you mean DROP and not TRUNCATE and are getting thel following error when you try to DROP the very first partition
    >
    ORA-14758: Last partition in the range section cannot be dropped
    >
    Interval partitioned tables have one or more RANGE partitions and zero or more INTERVAL partitions. The boundary between the LAST range partition and the FIRST interval partition is known as the transition point.
    As the error message states you cannot drop the sole remaining RANGE partition that is below the transition point.
    You have to move the transition point by merging the last remaining RANGE partition and the first INTERVAL partition. Since dropping a partiton means you no longer want the data you would normally truncate the range partition prior to the merge to minimize the amount of undo and redo that will be generated by the merge.
    See this article for an example of how to 'move' the transition point to effectively drop the last remaining RANGE partition.
    http://prutser.wordpress.com/2010/01/11/dropping-interval-partitions/

  • How to interpose a partition within two existing partitions?

    Hello,
    the following question concerns Oracle 10g.
    Suppose I have a simple partitioned thus table :
    CREATE TABLE table2000
    x int,
    y int,
    z date
    PARTITION BY RANGE(z)
    PARTITION PART_DEFAULT VALUES LESS THAN (MAXVALUE)
    NOCACHE
    NOPARALLEL
    NOMONITORING;
    I use a stored procedure which creates a new partition based on a date argument each time it is called and works by splitting
    the default partition above (PART_DEFAULT):
    CREATE OR REPLACE PROCEDURE CREATE_PARTITION_X(
         vTable IN VARCHAR2,
         vDate IN VARCHAR2
    ) IS
    V varchar2(300);
    BEGIN
    v :='ALTER TABLE '|| vTable ||' SPLIT PARTITION PART_DEFAULT AT (to_date('''||vDate || ''',''YYYYMMDD'')) INTO (PARTITION PART_'||vDate ||',PARTITION PART_DEFAULT)';
    execute immediate v ;
    END CREATE_PARTITION_X;
    To create partitions I run:
    /* CREATE A PARTITION FOR "JAN 01 2009" DATA (note partition name corresponds to January 02 2009) */
    1. SQL> CREATE_PARTITION_X('table2000','20090102');
    /* CREATE A PARTITION FOR "JAN 03 2009" DATA */
    2. SQL> CREATE_PARTITION_X('table2000','20090104');
    /* CREATE A PARTITION FOR "JAN 04 2009" DATA */
    3. SQL> CREATE_PARTITION_X('table2000','20090105');
    Here is the problem: noting that I have skipped the partition creation for JANUARY 02 data, I run the following to create a suitable partition
    SQL> exec CREATE_PARTITION_X('table2000','20090103');
    But I get the error:
    ORA-14080: partition cannot be split along the specified high bound
    My question is: how do I create/interpose this 'missing' partition into this table?

    In fact, more precisely than just splitting, one must split the existing partition that is chronologically greater than the one I want to insert.
    So originally I had this:
    SQL> select table_name,partition_name from user_tab_partitions WHERE table_name='TABLE2000';
    TABLE_NAME ** PARTITION_NAME
    =================================
    TABLE2000 ** PART_20090102
    TABLE2000 ** PART_20090104
    TABLE2000 ** PART_20090105
    TABLE2000 ** PART_DEFAULT
    Then I split the partition PART_20090104 into PART_20090104 and PART_20090103 thusly:
    SQL> ALTER TABLE table2000 SPLIT PARTITION PART_20090104 AT (to_date('20090103','YYYYMMDD')) INTO (PARTITION PART_20090104, PARTITION PART_20090103);
    Table modified.
    Now I have what I want:
    SQL> select table_name,partition_name from user_tab_partitions WHERE table_name='TABLE2000';
    TABLE_NAME ** PARTITION_NAME
    ====================================
    TABLE2000 ** PART_20090102
    TABLE2000 ** PART_20090103
    TABLE2000 ** PART_20090104
    TABLE2000 ** PART_20090105
    TABLE2000 ** PART_DEFAULT
    My one remaining question is this : is there a specific exception for this ORA-14080 so that I may react to such an error situation?

  • Finding out partition number for a partition name

    I have Oracle 9.2.0.6 data warehouse.
    The FACT table is range partitioned.
    I have materialized views on the FACT table with dbms_mview.pmarker included in the materialized view select query. These are refresh on demand mviews.
    I have local bitmap indexes on all non-fact columns of the mviews.
    I can find out from user_tab_modifications as to which partitions on the base fact table have been modified since the last analyze. If I can convert the partition name to partition number (pmarker), I can make all bitmap index partitions corresponding to those partition numbers unusable and then refresh mviews and then rebuild the unusable index partitions.
    How can I convert the partition names to partition number (pmarker) without knowing a rowid.
    Thanks,
    Ravi

    I have Oracle 9.2.0.6 data warehouse.
    The FACT table is range partitioned.
    I have materialized views on the FACT table with dbms_mview.pmarker included in the materialized view select query. These are refresh on demand mviews.
    I have local bitmap indexes on all non-fact columns of the mviews.
    I can find out from user_tab_modifications as to which partitions on the base fact table have been modified since the last analyze. If I can convert the partition name to partition number (pmarker), I can make all bitmap index partitions corresponding to those partition numbers unusable and then refresh mviews and then rebuild the unusable index partitions.
    How can I convert the partition names to partition number (pmarker) without knowing a rowid.
    Thanks,
    Ravi

  • How do i partition external hard drive using mac

    how do i partition my external hard drive on mac? can i use it as time machine disk as well as external drive?

    You can use an external disk for store files and for Time Machine, but you have to create a second volume.
    To create volumes on the external disk, use Disk Utility. See > http://pondini.org/OSX/DU3.html I recommend you to put as much space as you can for the Time Machine volume, because backups consume a lot and Time Machine starts deleting backups when the external disk is full

  • How to completely erase ( no recovery partition remaining) a lion partition with disk utilities on lion install disk?

    Where in a  lion install disc made from the installer can I find a bootable file with disk utilities?
    I downloaded lion a few hours ago and installed.
    I have 4 large hardrives (1.5TB) arranged in 8 partitions to allow me to work on a varied group of projects. I have some projects that need to be worked on with software running under Tiger, some with software that runs under leopard, some with snow leopard, and now Lion. I own multiple copies of software and multiple user pack system install discs.
    On a regular basis, I back up chunks of work on projects to external discs, and special backup areas on one of my drives. I don't like using time machine because I am running many operating environments on my mac pro and I don't ever want to be tied to one operating environment for important functionality, and I want to maximize the open space on my hard drives.
    Several partitions involve large video files. I am working on them in various versions of final cut, premiere and imovie. Because I have to use the same software versions my different clients are running, I don't want to move all the files " up" to a modern version. It would be professional suicide to stop accommodating my various clients. I say this to try to head off being told to make my clients upgrade. There are too many different clients and they are not going to replace all their equipment.
    On these volumes with video files, I often fill them up and copy off what I need to backup before I erase and do a clean install.  I also run VM Fusion and windows XP. I absolutely do not want to have a Recovery HD partition left on the drive when I erase or influencing the other partions using different OS versions on that same drive.
    Is there a bootable disc on the installer disk I just made? Can I use the disk utilities to do a low level erase on the lion volume that will remove the recovery partition?
    Can I go back to booting from Snow Leopard and erasing the Recovery partition with the drive partition that way? Will the Snow Leopard utility take out the Lion HD recovery partition?
    I am used to erasing my drives and rebuilding my machine and I believe it is the right way to use my multiple drives in my workflow. Now that I've got this invisible recovery partition, can you help me remove it and create a bootable disc that includes disk utilities?

    I assume the unix pdisk command will show you want is going on.
    You may not have a big worry.  There have always been a lot of hidden partitions. Disk Utility under 10.4.11 reports this drive has three (my now report four )  partitions, when pdisk reports that there are 15. 
    Macintosh-HD -> Applications -> Utilities -> Terminal
    Press return when done typing sudo pdisk -l
    -l include a lower case L
    The sudo command will ask for your administration password. No characters will appear when typing your password. Press return when done typing. sudo stands for super user do.  It's just like root. Be careful.
    mac $ sudo pdisk -l
    Password:
    Partition map (with 512 byte blocks) on '/dev/rdisk0'
    #:                type name                    length   base      ( size )
    1: Apple_partition_map Apple                       63 @ 1       
    2:      Apple_Driver43*Macintosh                   56 @ 64      
    3:      Apple_Driver43*Macintosh                   56 @ 120     
    4:    Apple_Driver_ATA*Macintosh                   56 @ 176     
    5:    Apple_Driver_ATA*Macintosh                   56 @ 232     
    6:      Apple_FWDriver Macintosh                  512 @ 288     
    7:  Apple_Driver_IOKit Macintosh                  512 @ 800     
    8:       Apple_Patches Patch Partition            512 @ 1312    
    9:     Apple_Bootstrap untitled                  1954 @ 149319048
    10:           Apple_HFS Apple_HFS_Untitled_1   2254440 @ 263968    (  1.1G)
    11:     Apple_UNIX_SVR2 untitled               6617188 @ 149321002 (  3.2G)
    12:           Apple_HFS Apple_HFS_Untitled_2 146538496 @ 2780552   ( 69.9G)
    13:     Apple_UNIX_SVR2 swap                    363298 @ 155938190 (177.4M)
    14:          Apple_Free Extra                   262144 @ 1824      (128.0M)
    15:          Apple_Free Extra                   262144 @ 2518408   (128.0M)
    Device block size=512, Number of Blocks=156301488 (74.5G)
    DeviceType=0x0, DeviceId=0x0
    Drivers-
    1:  23 @ 64, type=0x1
    2:  36 @ 120, type=0xffff
    3:  21 @ 176, type=0x701
    4:  34 @ 232, type=0xf8ff

  • HT201250 How do I partition my Time Machine back up drive (G-Drive) to back up both my IMac and my MacBook Air?

    How do I partition my Time Machine back up drive (G-Drive) to back up both my IMac and my MacBook Air?

    That's not needed, but if you want to do it, use the Disk Utility in the /Applications/Utilities/ folder to create a new partition.
    (70423)

  • How do i partition a hard drive

    How do I partition an external "my Passport" hard drive that I have already formatted for pc use so that I can use it with my MB Pro?

    Select the Desktop icon of the drive. Press COMMAND-I to open the Get Info window. In the top panel you should see displayed something like this:
    Look to see what's displayed for Format.

Maybe you are looking for

  • Archiving and reload possible for non-cumulative infocube 0IC_C03 ?

    Hello,     Can the cube 0IC_C03 be archived and reloaded into another cube so that the data can be accessed via a multiprovider ? I read in help (http://help.sap.com/saphelp_nw04/helpdata/en/8f/da1640dc88e769e10000000a155106/content.htm) that 'You ca

  • MacBook to iBook - Networking ethernet/firewire/IP/Sharing

    MacBook to iBook - Networking ethernet/firewire/IP/Sharing - This is the problem: 1. Firewire : I setup with firewire a MacBook to iBook IP network hub to use my MacBook over the iBook the net. Works 4 times without a problem, easy to set up, great !

  • Regular Expression in Apple script

    Hi, I need to test whether the text "I w'd like to give feedback" is available in UI or not, somehow my framework right now does not read quote( ' : between the characters w and d), so i want to use regular expression to search for the text in the UI

  • Problem receiving messages

    OK, so I am doing the following, and I am not able to retrieve messages: 1) creating messages, appending a JMSCorrelationID that I set, sending them to a queue, 2) using an MDB processes them, sending an ObjectMessage to a different queue. 3) applica

  • Could corrosion on an iPhone4 connector prevent iOS from loading?

    Story goes like this... Plugged in my phone, iTunes told me there was a new version (6.XX) I needed to upgrade to. Plugged phone in, said need to go into recovery mode. Click recovery mode button, screen changes to Apple logo with progress bar undern