Reg apply log archiving after the transfer of data files

Hi all

That I reinstalled the main server of the D-Drive E-reader data files using the command line.
C:\>Move <source_path> <destination_path>
The redo logs for the move operation will apply on the eve of the database?
In addition, what happens if the data files are moved manually in the primary database (i.e. without using the command prompt)?


Thank you
Madhu

See this doc. Keyword search Rename a data file in the primary database

http://docs.Oracle.com/CD/B28359_01/server.111/b28294/manage_ps.htm#i1034172

Also, you need to update primary database controlfile if some moment of the file made...

And also close this thread

Reg apply log archiving after the transfer of data files

As it would help in the forum of maintenance to clean.

Tags: Database

Similar Questions

  • Digital rights after the transfer of music files on the new office.

    I'm sure this has been asked before, so I apologize for the duplication, but I don't even know where to start looking.  I recently bought a new desktop computer with Windows 7.  This platform is an upgrade to my previous Vista PC.  This computer has more than 1000 songs purchased through Amazon, old Yahoo and even more old Music game platforms.  No problem burning CDs from the old pc.  However, after transferring my files to my new pc, none of the songs I downloaded play, instead, I get a message do not have DRM.  What I have to go back to my old pc and burn each song on a cd, or y at - it an easier way to put them on my new desktop PC?  Thanks in advance.

    Hi Jcmcn5,

    Welcome to Microsoft Windows 7 answers Forum!

    To resolve this issue, reset the DRM Bank on the computer. To do this, follow these steps:

    1. If Windows Media Player 12 is running, quit Windows Media Player 12.

    2. Locate the DRM folder on the hard disk, and then rename the folder to DRMbackup DRM.

    Note By default, this folder is located in the following location in Windows 7:

    \ProgramData\Microsoft\Windows\DRM

    3. visit the Microsoft Web site at the following address:

    http://drmlicense.one.Microsoft.com/Indivsite/en/indivit.asp

    4. follow the instructions on the website to update the safety component of Windows Media Player 12. This procedure allows you to obtain new licenses for media content. You can also reset licenses for purchased content so that you can play that content on a computer.

    Note On a Windows 7 computer, you must run Internet Explorer as an administrator before update you the safety component of Windows Media Player 12. To do this, follow these steps:

    a. click Startand then click all programs.

    b. right click on Internet Explorerand then click run as administrator.

    If you are prompted for an administrator password or for confirmation, type your password, or click continue.

    Note You must contact any third-party stores where you purchased music to reset the licenses for that music. If you copied CDs for protected Windows Media Audio files, the CD must be copied again.

    Check out the link for more information below.

    http://www.Microsoft.com/windows/windowsmedia/forpros/DRM/FAQ.aspx

    http://www.Microsoft.com/windows/windowsmedia/player/FAQ/DRM.mspx

    Thank you, and in what concerns:

    Suresh Kumar-Microsoft Support.

    Visit our Microsoft answers feedback Forumand let us know what you think.

  • strange problem in shape after the transfer of data from sql server2000

    I successfully transferred data from sql server 2000 to oracle 10 g 2 for my forms application development...

    Now I have when I create a sample form using this data block and run I get an error something like

    1. cannot run the query... don't know why... :(

    2. when I query my table in select * from tblmaterial all values are displayed

    but

    When I run select tblmaterial matid

    He throws me an error like invalid identifier... when the column is actually present in the table...

    its really make me go nuts

    Hello
    You may be similar to this problem...

    SQL> CREATE TABLE "AMD"
      2  ("TID" NUMBER,
      3   "Tname" VARCHAR2(10),
      4   "TLOC" VARCHAR2(10));
    
    SQL> INSERT INTO "AMD"
      2  VALUES (1,'TEST','L1');
    
    SQL> SELECT * FROM "AMD";
    
           TID Tname      TLOC
    ---------- ---------- ----------
             1 TEST       L1
    
    SQL> SELECT Tname
      2  FROM "AMD";
    SELECT Tname
           *
    ERROR at line 1:
    ORA-00904: "TNAME": invalid identifier
    
    SQL> SELECT "Tname"
      2  FROM "AMD";
    
    Tname
    ----------
    TEST
    
    SQL> 
    

    If so, while creating the table remove the double quotes in column names and the name of the table.

    -Clément

  • Logs archiving for the RAC ASM basics

    Hello

    I have a question about logs archiving on the ASM database located on a RAC. I created a database orcl who has orcl1 instance on node1 and orcl2 on Node2. For the backup of this database, I enabled for the database to archivelog.

    After a few transactions and backups, I noticed that there are two sets of archiving logs created on each node in the folder $ORACLE_HOME/dbs. In node 1, it starts with arch1_ * and node2 is arch2_ *.

    IWhy is it creates logs archiving on local disks, in which she should ideally create disks asm which is shared between the nodes. My backup application fails with journal archive not found error, because it searches newspaper archives in the other node.

    All entries on this will be useful.

    Amith

    Hello

    I have a question about logs archiving on the ASM database located on a RAC. I created a database orcl who has orcl1 instance on node1 and orcl2 on Node2. For the backup of this database, I enabled for the database to archivelog.

    After a few transactions and backups, I noticed that there are two sets of archiving logs created on each node in the folder $ORACLE_HOME/dbs. In node 1, it starts with arch1_ * and node2 is arch2_ *.

    I believe that it is missing from your configuration database and Oracle uses the default location. (i.e. your "$ORACLE_HOME/dbs")

    ARCHIVELOG must focus on a shared domain.

    You need the parameter config below:

    SQL> show parameter db_recovery_file
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    db_recovery_file_dest                string
    db_recovery_file_dest_size           big integer 
    

    Or location of default config:

    SQL> show parameter log_archive_dest
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    log_archive_dest                     string
    

    IWhy is it creates logs archiving on local disks, in which she should ideally create disks asm which is shared between the nodes. My backup application fails with journal archive not found error, because it searches newspaper archives in the other node.

    To resolve this problem see this example:

    SQL> show parameter recover
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    db_recovery_file_dest                string
    db_recovery_file_dest_size           big integer 1
    
    SQL> archive log list;
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /u01/app/oracle/product/10.2.0/db_1/dbs/
    Oldest online log sequence     2
    Next log sequence to archive   3
    Current log sequence           3
    SQL>
    
    SQL> alter system set db_recovery_file_dest_size=20G scope=both sid='*';
    
    System altered.
    
    SQL> alter system set db_recovery_file_dest='+FRA' scope=both sid='*';
    
    System altered.
    
    SQL> archive log list;
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     5
    Next log sequence to archive   6
    Current log sequence           6
    SQL>
    

    With RMAN

    RMAN> CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT 'sys/oracle@db10g1';
    
    new RMAN configuration parameters:
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT '*';
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    
    RMAN>  CONFIGURE CHANNEL 2  DEVICE TYPE DISK CONNECT  'sys/oracle@db10g2';
    
    new RMAN configuration parameters:
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK CONNECT '*';
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    
    RMAN> list archivelog all;
    
    using target database control file instead of recovery catalog
    
    List of Archived Log Copies
    Key     Thrd Seq     S Low Time  Name
    ------- ---- ------- - --------- ----
    1       1    3       A 28-FEB-11 /u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_744216789.dbf
    2       2    2       A 27-FEB-11 /u01/app/oracle/product/10.2.0/db_1/dbs/arch2_2_744216789.dbf
    
    RMAN> crosscheck archivelog all;
    
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=127 instance=db10g1 devtype=DISK
    allocated channel: ORA_DISK_2
    channel ORA_DISK_2: sid=135 instance=db10g2 devtype=DISK
    validation succeeded for archived log
    archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_744216789.dbf recid=1 stamp=744292116
    Crosschecked 1 objects
    
    validation succeeded for archived log
    archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch2_2_744216789.dbf recid=2 stamp=743939327
    Crosschecked 1 objects
    
    RMAN> backup archivelog all delete input;
    
    Starting backup at 28-FEB-11
    current log archived
    using channel ORA_DISK_1
    using channel ORA_DISK_2
    channel ORA_DISK_1: starting archive log backupset
    channel ORA_DISK_1: specifying archive log(s) in backup set
    input archive log thread=1 sequence=3 recid=1 stamp=744292116
    channel ORA_DISK_1: starting piece 1 at 28-FEB-11
    channel ORA_DISK_2: starting archive log backupset
    channel ORA_DISK_2: specifying archive log(s) in backup set
    input archive log thread=2 sequence=2 recid=2 stamp=743939327
    channel ORA_DISK_2: starting piece 1 at 24-FEB-11
    channel ORA_DISK_1: finished piece 1 at 28-FEB-11
    piece handle=+FRA/db10g/backupset/2011_02_28/annnf0_tag20110228t120354_0.265.744293037 tag=TAG20110228T120354 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
    channel ORA_DISK_1: deleting archive log(s)
    archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_744216789.dbf recid=1 stamp=744292116
    channel ORA_DISK_2: finished piece 1 at 24-FEB-11
    piece handle=+FRA/db10g/backupset/2011_02_24/annnf0_tag20110228t120354_0.266.743940249 tag=TAG20110228T120354 comment=NONE
    channel ORA_DISK_2: backup set complete, elapsed time: 00:00:03
    channel ORA_DISK_2: deleting archive log(s)
    archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch2_2_744216789.dbf recid=2 stamp=743939327
    channel ORA_DISK_1: starting archive log backupset
    channel ORA_DISK_1: specifying archive log(s) in backup set
    input archive log thread=1 sequence=4 recid=4 stamp=744293023
    input archive log thread=2 sequence=3 recid=3 stamp=743940232
    channel ORA_DISK_1: starting piece 1 at 28-FEB-11
    channel ORA_DISK_1: finished piece 1 at 28-FEB-11
    piece handle=+FRA/db10g/backupset/2011_02_28/annnf0_tag20110228t120354_0.267.744293039 tag=TAG20110228T120354 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
    channel ORA_DISK_1: deleting archive log(s)
    archive log filename=+FRA/db10g/archivelog/2011_02_28/thread_1_seq_4.264.744293023 recid=4 stamp=744293023
    archive log filename=+FRA/db10g/archivelog/2011_02_24/thread_2_seq_3.263.743940231 recid=3 stamp=743940232
    Finished backup at 28-FEB-11
    
    Starting Control File and SPFILE Autobackup at 28-FEB-11
    piece handle=+FRA/db10g/autobackup/2011_02_28/s_744293039.263.744293039 comment=NONE
    Finished Control File and SPFILE Autobackup at 28-FEB-11
    
    SQL> alter system archive log current;
    
    System altered.
    
    RMAN> list archivelog all;
    
    using target database control file instead of recovery catalog
    
    List of Archived Log Copies
    Key     Thrd Seq     S Low Time  Name
    ------- ---- ------- - --------- ----
    5       1    5       A 28-FEB-11 +FRA/db10g/archivelog/2011_02_28/thread_1_seq_5.264.744293089
    6       2    4       A 24-FEB-11 +FRA/db10g/archivelog/2011_02_24/thread_2_seq_4.268.743940307
    
    RMAN> CONFIGURE CHANNEL 1 DEVICE TYPE DISK CLEAR;
    
    old RMAN configuration parameters:
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT '*';
    old RMAN configuration parameters are successfully deleted
    
    RMAN> CONFIGURE CHANNEL 2 DEVICE TYPE DISK CLEAR;
    
    old RMAN configuration parameters:
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK CONNECT '*';
    old RMAN configuration parameters are successfully deleted
    
    RMAN> exit
    
    Recovery Manager complete.
    

    Kind regards
    Levi Pereira

    Published by: Levi Pereira on February 28, 2011 12:16

  • Serial number does not work after the transfer of OSX and apps for the new Macbook Pro

    My serial number does not work after the transfer of applications and OS X for my new Mac.  Although the Adobe specifications say it is compatible with the older OS X, it does not seem to have no compatibility issues because

    -My old Macbook Pro has Yosemite and was fully running CS5 Web premium without a problem.

    -My new computer has the same * exact * OS X transferred in which the suite was fully functional with the trial.

    A support of top-level, software engineer, or someone who takes care of the soap operas could

    -Please provide a number of test series to test with?

    - And/or activate my series?

    - Or show how to disable the publication series on the old disk hard if I can't use the old computer?  So that I can use with the new computer?

    I chatted with technical support that keeps saying that it's a compatibility problem, to install with old OS X or buy a newer version. But I know that CS5 works with Yosemite (as I use it myself), and the only question I had is that serial # says invalid, which is separate from the functionality of the program.

    I'd rather not spend hundreds more to get a new suite, when I spent a lot for CS5 already and know is fully functional on Yosemite.  I have also not return to an older operating system and break things.

    Moreover, I used to be a general technical Support and I am a coder of web applications, so I understand that this isn't just some sort of "reboot" of the question

    No info to solve this, or a means to achieve at the highest level Tech support, would be greatly appreciated!

    Thank you!

    Transferred apps will certainly question of activation, because licenses files creation is completely dependent on machine, it willl created according to the particular Machine ID, if you transfer the application from one computer to another, there is incompatibility.

    Therefore, it is very necessary that you are using the original installation media.

    Download the CS5 products

    If you do not agree with the process of removing and reinstalling, try wiping the contents of SLCache and rename the SLStore folder.


    WARNING: Do not forget once erase you the contents of this folder, all Adobe applications will ask the new license or re-enter the serial number.

    Location: /Library/Application Support / Adobe.

    It is strictly recommended to install Adobe applications using the original installation media.

  • I have a G4 and the transfer of data to an I mac?

    I have a G4 and the transfer of data to an I mac? There is no port Firewire on the Imac A1418

    Use a FireWire 800 adapter Thunderbolt and if necessary, an adapter FireWire 400 and 800. If you wish, you can use a network or external drive instead.

    (142220)

  • Phone call during the transfer of data

    Hi, the app I'm developing sends and receives large pieces of data from a server. During data transfer, if I phone the device running the application from the phone call fails to connect. It is only when the application has completed the transfer of data that a phone call can be connected.

    Is there a way to get the phone call to connect?

    The application was developed as a moped based on portability and is executed on a v4.2.1.94 platform 2.3.0.77 Pearl

    The transfer of data should be interrupted by the wireless network to allow the call to come.  Which network see you this on?  I commend this report to the carrier.

  • The boot configuration data file is missing some required information, error code: 0xc000000d

    Original title: question of recovery of Windows 8
    I have a Toshiba laptop with windows 8.  and this morning when I tried to turn it on, it's the message that is displayed:
     
    "RECOVERY".
    your PC needs to be repaired
    The boot configuration data file is missing some required information
     
    File \BCD
    Error code: 0xc000000d

    you will need to use the tools of recovery on your installation media. "If you, etc.".
     
    There is no USB or CV came with the laptop.  It is automatically installed when I first turned on.
     
    I was looking at a trip to this topic last night and everything was perfect, now, this morning, I get this message.
     
    I restarted the computer a few things, but this message is still there.
     
    My question is how can I get my laptop to work again, because I can't go in the computer to change the settings or options.
     
    Help, please
     
    Thank you
    Winnie

    Hello

    We are here to help.

    You can perform the troubleshooting steps below:

    Option 1: Windows startup parameters in the Windows recovery environment .

    • Windows recovery environment, enter in safe mode. After you have successfully loaded in safe mode, perform the clean boot.

    Option 2: restore your PC to an earlier point in time .

    1. Enter in the right edge of the screen and then click on Search.
    2. Enter the Control Panel in the search box, and then tap or click Control Panel.
    3. Enter the collection in the control panel search box, and then tap or click recovery.
    4. Press or click open system restore, and then follow the instructions.

    Let us know how it goes.

  • The boot configuration data file is missing some information required. File:\BCD error code: 0xc0000034.

    I just bought my ASUS laptop (with no dvd player) 3 days ago. Today I turned on for the first time and was usually up to 1 hour later this bluescreen poped out: RECOVERY, your PC needs to be repaired. The boot configuration data file is missing some information required. File:\BCD error code: 0xc0000034. You will need to use the tools for restore on your installation media. If you don't have any media of the instalation (such as a disc or USB device), contact your system administrator or the PC manufacturer... As I said before that my laptop came with Windows 8, and it is not a dvd player.

    Thank you.

    Remove the power supply and remove the battery

    Press and hold the power button for 60 seconds

    Apply the AC voltage ONLY (DO NOT INSTALL THE BATTERY)

    Click on the power button and more quickly, press F9

    Follow the instructions to reset the computer to factory default

  • Windows 8 will not mistake The Boot Configuration Data file is missing some required information.

    Yesterday, I downloaded Windows 8, and although using it was confusing I got the hang of it. Today, I used the computer again and everything was fine but then I stopped him and a few hours later, when I turned it on a blue screen appeared and he says:

    Recovery
    Your PC needs to be repaired
    The Boot Configuration data file is missing some information required.
    Leader: \Boot\0xc000000d
    OT: After victory. Download 8 it won't launch
    I have no idea what is happening or how to fix it. Any help to help me understand and solve this problem would be appreciated.

    Met the same question from one day to the other - re install Win 8< week="" old="" decided="" to="" misbehave="" on="" a="" reboot.="" nothing="" untoward="">

    In any case discovered that the automatic startup repair is less useless for me. He could not fix anything whatsoever after the diagnosis and just gave up.

    However, resort to repair (start your windows installation CD) command line prompt, I managed to solve it with the command of the ffg on the command line.

    Bootrec /rebuildbcd

    More info about bootrec available using your favorite search engine.

    for example, this site was useful for me

    http://superuser.com/questions/451277/missing-boot-files-in-Windows-8

    For users in previous posts with problems and have only a version downloaded to Win 8 - well I'd say that you yourself create a DVD of the version uploaded to win 8 - the installation program ask you if you want to create media - that will create a 4.x GB. ISO file that you can burn to DVD. There is enough information on how to do this just search online.

    With regard to creating a way to initiate Win8 installer from USB Eh well I heard the ffg tool works with Win 8 too but cannot vouch for her since have never tried so its at your own risk.

    http://www.microsoftstore.com/store/msstore/HTML/pbPage.Help_Win7_usbdvd_dwnTool?ClickID=ckqs4fqifskwfnxlpiwkzwxqwwwzlvvlezzk

    Good luck, have fun,

    See you soon

  • Unable to start Win8. Error: "0xc0000098. "The boot configuration data file contains no valid information for an operating system".

    Original title: Windows 8 will not start

    I have a pre installed Windows 8 pro and have therefore no disks in the system. It does not start, but I get a message from the "Windows Boot Manager" with the message "Windows couldn't boot...". «, etc, etc and told to contact the ' system administrator or computer manufacturer...» "then the information:
    File: \BCD
    Status: 0xc0000098
    Info: the boot configuration data file contains no valid information for an operating system.

    How can I get it back? Can I get a system disk or can I do?

    Hi David,

    Thank you for getting back to us with additional information.

    If you have another computer with Windows 7 or Vista installed, you can create Windows 8 DVD installation of this system. But you need to get the product key Windows 8 of the manufacturer of the computer. Please refer to this link and create a DVD of Windows 8.

    http://Windows.Microsoft.com/en-us/Windows-8/create-reset-refresh-media

    Hope this information is useful.

  • The Boot Configuration data file contains no valid information for an operating system

    I have a Toshiba Satellite C55 B5200 running Windows 8.1 pre-installed. How ever when I boot, I get the Boot Configuration Data file does not contain valid information for an operating system to file: \BCD error Code: 0xc0000098

    If I do a usb on a friends computer system recovery, it will affect the recovery of my computer? I don't have product key windows 8 as it was preinstalled. If I go down to the store, buy Windows 8.1 will be this also fixes my problem? Any help is appreciated

    Hello

    Please refer to this and see if it helps:

    http://www.thewindowsclub.com/0xc0000098-error-Windows-8-help

    Hope this helps, good luck :)

  • How to apply logs archiving missing on Eve db

    Hello

    I had to stop physical standby db 4 hours to move to another location.

    After the reboot it seems there are 4 missing archive logs and I think that because of them other newspapers of archiving is not applied.

    SYS@standbydb AS SYSDBA > select * from V$ ARCHIVE_GAP;   -on the elementary level, there is no selected line.

    THREAD # LOW_SEQUENCE # HIGH_SEQUENCE #.

    ---------- ------------- --------------

    1 36226 36230

    Standby: SELECT THREAD #, SEQUENCE #, APPLIED from V$ ARCHIVED_LOG if application = "NO";

    1 36231 NO.

    - - -

    1 36247 NO.

    36226 is the last with the LETTER: YES

    I have as a result of errors in the GRID CONTROL DATA GUARD STATE option

    ORA-16783: could not resolve the deficit for the database standby_db

    ORA-16629: database shows a different level of protection the protection mode

    Please help resolve this gap of archive...

    Thank you very much

    Best regards

    Thank you very much for your contributions.

    I solved the gap newspaper archive. restore sequence archivelog 36227, I have given that his backup was introduced. stopped and started new standby database and then gap resolved automatically.

    Best regards

  • How long should we keep logs archived in the comic book?

    11.2.0.4 DB Oracle Linux 6.5

    We have a database whose archive generation is as follows.

    Average of generation of archive log: 400 GB/day

    Max log generation: 900 GB/day

    Archive log diskgroup size: 4 TB

    Backup strategy: we take full backups on Monday and Wednesday and Level1 for the rest of the days.

    -----------------

    Sunday-> level 0 backup

    Monday-> level 1 backup

    Tuesday-> level 1 backup

    Wednesday-> level 0 backup

    Thursday-> level 1 backup

    Friday-> level 1 backup

    Saturday-> level 1 backup

    Both Level0 and Level1 scripts have MORE ARCHIVELOG; (without a clause to DELETE all THE ENTRIES )

    We have archiveLog backup script that runs at 10:00 and 16:00 which does not REMOVE all ENTRIES either.

    We serve the archivelogs of Level0 and Level1 backup scripts, with the following command

    delete noprompt archivelog until 'SYSDATE -2";

    Question1. What is the industry standard to keep (retention period), archiving within DB logs? Is there a 'formula' / rule for this? When a restore, recovery lose us not a lot of time restore backup media archivelogs. That's why we stay 2 days now archivelog within the DB.

    Question2. We have 4 TB of space to store the archivelogs in this particular PB. With 900 GB Max generation arch daily newspapers, we can keep safe the last 3 days of the archivelogs. Right? I mean, is there a possibility of hitting the terrible archiver error if we increase the shelf life of the archive logs using the delete noprompt archivelog until 'SYSDATE -3';

    N ° DELETE OBSOLETE removes old newspapers also all the log_archive_dest.


    I could be wrong, but this is the first I hear of this and on a quick scan, I found no support in that either rman reference or guide the user to rman.  Could cite your source?

    DELETE OBSOLETE is not the same thing as REMOVE EXPIRES.

    -EDIT

    Never mind.  I found it.

    DELETE

    OBSOLETE Removes backups of data files and copies stored in the repository RMAN which are obsolete, in other words, is no longer required (see example 2-66). RMAN also deletes the log of the obsolete filesand archived redo log backups.

    RMAN determines what backups and copies of data files are no longer needed, which in turn determines what records (and backups of logs) are no longer needed. RMAN considers that the creation of a data file as a backup to decide which connects to keep.

    Post edited by: EdStevens

    Historically, I saved my archivelogs with the option to DELETE the ENTRIES, I never had reason to notice or question this behavior... a rman DELETE OBSOLETE reach out to the archivelogs themselves.   Thinking maybe it was related to the maintenance of the FRA, I just tried a little test in two ways... archivlogs wrote to FRA and archivelogs writes destined for non - FRA.  Of course, anyway DELETE OBSOLETE also deleted real archivelogs.  I don't know that I'll change my procedures as well, but it is good to know.

    I learned something new today.  Can I go home now?

  • After the transfer of the library to new Mac, all the songs are duplicated

    I got a new iMac and launched iTunes and signed on my Apple account, where all my music presented themselves as available in iCloud.

    I then transferred the iTunes library to the iMac for my old Mac laptop.  Now each song appears twice, once with the cloud, indicating that it is not on my computer but in the cloud and the cloud is dashed outline, indicating that the path on my computer is awaiting transfer to the cloud.

    I don't know if it's just another bug of iTunes/iCloud or if I messed up the transfer.

    Any suggestions?  Thank you!

    Argelius wrote:

    I then transferred the iTunes library to the iMac for my old Mac laptop.

    How and what exactly did transfer you from the old to the new computer?

Maybe you are looking for

  • Impossible to activate the dark mode in Firefox 39.0 with subject: config.

    After you have installed the 39.0 beta of Firefox, I was impossible to activate the dark by topic mode: config. That's what I changed:Browser.devedition.Theme.Enabled: truedevtools. Theme: blacklightweightThemes.selectedThemeID: firefox-devedition@mo

  • Laptop HP 15-r016ne: error in some devieses

    Please I have a new HP 15-r016ne laptop and find some problems when I get started with windows 7 I found a lot of error is devcies nursery as Funktion Bluetoth controller / network controller / /SM Bus controller and usb controller PCI device I tried

  • LabWindows 4.0 is compatible with the 64-bit operating system?

    I have a very old code CVI for PCI 6030th, who works on a 32-bit windows xp computer. The PCI card has been installed recently on a new computer that has a 64-bit windows 7 on it. The code does not work on the new pc. I was told that 6030th PCI can b

  • OfficeJet pro 8500 a: Officejet pro 8500 has when you print several pages of ink run-

    When I print several pages or thick paper stock, printing fades as he goes. I have a Mac with OS X10.9 Mavericks. I changed the print heads and use original ink. He is a recent problem. Another annoing is the error that I get when I use the power swi

  • Build exe error involvving internal.llb

    Hi all I have built many exe, but for some reason, this one is hard!  I get an error that says: Error 1003 has occurred at \\Rochester\mtp\Test Rigs\NC4\NC4 Air Cap\Code Development\Air CAP v2.0\exe\internal.llb\Air v2.1.vi Rig inspection Cap I spent