About the Restrictions of Dropping Online Redo

Student Guide,7-13, If the database is running in ARCHIVELOG mode and the log file group to which the
member belongs is not archived, then the member cannot be dropped.
but:
SQL> archive log list
Database log mode Archive Mode
Automatic archival Disabled
Archive destination E:\oracle\admin\archive_log
Oldest online log sequence 1043
Next log sequence to archive 1045
Current log sequence 1047
SQL> select * from v$log;
GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIME
1 1 1044 1048576 1 YES INACTIVE
1762339 2005-06-01 13:44:19
2 1 1043 1048576 1 YES INACTIVE
1762335 2005-06-01 13:44:12
3 1 1045 1048576 2 NO INACTIVE (*****i want to delete group 3 member*****)
1762344 2005-06-01 13:44:33
4 1 1046 1048576 1 NO INACTIVE
1762455 2005-06-01 13:46:11
5 1 1047 1048576 1 NO CURRENT
1762460 2005-06-01 13:46:23
SQL> alter database drop logfile member
2 .
SQL> select * from v$logfile;
GROUP# STATUS TYPE
MEMBER
1 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO01.LOG
2 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO02.LOG
3 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03.LOG
4 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO04.LOG
5 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO05.LOG
3 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03B.LOG (*****i want to delete group 3 member*****)
6 rows selected.
SQL> alter database drop logfile member 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03B.
LOG'
2 /
Database altered.
SQL>
it is done successfully, why?

yes ,i drop group 3(ARCHIVED=NO STATUS=INACTIVE) ,it report ORA error ;
and if drop member ("ARCHIVED=NO STATUS=CURRENT") , it report ORA error also.
show:
SQL> select * from v$log;
GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRS
T_CHANGE# FIRST_TIME
1 1 1049 1048576 1 NO INACTIVE
1762943 2005-06-01 14:10:40
2 1 1048 1048576 1 YES INACTIVE
1762941 2005-06-01 14:10:39
3 1 1050 1048576 1 NO INACTIVE
1766105 2005-06-01 16:39:51
4 1 1051 1048576 1 NO INACTIVE
1766107 2005-06-01 16:39:52
5 1 1052 1048576 1 NO CURRENT
1766110 2005-06-01 16:39:52
Elapsed: 00:00:00.00
SQL> alter database drop logfile group 3;
alter database drop logfile group 3
ERROR at line 1:
ORA-00350: log 3 of thread 1 needs to be archived
ORA-00312: online log 3 thread 1: 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03.LOG'
Elapsed: 00:00:00.00
SQL> alter database add logfile member 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03b.L
OG' to group 3;
Database altered.
Elapsed: 00:00:02.03
SQL> start reboot
Database closed.
Database dismounted.
ORACLE instance shut down.
ORACLE instance started.
Total System Global Area 34675092 bytes
Fixed Size 453012 bytes
Variable Size 25165824 bytes
Database Buffers 8388608 bytes
Redo Buffers 667648 bytes
Database mounted.
Database opened.
SQL> select * from v$log;
GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRS
T_CHANGE# FIRST_TIME
1 1 1049 1048576 1 NO INACTIVE
1762943 2005-06-01 14:10:40
2 1 1048 1048576 1 YES INACTIVE
1762941 2005-06-01 14:10:39
3 1 1050 1048576 2 NO INACTIVE
1766105 2005-06-01 16:39:51
4 1 1051 1048576 1 NO INACTIVE
1766107 2005-06-01 16:39:52
5 1 1052 1048576 1 NO CURRENT
1766110 2005-06-01 16:39:52
Elapsed: 00:00:00.00
SQL> archive log start
Statement processed.
SQL> select * from v$log;
GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRS
T_CHANGE# FIRST_TIME
1 1 1049 1048576 1 YES INACTIVE
1762943 2005-06-01 14:10:40
2 1 1048 1048576 1 YES INACTIVE
1762941 2005-06-01 14:10:39
3 1 1050 1048576 2 YES INACTIVE
1766105 2005-06-01 16:39:51
4 1 1051 1048576 1 YES INACTIVE
1766107 2005-06-01 16:39:52
5 1 1052 1048576 1 NO CURRENT
1766110 2005-06-01 16:39:52
Elapsed: 00:00:00.00
SQL> alter system switch logfile;
System altered.
Elapsed: 00:00:00.02
SQL> alter system switch logfile;
System altered.
Elapsed: 00:00:00.03
SQL> alter system switch logfile;
System altered.
Elapsed: 00:00:00.03
SQL> select * from v$log;
GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRS
T_CHANGE# FIRST_TIME
1 1 1054 1048576 1 YES INACTIVE
1766281 2005-06-01 16:44:22
2 1 1053 1048576 1 YES INACTIVE
1766279 2005-06-01 16:44:19
3 1 1055 1048576 2 NO CURRENT
1766288 2005-06-01 16:44:37
4 1 1051 1048576 1 YES INACTIVE
1766107 2005-06-01 16:39:52
5 1 1052 1048576 1 YES INACTIVE
1766110 2005-06-01 16:39:52
Elapsed: 00:00:00.00
SQL> select * from v$logfile;
GROUP# STATUS TYPE
MEMBER
1 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO01.LOG
2 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO02.LOG
3 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03.LOG
4 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO04.LOG
5 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO05.LOG
3 ONLINE
E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03B.LOG
6 rows selected.
Elapsed: 00:00:00.03
SQL> alter database drop logfile member 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03b.
LOG'
2 /
alter database drop logfile member 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03b.LOG'
ERROR at line 1:
ORA-01609: log 3 is the current log for thread 1 - cannot drop members
ORA-00312: online log 3 thread 1: 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03.LOG'
ORA-00312: online log 3 thread 1: 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03B.LOG'
Elapsed: 00:00:00.00
SQL> alter system switch logfile;
System altered.
Elapsed: 00:00:00.03
SQL> alter database drop logfile member 'E:\ORACLE\ADMIN\WOSON\DATAFILE\REDO03b.
LOG'
2 /
Database altered.
Elapsed: 00:00:02.00
SQL>

Similar Messages

  • Dropping online redo!!!

    Dear all,
    your Views Pls...
    i've redo groups with two members each....
    if i delete one groups....will its Members will be deleted automatically.?..( i' using Oracle managed files structure..)
    one thing more ...after that i've to manually delete .rdo files from O/S..?
    ALTER DATABASE DROP LOGFILE GROUP 3;
    Thanx in Advance!!!

    hi,
    thanx for you suggestions..
    but alok....my senior has told me to do this..
    as i'm not going to do it directly....b'coz i know our prdn. DB...
    first i'll try to do this on my test DB...
    but...then what should i do now..i've to do it anyway?
    Thanx!!!

  • About the restriction code

    I only see this in the file.
    <key>SBParentalControlsBlockTimeIntervalSinceReferenceDate</key>
        <real>360497788.84608001</real>
        <key>SBParentalControlsBlocked</key>
        <false/>
        <key>SBParentalControlsEnabled</key>
        <true/>
        <key>SBParentalControlsFailedAttempts</key>
        <integer>8</integer>
        <key>SBParentalControlsMCContentRestrictions</key>
        <dict>
            <key>countryCode</key>
            <string>us</string>
        </dict>
    How to solve this ??

    Vijaya, Family plan is a bunch of phone lines on one account, doesn't matter what last names the individual phone user have. you can have anybodies phone listed in your family plan unless they are in the same network.i think family plan for 2 lines is 79.99 which i have with my wife.

  • Online redo logs on a physical standby?

    A question on REDO logs on physical standby databases. (10.2.0.4 db on Windows 32bit)
    My PRIMARY has 3 ONLINE REDO groups, 2 members each, in ..ORADATA\LOCP10G
    My PHYSICAL STANDBY has 4 STANDBY REDO groups, 2 members each, in ..ORADATA\SBY10G
    I have shipping occurring from the primary in LGWR, ASYNC mode - max availablility
    However I notice the STANDBY also has ONLINE REDO logs, same as the PRIMARY, in the ..ORADATA\SBY10G folder
    According to the 10g Dataguard docs, section 2.5.1:
    "Physical standby databases do not use an online redo log, because physical standby databases are not opened for read/write I/O."
    I have tried to drop these on the STANDBY when not in apply mode, but I get the following:
    SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
    Database altered.
    SQL> ALTER DATABASE DROP LOGFILE GROUP 3;
    ALTER DATABASE DROP LOGFILE GROUP 3
    ERROR at line 1:
    ORA-01275: Operation DROP LOGFILE is not allowed if standby file management is
    automatic.
    I also deleted them while the STANDBY instance was idle, but it recreated them when moved to MOUNT mode.
    So my question is why is my PHYSICAL recreating and using these, if the docs say the shouldn't?
    I saw the same error mentioned here: prob. with DataGuard
    Is this a case of the STANDBY needing at least a notion of where the REDO logs will need to be should a failover occur, and if the files are already there, the standby database CONTROLFILE will hold onto them, as they are not doing any harm anyway?
    Or, is this a prooduct of having management=AUTOMATIC - i.e. the database will create these 'automatically'
    Ta
    bt

    According to the 10g Dataguard docs, section 2.5.1:
    "Physical standby databases do not use an online redo log, because physical standby databases are not opened for read/write I/O."yes, those are used when database is open.
    You should not perform any changes in Standby. Even if those exist online redo log files, whats the difficulty you have seen?
    These will be used whenever you performed switchover/failover. So nothing to worry on this.
    Is this a case of the STANDBY needing at least a notion of where the REDO logs will need to be should a failover occur, and if the files are already there, the standby database CONTROLFILE will hold onto them, as they are not doing any harm anyway?Then oracle functionality itself harm if you think in that way. When they not used in open then what the harm with that?
    Standby_File_management --> for example if you add any datafile, those information will be in archives/redos once they applied on standby those will be added automatically when it is set to AUTO if its manual, then it creates a unnamed file in $ORACLE_HOME/dbs location later you have to rename that file and recovery need to perform .
    check this http://docs.oracle.com/cd/B14117_01/server.101/b10755/initparams206.htm
    HTH.

  • Whole database online + redo log backup

    Hello all,
    we are running SAP on a Oracle Database and doing a daily backup.
    In the DBA Planing Calendar, we do have the action
    Whole database online + redo log backup
    What exactly does that mean?
    Thanks,
    Anne

    This backup will save the CONTENT of the database only, not the database software itself.
    To get a full consistent backup you need to backup more things if you want to have everything - depending on the operating system:
    On Unix you will need to backup the software directory (/oracle*, oraInventory, oratab (depending on the location)) etc.
    On Windows you will need to backup <letter>:\oracle, the registry keys and more things.
    However, in case of a recovery you can also install the software after an OS installation and then restore it from tape.
    Markus

  • Accidently Deleted Online Redo Log Files

    Dear friends
    Just to give a try, I deleted online redo log files from the disk after clearn shutdown (In Test Environment Not A Production Database), then i started the dabase, I know we need atleast two online redo files for database to work properly. now my point of question is how can i create new online redo files ?
    I have 2 redo logfile groups each with one member. In group 2 i have added new member for the deleted one using add logfile member ....... to group 2. but when i try todo the same to add logfile member to group1 I am not abale to do so. because its saying that this is the current logfile member. then I tried manual log switching to use next logfile member but database is not allowing as the database is just mounted not opened. plsease if any body helps me out to sort out this problem it will be a great help.
    Anandkumar S.M
    Oracle DBA
    rC6Exv3

    hello ur instruction u have is some what bit rite. but i was not able to solve the problem
    finally i solved the problem with these commands after database is mounted
    recover database until cancel Enter
    then I select the cancel option when it provide the user with the options
    after cancelling the recover i issued the following command
    alter database open resetlogs;
    this method sorted out my problem
    anyway very very thanks for ur root hints from where i got the Idea to recover online redo logfiles
    Thank u very much

  • What is the difference between dropping-connection and reset?

    Hi, Im currently studying HTTP MPF (ASA feature) ,
    im just wondering about the difference between dropping-connection and reset (TCP)
    can you please tell me how it drop and how it reset ? ?? specific process of it ( eg, TCP handshake, etc)
    thanks in advance. !

    Reset sends a tcp response with the rst flag set. Drop sends no response.
    Sent from Cisco Technical Support iPad App

  • Moving the online redo log files to different location

    We just installed few more drives into our sandbox system and I want to move the online redo log files for better performance.  We've got the SAPARCH directory moved to a different location. 
    Does anyone know how/where I can change the parameters so redo log files are pointed at different drives?  It's not in the <b>init<SID>.ora</b> file...
    Regards,
    Sumit

    Hi Sumit,
    The following link contains information about moving the redo logs:
    http://www.stanford.edu/dept/itss/docs/oracle/9i/server.920/a96521/onlineredo.htm
    Best regards,
    Alwin

  • What is the difference between undo tablespace and online redo log files.

    what is the difference between undo tablespace and online redo log files. I am confused
    as per my knowledge undo tablespace is used to store the undo information when a table is being updated so that, just incase we need to rollback a transaction we know what was present in the table earlier.
    when a transaction fails the SMON performs the rollback of the data.
    This undo data is stored in the undo tablespace and read consistency if any is enforced.
    is my understanding till here correct?
    Now, can this undo data/before image not be stored in the redo log buffer and online redolog files?
    can redo-log files not store this information?
    in fact, is it that when undo tablespaces exist in a database, the undo data/before image is stored in both the undo tablespace and also the redo log files?
    kindly clarify my doubt.
    thank you.

    This question has been asked many times before. The answer is always the same.
    Yes, redo contains the before image of data (and the after-image). Therefore, it **COULD** be used to roll back a transaction.
    BUT... Redo is written sequentially. Using it to rollback your transaction would involve reading through all the redo written by maybe thousands of other people. It would be painfully slow.
    Your transaction is, however, directly linked to just the UNDO that it generates (which is JUST the before image of the data). So, your undo is your undo and doesn't share space with anyone else's undo. Therefore, using it to roll back YOUR transaction is fast.
    The fact that undo is only the before image of the data also makes it faster than wading through a sea of before and AFTER images as you'd find in redo. About twice as fast, in fact, since there's half the data. Roughly.
    Redo also gets written and flushed to disk whenever there's a commit, 3 seconds are up or too much (1MB, actually) redo gets generated between flushes caused by other factors. Your redo gets flushed when those things happen, even if you haven't actually committed your transaction. And redo logs recycle themselves, meaning that your redo -even if your transaction hasn't been committed yet- can be over-written by later transactions. Try rolling back when that's happened, if redo was the source of your rollback data!
    Undo, however, cannot be over-written if the transaction has not been committed. Ever. If you don't commit for three years, there will be three years' undo stored in your database (assuming you had the space, of course!).
    I could go on, but that will do. Redo is there fore RECOVERY, after catastrophe. Undo is there for read-consistency (and the occasional change of mind). Two different functions. Two different mechanisms. Each one highly tuned to doing what it does, why it does it, most efficiently and effectively.

  • Problem with internet. When i open System preferences, Network, message drops down: 'your network settings have been changed by another application'. I click OK, but it drops a message again and again, preventing me to do anything about the setting.

    Problem with internet. When i open System preferences, Network, message drops down: 'your network settings have been changed by another application'. I click OK, but it dropps the message again and again, preventing me to do anything about the setting.

    A Fix for "Your network preferences have been changed by another application" Error 
    In the Library/Preferences/SystemConfiguration/ folder delete the following:
    com.apple.airport.preferences.plist
    NetworkInterfaces.plist
    preferences.plist
    com.apple.nat.plist
    You will have to re-configure all your network settings since deleting.
    (10.4.10)
    Use Software Update to update your OS to last version of Tiger.  Install all the other updates that goes along w/it.

  • Alert about the loading time & Restrict the number of the rows retrieved

    Hi everybody, maybe the question is stupid, but I didn't find yet an answer...
    I'm using BIP 10.1.3.4.1
    Because I have many reports with a huge amount of data to display (in HTML format) and customers once clicked on "View" have to wait a lot of time, they asked me if there is the possibility to do the following things:
    1. restrict the number of the rows retrieved (this for each report); this request has to be dynamic (different rows' number for each report and for each user); so, I can't modify the query into the data template in order to retrieve a fixed number of rows;
    2. show an alert who says for example " The data loading will take 5 minutes. Do you want to proceed ? YES - NO" This to inform the users how much time they have to wait if they click on Yes.
    I checked under the Administrator TAB...but I didn't find nothing "native" about the two questions above.....
    So, I ask you if there is a way to activate these features (if they exist "native") or a workaround to implement what I described above.
    Any help will be appreciated.
    Thanks in advance
    Alex

    Hi Vetsrini, thanks for your answer.....but what does it mean ? There are no solutions for my requests ? I remember that Discoverer had the possibility to have an alert as I would like to have with BI Publisher and there was the possibility to choose how many rows it was required from the customer....Is it possible that with BIP is not applicable ?
    Have a good day
    Alex

  • The file structure online redo log, archived redo log and standby redo log

    I have read some Oracle documentation for file structure and settings in Data Guard environment. But I still have some doubts. What is the best file structure or settings in Oracle 10.2.0.4 on UNIX for a data guard environment with 4 primary databases and 4 physical standby databases. Based on Oracle documents, there are 3 redo logs. They are: online redo logs, archived redo logs and standby redo logs. The basic settings are:
    1. Online redo logs --- This redo log must be on Primary database and logical standby database. But it is not necessary to be on physical standby database because physical standby is not open. It doesn't generate redo log. However, if don't set up online redo log on physical standby, when primary failover and switch standby as primary. How can standby perform without online redo logs? In my standby databases, online redo logs have been set up.
    2. Archived redo logs --- It is obviously that primary database, logical and physical standby database all need to have this log file being set up. Primary use it to archive log files and ship to standby. Standby use it to receive data from archived log and apply to database.
    3. Standby redo logs --- In the document, it says A standby redo log is similar to an online redo log, except that a standby redo log is used to store redo data received from another database. A standby redo log is required if you want to implement: The maximum protection and maximum availability levels of data protection and Real-time apply as well as Cascaded destinations. So it seems that this standby redo log only should be set up on standby database, not on primary database. Am my understanding correct? Because I review current redo log settings on my environment, I have found that Standby redo log directory and files have been set up on both primary and standby databases. I would like to get more information and education from experts. What is the best setting or structure on primary and standby database?

    FZheng:
    Thanks for your input. It is clear that we need 3 type of redo logs on both databases. You answer my question.
    But I have another one. In oracle ducument, it says If you have configured a standby redo log on one or more standby databases in the configuration, ensure the size of the current standby redo log file on each standby database exactly matches the size of the current online redo log file on the primary database. It says: At log switch time, if there are no available standby redo log files that match the size of the new current online redo log file on the primary database. The primary database will shut down
    My current one data gurard envirnment setting is: On primary DB, online redo log group size is 512M and standby redo log group size is 500M. On the standby DB, online redo log group size is 500M and standby redo log group size is 750M.
    This was setup by someone I don't know. Is this setting OK? or I should change Standby Redo Log on standby DB to 512M to exactly meatch with redo log size on primary?
    Edited by: 853153 on Jun 22, 2011 9:42 AM

  • I didn't receive any news about the replacement program for the Ipod 1st generation. I have already sent the serial number online, but didn't have any progress. What should I do? Thank you

    I didn't receive any news about the replacement program for the Ipod 1st generation. I have already sent the serial number online, but didn't have any progress. What should I do? Thank you

    After you set up your service use your repair ID to track your replacement here:
    https://selfsolve.apple.com/repairstatus/main.do
    Remember: You will receive a replacement unit approximately 6 weeks after Apple gets your current iPod nano
    Hope this helps.
    -Julian

  • Clearing Online redo logs on the target physical standby

    Hi,
    Version 11202.
    Primary on machine A
    Standby on machine B
    Following note: 11.2 Data Guard Physical Standby Switchover Best Practices using SQL*Plus [ID 1304939.1].
    Online redo logs on the target physical standby need to be cleared before that standby database can become a primary database. And later :
    On the target physical standby run the following query to determine if the online redo logs have not been cleared... 1) I did not understand where i should run the query. On machine A or on machine B ?
    2)
             Online redo logs on the target physical standby need to be CLEARED
            What does it mean that it need to be CLEARED ? Does transaction might be lost by running the clearing command?
    Thanks

    I have used my note many times in production.
    For example they needed to do some power work on the main server room a few months back on the weekend.
    We did switchovers until the work was complete and then a switch back.
    I wrote a short document called "Switchover post-mortem lessons" the main point from that was :
    1.
    getting ORA-01017 issues in Oracle forms (  Application ) after the switchover to standby.
    The issue was caused by the Standby database having a different parameter for passwords than the Primary database.
    This did not show up in testing because all the tester we used had converted passwords from Oracle 10.
    Solution
    When in doubt issue this on the new Primary :
    SQL>ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;
    Note: This command can be issued repeatedly with no negative effect on the system.2.
    The query to check switch_over status was returning "LOG SWITCH GAP"
    select switchover_status from v$database;
    This is an issue because Oracle says the return values should be one of these :
    NOT ALLOWED
    SESSIONS ACTIVE
    SWITCHOVER PENDING
    SWITCHOVER LATENT
    TO PRIMARY
    TO STANDBY
    RECOVERY NEEDED
    LOG SWITCH GAP is not one of the expected value. In addition this phase is not search friendly either on the Oracle support site or your favorite search engine.
    Given this I ran this query :
    SELECT 
      NAME AS STANDBY,
      SEQUENCE#,
      APPLIED,
      COMPLETION_TIME
    FROM
      V$ARCHIVED_LOG;
    Solution
    SQL>ALTER SYSTEM SWITCH LOGFILE;
    And wait a few minutesMy switchover document had no issue.
    Best Regards
    mseberg

  • Why the time of the online redo logs doesn't change?

    Oracle 11.1.0.7 on windows 2008.I find the time of the online redo logs doesn't change since Jan 18 when I had restarted database,and the time of some datafiles doesn't change either.the database is always online and changes are wrriting to the files, I don't know how this happened?
    would anyone help me? thank you.

    ROCK wrote:
    I found some datafiles have the latest date,but the other not. They all have write/read operations on them.
    and the switching of the redo logs doesn't change the timestamps of the logfiles since Jan.18 when I had restarted the database. this situation does not appear on the early 8.1.7 database on windows 2000
    Does this situation normal?Hi,
    Why dont you post the output of the query you are using such as
    select group#, first_time, status from v$log;
    select name, last_time, status from v$datafile;
    select name, CHECKPOINT_TIME, status from v$datafile_header;Time stamp wont change for offline and may be for temp tablespace.
    Regards
    Anurag

Maybe you are looking for

  • How do you stop mail messages from poping up in ipad

    When I turn on my Ipad 3, i receive mail messages in the center of the screen of all new messages.  you have to manually tap each screen in the middle of the screen to continue working.  I changed the setting in general mail to manually fetch the mai

  • CRS-2630: Only cluster administrators are allowed to create local resources

    I have installed and configured a 12c database across two linux nodes and all is well. I have also installed the Oracle rdbms 12.1.01 on the same nodes. Now when I try and use netca or dbca to create a database or listener, I get the following errors

  • Invalid URL for file reference

    Hi, I'm having a problem with a webdynpro application running from Portal 6 SP14. The application contains a link to a file sitting on a client machine. Whenever this file does not actually reside on the server machine, it generates this error: com.s

  • Placing PSDs and IAs makes existing objects change to CMYK

    I've got an InDesign document open and I'm making a few color-filled boxes and type for the web. I'm setting all my colors to RGB, but when I place certain PSD and AI files in the same document, the color of the boxes and type change to CMYK. Or shou

  • Mac book air mavericks Numbers mistake buy ...how undo

    Hello, I saw in the internet that mavericks an a couple of apps are free do download( ilife and i work) So after updating to mavericks i klicked on numbers- but in that second did i saw that its 16 dollar. How can i undo this buy ? I defenetly dont n