Possible to use interval partitions to drop old partitions?

Interval partitions can add new partitions and I can do a range by date. This is helpful. However, lets say I have alot of tables in my database and I need to keep data for different lengths of time in different tables. Can I set something in the intervals to drop older partitions?
I don't think I can, but I thought I would ask. I can do this with code. However, if oracle does it for me, I don't want to do it myself.

Can not be done but you can use the HIGH_VALUE column, or the PARTITION_POSITION columns to make decisions.
Just remember that you can never drop the root partition so build the initial partition such that it is very small and not used.

Similar Messages

  • Is it possible to use old Apple Flat Panel Display (62 watt power adapter) with MacBookPro 13" Mid-2012 running 10.8.4? Tried mini display to VGA cable

    Is it possible to use old Apple Flat Panel Display (62 watt power adapter) with a MacBookPro 13" Mid-2012 laptop?  Would like to use larger screen when working at home.  I have a mini display port to VGA cable and have tried to hook up the old display but it seems not to work.  When I try to activate the screen on the old display-- a window comes up in the MacBookPro and asks me if I want to shut down the computer.  What little I have read it that the MacBookPro had Thunderbolt and the old display may not be compatible?  Any assistance would be appreciated.

    quax88 wrote:
    11.09.12 22:16:06,148 ClamXavSentry[286]: scan email files
    11.09.12 22:16:06,148 ClamXavSentry[286]: I will quarantine infected files
    This doesn't have anything to do with your problem, but it will likely cause other issues with your e-mail.
    Here's my standard recommendation concerting the use of A-V software to deal with potentially infected messages:
    Never use ClamXav (or any other A-V software) to move (quarantine) or delete e-mail. It will corrupt the mailbox index which could cause loss of other e-mail and other issues with functions such as searching. It may also leave the original e-mail on your ISP's e-mail server and will be re-downloaded to your hard drive the next time you check for new mail.
    So, if you choose to "Scan e-mail content for malware and phishing" in the General Preferences, make sure you do not elect to either Quarantine or Delete infected files.
    When possibly infected e-mail files are found:
    Right-click/Control-click on either the infection or file name in the ClamXav window.
    Select "Reveal In Finder" from the pop-up menu.
    When the window opens, double-click on the file to open the message in your e-mail client application.
    Read the message and if you agree that it is junk/spam/phishing then use the e-mail client's delete button to delete it (this is especially important when the word "Heuristics" appears in the infection name).
    If you disagree and choose to retain the message, return to ClamXav and choose "Exclude From Future Scans" from the pop-up menu.
    If this is a g-mail account and those messages continue to show up after you have deleted them in the above manner, you may need to log in to webmail using your browser, go to the "All Mail" folder, find the message(s) and use the delete button there to permanently delete them from the server.
    To fix the corrupted mailbox index(es), highlight each one that was corrupted and choose Rebuild from the appropriate menu.

  • Is it possible to use the old iMac 2010 21inch as an external monitor for my 15inch Macbook retina?

    Is it possible to use the old iMac 2010 21inch as an external monitor for my 15inch Macbook retina? E.g. Using a mini-display cable to connect from the imac mini display port to thunderbolt port on my macbook.

    Apple shows only the 27" version supporting Target Display Mode.
    <http://support.apple.com/kb/HT3924>

  • Is it possible to use my old visioneer 2400 scanneron thenew mac mini

    is it possible to use my old visioneer 2400 scanneron thenew mac mini

    Hi Peter,
    It's not specifially mentioned here...
    http://www.hamrick.com/vuescan/vuescan.htm#visioneer
    But it just may not have been tested, might work fine, I'd give the free download of VueScan a test...
    http://www.hamrick.com/

  • I have a new macbook air, and want to transfer all my data using time machine from my old macbook running leopard, is this possible and easy

    I have a new macbook air, and want to transfer all my data using time machine from my old macbook running leopard, is this possible and easy and will it transfer all my musc and photos?

    The Setup Assistant can restore your data from a Time Machine backup. You'll be asked if you want to do this the first time you turn the computer on.
    (60797)

  • Range partiotion using interval partitioning

    Hi all,
    I am trying to create a partitioned table so that a number (which date converted to number ) partition is created on inserting a new row for release_date column.
    But please note that release_date column is having number data type (as per design) and people want to create an interval based partition on this.
    Any work around for this?
    They want data type NOT to be altered.
    create table product(
    prod_id number,
    prod_code varchar2(3),
    release_date number)
    partition by range(release_date)
    interval(NUMTOYMINTERVAL (1,'MONTH'))
    (partition p0 values less than (20120101))
    Thanks in advance

    >
    I am trying to create a partitioned table so that a number (which date converted to number ) partition is created on inserting a new row for release_date column.
    But please note that release_date column is having number data type (as per design) and people want to create an interval based partition on this.
    >
    You can't use interval partitioning on the NUMBER column but you can add a VIRTUAL column based on it that uses DATE datatype.
    create table product(
    prod_id number,
    prod_code varchar2(3),
    release_date number,
    rel_date DATE as (to_date(to_char(release_date), 'yyyymmdd')) VIRTUAL
    partition by range(rel_date)
    interval(NUMTOYMINTERVAL (1,'MONTH'))
       partition p0 values less than (to_date('20120101', 'yyyymmdd'))
    )The virtual column is a metadata only column (i.e. no data is stored for it).
    NOTE: you will need to modify your queries to use the 'REL_DATE' column in order to get partition pruning:
    insert into product (prod_id, prod_code, release_date) values (1,'abc', 20110502)
    insert into product (prod_id, prod_code, release_date) values (1,'abc', 20120502)
    -- this query does NOT prune
    select * from product where release_date < 20120101
    |   0 | SELECT STATEMENT    |         |     1 |    38 |     4   (0)| 00:00:01 |       |       |
    |   1 |  PARTITION RANGE ALL|         |     1 |    38 |     4   (0)| 00:00:01 |    1 |1048575|
    |*  2 |   TABLE ACCESS FULL | PRODUCT |     1 |    38 |     4   (0)| 00:00:01 |    1 |1048575|
    -- this query DOES prune
    select * from product where rel_date < to_date('20120101', 'yyyymmdd')
    |   0 | SELECT STATEMENT       |         |     1 |    38 |     3   (0)| 00:00:01 |       |       |
    |   1 |  PARTITION RANGE SINGLE|         |     1 |    38 |     3   (0)| 00:00:01 |     1 |     1 |
    |*  2 |   TABLE ACCESS FULL    | PRODUCT |     1 |    38 |     3   (0)| 00:00:01 |     1 |     1 |

  • I am used to "drag and drop" content from my computer to my old i-pod.  With the new i-tunes, I can't seem to do that.  Any suggestions?

       I am used to "drap and drop" content from my computer to my old i-pod.  With the new i-tunes, I can't seem able to do that.  Any suggestions?  Thanks.

    diana42 wrote:
    My problem is that Itunes does not acknowledge inserted CD in DEVICES area,
    Are these Audio CDs?
    Only Audio CDs will show up in iTunes.
    This is new to me because I am used to importing and making copies from my playlists.
    I don't follow. Would you explain this a bit more?

  • I would like to know if is possible to use the old iSight with my powerbook (mid 2009)?

    I would like to know if is possible to use the old iSight with the macbook pro (mid 2009)?

    Hi,
    If the Mac has Firewire then you can use the External iSight
    (Other readers
    If you have Firewire 800  then you will need an adapter to use the Firewire 400 camera - Search for the word Adpater and see posts by EZ Jim for more details)
    Don't daisy-chain the camera with Hard Drives
    The camera only uses a data rate of 200Mbps and the differences in Hard Drive data speeds can be an issue.
    The External iSIght should work no matter what Firmware is on there currently.
    There is some evidence that having the 1.0.3 version (Open the System Profiler > Hardware > Firewire) on the device makes it more compatible/useable in later OS versions
    The Updater is included in Tiger and Leopard. 
    Hard Drive/System/Library/CoreServices/iSight Updater/iSight Updater.app
    An OS Update could "trigger" this to be run if you have Tiger
    It can also be run as a Standalone.
    It is Not present in Snow Leopard and although the documentation says this Firmware is an Audio update some people report that the camera needs the 1.0.3 Firmware to run.
    (that could simply be the "Flashing" the Memory involved resets it enough to work)
    10:22 PM      Wednesday; June 8, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Is it possible to use bootcamp to install windows on a flash drive (rather than an HD partition)?

    I would like to run windows on my Mac preferably from a flash drive, or an external drive. I don't want to install it locally because I don't have enough HD space. I've found a few sites and videos that show you how to do this from a PC (like this one http://www.youtube.com/watch?v=vh-F6dcXmsE) but I don't have a PC and I'd like to know if it's possible to use bootcamp to accomplish this.
    Thanks very much for any help! Would be greatly appreciated.

    If you have Windows-to-Go, it can be installed on an external disk, otherwise Windows licensing restricts it. Bootcamp has additional checks to enforce such licensing.
    You can always install it on an internal drive first and then put the drive in a USB enclosure.

  • 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.

  • Import one old Partition

    Hi.
    System: Solaris 9
    DB.: Oracle 9i
    My table had five partitions (PR1006_CDRCSGCONTPROV
    PR1106_CDRCSGCONTPROV,PR1206_CDRCSGCONTPROV,PR0107_CDRCSGCONTPROV,PR0207_CDRCSGCONTPROV)
    I exported PR1006_CDRCSGCONTPROV, but there wasn't rows.
    Export parameters used
    file=/pr01/work/BACKUP/oracle/iprd/logico/exp_partition_IPRD_IMS_PR1006_CDRCSGCONTPROV.dmp
    log=/pr01/work/LOG/oracle/iprd/partition/exp_partition_IPRD_IMS_PR1006_CDRCSGCONTPROV.log
    tables=(
    IMS.CDR_CSG_CONT_PROV:PR1006_CDRCSGCONTPROV
    direct=y
    grants=y
    indexes=y
    rows=y
    constraints=y
    statistics=none
    Export log
    About to export specified tables via Direct Path ...
    Current user changed to IMS
    . . exporting table CDR_CSG_CONT_PROV
    . . exporting partition PR1006_CDRCSGCONTPROV 0 rows exported
    Export terminated successfully without warnings.
    Drop partition
    After I droped that partition (PR1006_CDRCSGCONTPROV).
    I don't have log this process, but I'm surry there isn't this partition
    Now, I'd like to import that partition (PR1006_CDRCSGCONTPROV).
    I'm using theses parameters:
    Path are correct.
    Import parameters
    file=/pr01/batch/scripts/oracle/itst/por_demanda/import_part/09022007/exp_partition_ITST_IMS_PR1006_CDRCSGCONTPROV.dmp
    log=/pr01/batch/scripts/oracle/itst/por_demanda/import_part/09022007/imp_partition_ITST_IMS_PR1006_CDRCSGCONTPROV.log
    tables=(
    CDR_CSG_CONT_PROV:PR1006_CDRCSGCONTPROV
    Log Import => ERROR
    Export file created by EXPORT:V09.02.00 via direct path
    import done in WE8ISO8859P1 character set and UTF8 NCHAR character set
    import server uses UTF8 character set (possible charset conversion)
    . importing IMS's objects into IMS
    IMP-00015: following statement failed because the object already exists:
    "CREATE TABLE "CDR_CSG_CONT_PROV" ("CDR_HEAD_CSS_ID" NUMBER NOT NULL ENABLE,"
    Table's structure with all parititions
    IMP-00057: Warning: Dump file may not contain data of all partitions of this table
    IMP-00055: Warning: partition or subpartition "CDR_CSG_CONT_PROV":"PR1006_CDRCSGCONTPROV" not found in export file
    Import terminated successfully with warnings.
    Could you help me?
    Thank's a lot

    Hi.
    Thank's your reply.
    The table IMS.CDR_CSG_CONT_PROV has 5 partition:
    PR1106_CDRCSGCONTPROV ==== HIGH_VALUE = 01/12/2006
    PR1206_CDRCSGCONTPROV ==== HIGH_VALUE = 01/01/2007
    PR0107_CDRCSGCONTPROV ==== HIGH_VALUE = 01/02/2007
    PR0207_CDRCSGCONTPROV ==== HIGH_VALUE = 01/03/2007
    PR0307_CDRCSGCONTPROV ==== HIGH_VALUE = 01/04/2007
    When I tried to create a partition PR1006 (HIGH_VALUE = 01/11/2006), oracle didn't let me create old partition.
    Command executed
    ALTER TABLE IMS.CDR_CSG_CONT_PROV ADD PARTITION PR1006_CDRCSGCONTPROV VALUES LESS THAN (to_date('01-11-2006','DD-MM-YYYY')) TABLESPACE TSD_IMS_CDR_PARTITION04;
    Log
    ERROR at line 1:
    ORA-14074: partition bound must collate higher than that of the last partition
    Thank's again.
    Leo Arruda

  • Is it possible to use a USB hub on a new MacBook Pro with Maverickss?

    I have used a powered Q-Store USB2 hub on first my old trust MacBook with the 13 inch screen running System X.6.8 for years; then I switched it over to my new 13 In. MacBook Pro (non retina) with Mavericks X.9.2 and it still works great. It is powered and seems to run a full load including USB hard drives, camera when wanted, cooling pad with fan, printer/scanner/copier combo, charging a MP3 player or Galaxy S4, apple mouse and keyboard, all with no trouble and no drop outs. I let an old Firewire 400 or 800 hard disk stay with my old Macintosh for now as it mirrors it, but sometimes hook it up with no problem except it gets hot.
    I have a new USB3  WD Passport 3 hard drive and a 32 gb USB 3 memory stick. I wanted to put these on a USB3 hub and use one of the ports for the faster items. I can run either my WD My Passport 3 Gb drive that I use to mirror my internal drive as long as it is alone. I can also plug a 32 gb A Data memory stick in fine alone except things get a bit snug, and there's no more room on the USB 2 hub for the memory stick. If I do not use a hub for the one port I have to either use the Hard Drive or the memory stick, not both. I was using the memory stick to port files back and forth between my old and new computers at least for a while. The USB 3 peripherals work reliably when plugged in alone, but the moment a hub gets in the picture even if only one item is plugged into it, things drop in and out. It does not matter if it is the powered USB 3 hub or the non-powered Anker USB 3 4 port hub. The USB 2 items simply work but the USB 3 ones only work alone. I have looked at the power specifications. It seems like one hard drive uses all of the power the hub can put out.
    It looks like the USB 3 is rather limited on Macintosh computers is all I can conclude. There may be extra speed, but what good is it if you can only run one peripheral at a time? It seems like even a hub stresses it unless it is a hub and a memory stick or two. I even changed to system settings to keep my hard drives from going to sleep, but still it drops out randomly if hooked to a hub and runs perfectly when plugged in directly. I had hoped to use it for an emergency start up disk if needed, though I must say the rather incredible StoreEdge Micro SDX card works great for that purpose and seems to belong.
    That old USB 2 hub, even with a smaller one plugged in with 2 portable hard drives still works flawlessly on the other port and never drops out.
    I have not tested the Firewire 800 port long enough to decide, except it gets hot if it reads very long.. The old Firewire 800 / USB 2 hard disk has more than one port on it unlike so many today. I had to use a Firewire 800 to 400 cable for my old computer. Anyway it works in either computer and stays mounted even when asleep.
    Is it possible to use a USB 3 hub with more than one peripheral on a 2012-2013 13 inch MacBook Pro computer with Mavericks? If so which one works? It cannot be good for hard disks to randomly disconnect and reconnect without being dragged to the trash.

    no you can't - you have to upgrade it to 16GB yourself.
    you can get your RAM from newegg.com, macsales.com.
    the RAM you need is 16GB (8GBX2) DDR3 1600MHz DDR3.
    upgrading the RAM yourself will not void your warranty.
    you need a #00 Phillips Screwdriver - 10 screws at the bottom - 7 long ones and 3 short ones - just remember where they go when you put the screws back in.
    a simple 10 minute job.

  • Is it possible to install OS X on an old iMac G3 (350MHZ)?

    Hi,
    I have an old iMac G3 (350 MHz) running with OS 9.0. Since a long moment, I have problems on the net because I can't upgrade Netscape or Explorer anymore. So, it seems that I would run an OS X to be able to install Safari or something like that an surf well. My questions are:
    - Is it possible to install OS X on my old computer?
    - If yes, what do I have to do and how much can it cost?
    - If not, is there any solution to keep my old machine and make it usefull on the net?
    I don't khnow a lot about computers and I don't realy want to spend a lot of money to buy a new computer for now...
    Thanks a lot,
    Chouchouchat
    PS
    I can read English better than I write it, but I am more comfortable with French for technical instructions...

    Just to reinforce what Denison said. Your firmware must be 4.1.9 if it's not you must upgrade the firmware from within OS 9 before you bring any OS X (10.2 and above) installer near your machine:
    http://docs.info.apple.com/article.html?artnum=86117
    I moved away from OS 9 to Panther for exactly the reasons you have. I did it about 3 years ago and I was using iCab at the time.
    Around here, Chicago, someone sold a Panther installer for $20 last week on Craig's. Make sure it's a Black one with silver lettering.
    I have all my kids on iMacs 2 400s and 1 600. They're all running 10.3.2 upgraded to 10.3.9. They play all those kids games Nick and Club Penguin. The older one has the faster machine and uses GarageBand, lays his own tracks and watches YouTube all the time. I also dropped a DVD player in it so he can watch DVDs.
    BTW you can drop a 400 board in your 350 (FireWire) and even up to a 500 easily. A 600 or 700 will require mods to the heat sinks. I've done that on 4 machines.
    Richard

  • Cannot drop old undo tablespace. Cause: active rollback segment

    dear all.
    db: oracle 10.2.0.1
    os: rhel as version 5 64 bits.
    This is a testing database. And my database is online and open. But i can free the external usb disk that contains my ols undotbs.
    I want to drop old undo tablespace but this is not possible.
    1.- In order to open my database i had my datafile( '/mnt/hdext/back_plelds/undotbs02.dbf') offline drop, and then i can to open my database.
    2.- When i try to delete my old undo tablespace im getting this error:
    SQL> drop tablespace undotbs1 including contents and datafiles;
    drop tablespace undotbs1 including contents and datafiles
    ERROR at line 1:
    ORA-01548: active rollback segment '_SYSSMU1$' found, terminate dropping
    tablespace
    3.- My default undo_tablespace is another that i was created before step 1.
    SQL> sho parameter undo_ta
    NAME TYPE VALUE
    undo_tablespace string UNDOTMP
    SQL>
    Well i search in metalink ORA-01548 code error and in 18947.1 doc whows me that the solution is:
    Action: Shut down instances that use the active rollback segments in the
    tablespace and then drop the tablespace.
    4.- I try to shutdown but im getting:
    SQL> shutdown immediate;
    ORA-00376: file 10 cannot be read at this time
    ORA-01110: data file 10: '/mnt/hdext/back_plelds/undotbs02.dbf'
    SQL>
    This /mnt/hdext is an external USB disk and i have all permissions. I exported tables without any problem and i can read all files.
    i search un metalink again ora codes (ORA-00376 ORA-01110) and the doc id: 427801.1 shows in the solution:
    Drop the old undo tablespace instead of making it offline.
    but when i try to drop the tablespace it shows the error describe in the step 2.
    Facts:
    - my tablespace UNDOTBS1 is ONLINE. I put in offline and this is not the solution.
    - This is the status of my rollback segments:
    SQL> select segment_name, status from dba_rollback_segs where
    2 tablespace_name='UNDOTBS1';
    SEGMENT_NAME STATUS
    _SYSSMU1$                      NEEDS RECOVERY
    _SYSSMU2$                      NEEDS RECOVERY
    _SYSSMU3$                      NEEDS RECOVERY
    _SYSSMU4$                      NEEDS RECOVERY
    _SYSSMU5$                      NEEDS RECOVERY
    _SYSSMU6$                      NEEDS RECOVERY
    _SYSSMU7$                      NEEDS RECOVERY
    _SYSSMU8$                      NEEDS RECOVERY
    _SYSSMU9$                      NEEDS RECOVERY
    _SYSSMU10$                     NEEDS RECOVERY
    _SYSSMU11$                     OFFLINE
    SEGMENT_NAME STATUS
    _SYSSMU12$                     OFFLINE
    12 rows selected.
    SQL>
    - I have the note (Unable to drop und tablespace In this article describe the problem but this is not the same. The difference is that i cannot drop the rollback segment that describe in step 2.
    SQL> drop rollback segment "_SYSSMU1$";
    drop rollback segment "_SYSSMU1$"
    ERROR at line 1:
    ORA-30025: DROP segment '_SYSSMU1$' (in undo tablespace) not allowed
    in metalink the doc id: 173696.1 shows the solution:
    Action:     Check the undo segment name and reissue statement if necessary.
    i cannot drop the rollback_segment
    What can i do ???
    thanks a lot.

    in step 4 did you try with shutdown abort?
    If its still does not work then create another new table space with new file and then swtich to that tablespace http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/undo.htm#sthref1504Khurram

  • Erase Vista old partition HDDRecovery after migration to W7

    I bought my PC with Vista including a special partition DATA (E) containing HDDRecovery
    Since I installed Windows 7 and I created a new recovery disk.
    Is it possible to erase old partition E now ?
    Thank you for your answer.

    > Pb, I wish to affect this new free space to an another virtual disk G which is full.
    > The expansion command is not possible for G (but it is for C)
    For this purpose, you should use Paragon Partition Manager, Hard Disk Manager 2010 Suite. Download and install, then, you have to choose ,,Merge Partition,, and follow instruction.
    *Note*, It's strongly recommended to back up the necessary Files/folders on virtual disk G before merging them.

Maybe you are looking for

  • Adding Field Info in Subject Line of Email with Attached PDF

    Had a question regarding the email submit button. I wanted to know if there was a way to put the information put into a specific text field in the email subject line when the PDF is being sent via email as an attached. For Example: Question one on th

  • Shortcuts/Quick dial on Nokia 5800

    I've recently purchased a Nokia 5800 and have set up 4 members of my family as the Quick Dial contact icons on the main screen. However, when I click on a particular contact and then on the Call icon I don't get any choice over which number the phone

  • Migration from Sharepoint to EP

    Hi, I have requirement where I have to do Full migration from Sharepoint Portal to EP.please share some information on the steps involved in migration from Sharepoint to EP. Thanks in advance, Pramod

  • Historical moving average price in material ledger

    Hi SAPGURUS, Every Month when doing the Month-end closing,  system re-calculate the moving average cost   in material ledger . Is there a way to get this information for all plant, all model and download to the EXCEL. Could you please tell if we can

  • No sound in flash or realplayer.

    The realplayer and flash plug-ins for firefox work, they just don't play any sound. I'm running firefox 1.0.4 in KDE. Sound on everything else works. Here's my rc.conf # /etc/rc.conf - Main Configuration for Arch Linux # Localization # HARDWARECLOCK: