Format '/home/oracle/ filename '

when i issue the following command, got this error:
backup archivelog all tag arc_0 format '/home/oracle/<filename>';
ORA-19504: failed to create file"/home/oracle/<filenmae>"
ORA-27038: created file already exists
When I try '%U' instead of a filename, the backup is successful.
We can't manually specify a <filename> is it? Must use the default filename such as '%U' ?
Thanks

Hie...
Yes...i think i got your point. Cause the backupset is more than one. Thats why once generated the first one, it can't continue cause it canot overwrite. Thanks.
If I have a duplex my backup into two destination, one in "db_recovery_file_dest" and another backups in another location. If the file in db_recovery_file_dest corrupted, can I still perform the recovery using the one NOT in db_recovery_file_dest? by using the TAG ? or the filename generated by %U ?

Similar Messages

  • Output Report in HTML format thru Oracle Forms. ASAP!!!

    Hi,
    How can i create a HTML output format thru Oracle Runtime Form?
    I have tried using the .REP and i was able to produce the HTML output format but when call the .REP using Oracle Form i was not able to produce the desired output.
    Attach below is the code. Seems like something is wrong with the code
    Thanks,
    Jen
    DECLARE
    pl_id ParamList;
    --subheader varchar2(1000);
    BEGIN
    ** Check to see if the 'tmpdata' parameter list exists.
    pl_id := Get_Parameter_List('tmpdata');
    ** If it does, then delete it before we create it again in
    ** case it contains parameters that are not useful for our
    ** purposes here.
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List( pl_id );
    END IF;
    ** Create the 'tmpdata' parameter list afresh.
    pl_id := Create_Parameter_List('tmpdata');
    ** Add 1 data parameters to this parameter list
    */ -- subheader is a parameter created in Oracle Reports
    --subheader := :variable.txt_message_yes;
    --Add_Parameter(pl_id,'SUBTITLE',TEXT_PARAMETER,subheader );
    **Pass a Parameter into PARAMFORM so that a parameter dialog will not appear
    **for the parameters being passing in.
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    ** Add the account_no parameters to this parameter list
    Add_Parameter(pl_id,'P_ACCOUNTNO',TEXT_PARAMETER,:account_no);
    * Run the report synchronously, passing the parameter list
    */ -- ABC is the report name
    Run_Product(REPORTS, 'c:\Fusion\FusionInvoice.rep',
    SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL);
    END;
    null

    Hi there,
    You have to add 3 parameters to param list :
    DESTYPE with value "FILE"
    DESNAME with value of desired filename
    DESFORMAT with value "HTML" or "HTMLCSS" (for cascading style sheets)
    Hope this helps.
    Regards, Kai

  • J2ee Web application exploded format in oracle 10g

    Hi,
    I am trying to develop a simple j2ee application in Exploded Format
    in oracle 10g AS. i have created a new OC4J instance called
    TestOC4j for this. A .war file works fine in this instance.
    I have placed the application under applications directory of TestOC4j.
    I have made entries in server.xml, oc4j_mod.conf,
    default-web-site.xml,http-web-site.xml and application.xml in META-INF
    of the application.
    The application get deployed with no errors.gets created in
    application-deployments too.
    But the url http://server-ipaddress:7778/test_app is not working.
    Please help.
    The folder struture is as follows:
    test_app
    --META-INF
    -----application.xml
    --test_web
    -----pages
    -------welcome.jsp
    -----WEB-INF
    -------web.xml
    -------lib
    -------src
    The entries in server.xml is as follows:
    <application name="test_app" path="../applications/test_app" auto-start="true" />
    <web-site path="./http-web-site.xml" />
    The entries in application.xml is as follows :
    <module>
    <web>
    <web-uri>test_web</web-uri>
    <context-root>/test_app</context-root>
    </web>
    </module>
    The entries in default-web-site.xml is as follows:
    <web-app application="test_app" name="test_web" load-on-startup="true" root="/test_app" />
    The entries in http-web-site.xml is as follows:
    <web-app application="test_app" name="test_web" load-on-startup="true" root="/test_app" />
    The entries in oc4j_mod.conf is as follows:
    Oc4jMount /test_app TestOC4j
    Oc4jMount /test_app/* TestOC4j
    Regards,
    Roopa

    Roopa, it looks like there is no problem with the deployment of your application in exploded format. Have you accessed http://server-ipaddress:7778/test_app/pages/welcome.jsp? Any problem access http://server-ipaddress:7778/j2ee/, the default home page of the default-web-app ?
    When you say the url http://server-ipaddress:7778/test_app is not working, what is the error message if any on the browser, on server console, in the server.log and http-web-access.log of ORACLE_HOME/j2ee/home/log/, ORACLE_HOME/j2ee/home/application-deployments/test_app/application.log?

  • Getting a report in excel format from oracle report builder 10gDS release2

    I want to get a report in excel format from oracle report builder 10gDS release2.
    Is there ne method by which minimum effort is required for changing already made reports .
    I have searched for it on internet :-
    http://www.oracle.com/webapps/online-help/reports/10.1.2/state/content/navId.3/navSetId._/vtTopicFile.htmlhelp_rwbuild_hs%7Crwwhthow%7Cwhatare%7Coutput%7Coutput_a_simpleexcel~htm/
    Example, given in the last of the page opened from the above url, is not working.
    Can neone plz explain the example and how to use it
    Thanks & Regards
    JD

    Ok, for the release 2 its quite straightfoward, in your calling form you would have something like this code:
    declare
         pl_id ParamList;
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    v_rep_status VARCHAR2(20);
    v_repsrv     VARCHAR2(100):= 'yourreportserver';
    v_serv varchar2(50) := 'yourservername' ;
    begin
    pl_id := Get_Parameter_List('tmpdata');
    if not id_null(pl_id) then
    Destroy_Parameter_List( pl_id );
    end if;
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id,'DESTYPE' ,TEXT_PARAMETER,'Screen' );
    Add_Parameter(pl_id,'PARAMFORM' ,TEXT_PARAMETER,'NO' );
    repid := FIND_REPORT_OBJECT('yourreport');     SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER, v_repsrv);
    set_report_object_property(repid,REPORT_DESTYPE,CACHE );
    set_report_object_property(repid,REPORT_DESFORMAT,'SPREADSHEET' );
    v_rep := RUN_REPORT_OBJECT(repid,pl_id);
    v_rep := substr(v_rep,length(v_repsrv)+2,10 ) ;
    end;
    I have plenty of reports being formated to excel with this same method so it should work for you, the only diference with my previous code is this line.
    set_report_object_property(repid,REPORT_DESFORMAT,'SPREADSHEET' );
    The rest remains untouched.
    Hope it helps.

  • File does not exist: /export/home/oracle/orahtml/marvel/images/spacer.gif

    Seeing this error in the apache log:
    File does not exist: /export/home/oracle/orahtml/marvel/images/spacer.gif
    I know there are spacer.gif files under the theme folders but why is it looking for a spacer.gif file in the images folder? Is this a bug?

    Hello,
    Yes I just checked it's a problem with theme 9 there are a couple of places where the theme calls #IMAGE_PREFIX#spacer.gif when it should call #IMAGE_PREFIX#themes/theme_9/spacer.gif
    There are two ways for you to fix this
    1. Copy themes/theme_9/spacer.gif to the top level images directory, I recommend this one because then if someone creates the theme from the repository again it wont' come up agian.
    2. Change all #IMAGE_PREFIX#spacer.gif to #IMAGE_PREFIX#themes/theme_9/spacer.gif in theme 9, if you export the theme you can just us a search and replace the export to do this and then reapply the theme.
    This as been bugged and will get fixed in future version.
    Carl

  • Error in setting permissions of file/directory /home/oracle/jre/1.1.8/LICENSE !

    Error in setting permissions of file/directory /home/oracle/jre/1.1.8/LICENSE ! Installation problem of 9i databse on redhat 7.3!!I installed sun jdk 1.3 or jdk 1.1.8_v3 and created a link for /usr/local/java !

    from root try this command
    umask
    umask must set at 0022 ... if your server not set at this number use this command
    umask 0022

  • [HELP] ORA-01990 Error opening password file '/home/oracle/OraHome1/dbs/ora

    Dear All,
    I have changed the PWD file on oracle 9.2.04 under linux redhat advance server 2.1. but when i start to open database by issuing dbstart, i get
    ORA-01990: Error opening password file '/home/oracle/OraHome1/dbs/orapw'
    ORA-27037: unable to obtain file status
    Linux Error: 2 : no such file or directory
    additional information: 3
    How to solve the problems?
    thanks and regard
    ER

    Hai all...
    I did it all..
    but still I got
    ORA-01990: Error opening password file '/home/oracle/OraHome1/dbs/orapw'
    ORA-27037: unable to obtain file status
    Linux Error: 2 : no such file or directory
    additional information: 3
    Help me...
    Thanks
    regard
    ER

  • How to Insert date in 'DD/MM/YYYY' format in oracle using stored procedure?

    Hi
    How to Insert date in 'DD/MM/YYYY' format in oracle using stored procedure?
    This is my Input data.
    11/25/2007.
    By using below query, it is inserted into database.
    sql>Insert into tblname values(to_date('11/25/2007','MM/DD/YYYY'));
    But using stored procedure, the same query is not running.
    It shows error like
    ORA-01843: not a valid month ORA-06512: at line 1
    Procedure:
    create or replace procedure Date_Test(datejoin in DATE) is
    begin
    insert into datetest values(to_date(datejoin,'MM/DD/YYYY'));
    end Date_Test;
    I had used 'nls_date_language = american' also.
    Prcodeure is created but not worked in jsp. The same error is thrown.
    Pls provide a solution

    This might help you....
    SQL> Create Table DateTest(col1 Date);
    Table created.
    Elapsed: 00:00:00.00
    SQL> create or replace procedure Date_Test(datejoin in DATE) is
    2 begin
    3 insert into datetest values(to_date(datejoin,'MM/DD/YYYY'));
    4 end ;
    5 /
    Procedure created.
    Elapsed: 00:00:00.00
    SQL> exec Date_Test('11/25/2007');
    BEGIN Date_Test('11/25/2007'); END;
    ERROR at line 1:
    ORA-01843: not a valid month
    ORA-06512: at line 1
    Elapsed: 00:00:00.00
    SQL> exec Date_Test(To_Date('11/25/2007','mm/dd/yyyy'));
    BEGIN Date_Test(To_Date('11/25/2007','mm/dd/yyyy')); END;
    ERROR at line 1:
    ORA-01843: not a valid month
    ORA-06512: at "CTBATCH.DATE_TEST", line 3
    ORA-06512: at line 1
    Elapsed: 00:00:00.00
    SQL> create or replace procedure Date_Test(datejoin in DATE) is
    2 begin
    3 insert into datetest values(datejoin);
    4 end ;
    5 /
    Procedure created.
    Elapsed: 00:00:00.00
    SQL> exec Date_Test(To_Date('11/25/2007','mm/dd/yyyy'));
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> Select * from DateTest;
    COL1
    25-NOV-07
    Elapsed: 00:00:00.00
    SQL> create or replace procedure Date_Test(datejoin in VarChar2) is
    2 begin
    3 insert into datetest values(to_date(datejoin,'mm/dd/yyyy'));
    4 end ;
    5 /
    Procedure created.
    Elapsed: 00:00:00.00
    SQL> exec Date_Test('11/25/2007');
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> select * from DateTest;
    COL1
    25-NOV-07
    25-NOV-07
    Elapsed: 00:00:00.00
    SQL>

  • COBOL format into Oracle 11.1.0.6.0

    hi
    We encountered problem while writing into Oracle 11.1.0.6.0 database from Compressed values through COBOL. The problem occurred for some specific values.
    Actual Values:
    We encountered while writing amount +2000.000 (to +2007.000) COBOL format into Oracle 11.1.0.6.0 release. Amount written in the database is +2015.167 instead of +2000.000. The same is working fine with Oracle 10.2.0.1.0 release.
    os is hpux 11.23
    plz suggest.

    user511621 wrote:
    We encountered problem while writing into Oracle 11.1.0.6.0 database from Compressed values through COBOL. The problem occurred for some specific values.
    Actual Values:
    We encountered while writing amount +2000.000 (to +2007.000) COBOL format into Oracle 11.1.0.6.0 release. Amount written in the database is +2015.167 instead of +2000.000. The same is working fine with Oracle 10.2.0.1.0 release.
    os is hpux 11.23Are you using Pro*Cobol? Has this been updated together with the new Oracle version used? If not, have you looked at the product certification matrix for the Pro*Cobol version you use against the new Oracle version?
    As for using a COMP data type - Oracle does not support that as far as I know (it uses its own internal numeric format). You likely use COMP as the native COBOL type and when the OCI call is made to Oracle from COBOL, the COMP value is bound to a SQL bind variable. The data transformation to an Oracle compatible type (something that Oracle can understand) will occur there.

  • I want convert string to date format in Oracle

    Dear All
    I want convert string to date format in Oracle,Format is given below
    'Friday, 02 March 2012 2:44 PM' to '02/03/2012 2:44 PM'

    >
    Hi Parwez,
    I want convert string to date format in Oracle,Format is given below
    'Friday, 02 March 2012 2:44 PM' to '02/03/2012 2:44 PM'SELECT TO_DATE('Friday, 02 March 2012 2:44 P.M.', 'DAY, DD MONTH YYYY HH:MI A.M.') from dual;
    As well as what the other poster suggested, look here: http://docs.oracle.com/cd/B19306_01/server.102/b14200/sql_elements004.htm#i34924
    HTH,
    Paul...

  • Configuring date format in Oracle 8.1.7

    I have just unloaded records from tables into an sql script file with insert statements. However, the date format for the records that I have unloaded is MM/DD/YYYY. When I try to run this sql script, oracle gives an error, saying it's not a valid month.
    Oracle date format is DD-MMM-YY. How can I change the date format in oracle, so that I could insert these records in?

    If your script does not have explicit TO_DATE conversions (which it should, by the way), like:
    insert into t values (to_date('11/21/2002', 'mm/dd/yyyy'));then you can set the default date format to match the format in your script. So, if your script looks like:
    insert into t values ('11/21/2002');then:
    alter session set nls_date_format = 'mm/dd/yyyy';prior to running the script.

  • Need profile option for determining DateTime format in Oracle Forms

    Hello All,
    I also have requirement where I need to read the date format in which Oracle Forms displays date values.
    As per updates to [this thread|https://forums.oracle.com/forums/thread.jspa?messageID=10285119] , I just need to read the profile option "ICX: Date format mask" ("ICX_DATE_FORMAT_MASK"), and reformat the date value to my required target format.
    This is good for the date type of fields. But what about the profile option that determines "datetime" formats in Oracle Forms ?
    Appreciate any help.
    Thanks
    Bhaskar

    Are you linking the host script to fndcpesr? E.g.:
    Host script defined with prog extension:
    XXSCRIPT.prog
    Move it to relevant dir:
    $XX_TOP/bin
    Create a soft link to fndcpesr
    ln -s $FND_TOP/bin/fndcpesr XXSCRIPT

  • DRG-11513: unable to open or write to file /home/oracle/mydocs/....

    Hi @all,
    i've read all the dócumentations i've found in the net but unfortunatly the Indexing of my filestored documents fails every time...
    So what i've done is the following:
    --Step 1 Create User
    --The following SQL command creates a user called MYUSER with a password of myuser_password:
    drop user textuser;
    CREATE USER TEXTUSER IDENTIFIED BY TEXTUSER;
    --Step 2 Grant Roles
    --The following SQL command grants the required roles of RESOURCE,CONNECT, and CTXAPP to TEXT_USER:
    GRANT RESOURCE, CONNECT, CTXAPP TO textuser;
    GRANT EXECUTE ON CTX_CLS TO textuser;
    GRANT EXECUTE ON CTX_DDL TO textuser;
    GRANT EXECUTE ON CTX_DOC TO textuser;
    GRANT EXECUTE ON CTX_OUTPUT TO textuser;
    GRANT EXECUTE ON CTX_QUERY TO textuser;
    GRANT EXECUTE ON CTX_REPORT TO textuser;
    GRANT EXECUTE ON CTX_THES TO textuser;
    begin
    ctx_ddl.create_preference('COMMON_DIR','FILE_DATASTORE');
    end;
    begin
    ctx_ddl.set_attribute('COMMON_DIR','PATH','/home/oracle/mydocs');
    end;
    begin
    ctx_ddl.create_preference ('AUTO_DECT','INSO_FILTER');
    end;
    create table mytable(id number primary key, docs varchar2(2000));
    insert into mytable values (111557,'Zwischenbericht.doc ');
    commit;
    create index myindex on mytable(docs)
    indextype is ctxsys.context
    parameters ('datastore COMMON_DIR');
    select id,docs,score(1) from mytable where contains(docs, 'Dokumentation',1)>0;
    returns NULL ROWS!!
    select * from CTX_USER_INDEX_ERRORS;
    DRG-11513: Datei /home/oracle/mydocs/Zwischenbericht1.doc kann nicht geöffnet oder geschrieben werden
    (unable to open or write to file /home/oracle/mydocs/Zwischenbericht1.doc )
    I gave an chmod 777 on the document "Zwischenbericht1.doc"
    So what can i do?????
    I use Oracle 10.2.0 on Suse Linux 9.2
    I'm very happy about Ideas and helpfull advices.
    Thanks a lot regards Julius

    Hallo Barbara,
    thanks a lot for your help!!!
    I've noticed that it is necessary to create the user textuser as ctxsys. So i've done like you recommended but unfortunately the result is the same.....
    I added an utl_file Path to my SPFILE. (utl_file_dir= /home/oracle/mydocs) as you can see below. (is it necessary to something else to the spfile which i haven't noticed at all???
    After that i tried to set up all by using sqlplus for having the possibility to show the results.
    Below you can see the statements, the connect-Changes (ctxsys/textuser)
    and the echo .
    Do you or somebody else have an idea what i can do additionally to get this working???
    Thanks a lot and regards Julius
    oracle@scarlino:~/product/10.2.0/db_2/dbs> more spfileJULIUS2.ora
    ð!
    JULIUS2.__db_cache_size=71303168
    JULIUS2.__java_pool_size=4194304
    JULIUS2.__large_pool_size=4194304
    JULIUS2.__shared_pool_size=83886080
    JULIUS2.__streams_pool_size=0
    *.audit_file_dest='/home/oracle/admin/JULIUS2/adump'
    *.background_dump_dest='/home/oracle/admin/JULIUS2/bdump'
    *.compatible='10.2.0.1.0'
    *.control_files='/home/oracle/oradata/JULIUS2/control01.ctl','/home/oracle/oradata/JULIUS2/control02.ctl','/home/oracle/oradat
    a/JULIUS2/control03.ctl'
    *.core_dump_dest='/home/oracle/admin/JULIUS2/cdump'
    *.db_block_size=8192
    *.db_domain=''
    *.db_file_multiblock_read_count=16
    *.db_name='JULIUS2'
    *.db_recovery_file_dest='/home/oracle/flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=JULIUS2XDB)'
    *.job_queue_processes=10
    *.open_cursors=300
    *.pga_aggregate_target=16777216
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=167772160
    *.undo_management='AUTO'
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='/home/oracle/admin/JULIUS2/udump'
    *.utl_file_dir='/home/oracle/mydocs'
    oracle@scarlino:~/product/10.2.0/db_2/dbs> sqlplus " / as sysdba"
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Sep 19 11:36:29 2005
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 167772160 bytes
    Fixed Size 1218316 bytes
    Variable Size 92276980 bytes
    Database Buffers 71303168 bytes
    Redo Buffers 2973696 bytes
    Database mounted.
    connect ctxsys/ctxsyDatabase opened.
    SQL> s
    Connected.
    SQL> drop user textuser cascade;
    User dropped.
    SQL> CREATE USER TEXTUSER IDENTIFIED BY TEXTUSER;
    User created.
    SQL> GRANT RESOURCE, CONNECT, CTXAPP TO textuser;
    Grant succeeded.
    SQL> GRANT RESOURCE, CONNECT, CTXAPP TO textuser;
    Grant succeeded.
    SQL> GRANT EXECUTE ON CTX_CLS TO textuser;
    Grant succeeded.
    SQL> GRANT EXECUTE ON CTX_DDL TO textuser;
    Grant succeeded.
    SQL> GRANT EXECUTE ON CTX_DOC TO textuser;
    Grant succeeded.
    SQL> GRANT EXECUTE ON CTX_OUTPUT TO textuser;
    Grant succeeded.
    SQL> GRANT EXECUTE ON CTX_QUERY TO textuser;
    Grant succeeded.
    SQL> GRANT EXECUTE ON CTX_REPORT TO textuser;
    Grant succeeded.
    SQL> GRANT EXECUTE ON CTX_THES TO textuser;
    Grant succeeded.
    SQL> connect textuser/textuser
    Connected.
    SQL> begin
    ctx_ddl.create_preference('COMMON_DIR','FILE_DATASTORE');
    end;
    / 2 3 4
    PL/SQL procedure successfully completed.
    SQL> begin
    ctx_ddl.set_attribute('COMMON_DIR','PATH','/home/oracle/mydocs');
    end;
    / 2 3 4
    PL/SQL procedure successfully completed.
    SQL> begin
    ctx_ddl.create_preference ('AUTO_DECT','INSO_FILTER');
    end;
    / 2 3 4
    PL/SQL procedure successfully completed.
    SQL> create table mytable(id number primary key, docs varchar2(2000));
    Table created.
    SQL> insert into mytable values (111557,'Zwischenbericht.doc ');
    1 row created.
    SQL> insert into mytable values (111558,'Test.txt ');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> drop index myindex;
    drop index myindex
    ERROR at line 1:
    ORA-01418: specified index does not exist
    SQL> create index myindex on mytable(docs)
    indextype is ctxsys.context
    parameters ('datastore COMMON_DIR'); 2 3
    Index created.
    SQL> select token_text from dr$myindex$i;
    no rows selected
    SQL> select id, docs, score(1)
    from mytable
    where contains (docs, 'Dokumentation', 1) > 0; 2 3
    no rows selected
    SQL> select * from CTX_USER_INDEX_ERRORS;
    ERR_INDEX_NAME ERR_TIMES ERR_TEXTKEY
    ERR_TEXT
    MYINDEX 19-SEP-05 AAANA3AAEAAAAGEAAA
    DRG-11513: unable to open or write to file /home/oracle/mydocs/Zwischenbericht.d
    oc
    MYINDEX 19-SEP-05 AAANA3AAEAAAAGEAAB
    DRG-11513: unable to open or write to file /home/oracle/mydocs/Test.txt
    SQL>
    ################################################################################

  • How to mount /export/home/oracle

    Hi Sir,
    Currently, my backup is up and running, but I need to only backup the /export/home/oracle directory. I discovered that the /export/home/oracle is not mounted in the /etc/vfstab file. How does I mount /export or /export/home/oracle? Please enlighten if anyone knows. Thanks.
    ddl76

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the appropriate Database forum. For example,
    Database - General
    General Database Discussions
    Recovery Manager
    Recovery Manager (RMAN)
    All Database Forums
    http://forums.oracle.com/forums/index.jsp?cat=18

  • Bash: /home/oracle/.bashrc: Permission denied

    [root@localhost u01]# ls -lad /home/oracle/{.*,*}
    ls: cannot access /home/oracle/*: No such file or directory
    drwx------. 4  501  507 4096 Aug 21 18:24 /home/oracle/.
    drwxr-xr-x. 6 root root 4096 Aug 21 22:36 /home/oracle/..
    -rwxrwxr-x. 1  501  507  829 Aug 21 18:31 /home/oracle/.bash_history
    -rwxrwxr-x. 1  501  507   18 May 10  2012 /home/oracle/.bash_logout
    -rwxrwxr-x. 1  501  507  176 Aug 21 17:16 /home/oracle/.bash_profile
    -rwxrwxr-x. 1  501  507  124 May 10  2012 /home/oracle/.bashrc
    drwxr-xr-x. 2  501  507 4096 Nov 20  2010 /home/oracle/.gnome2
    drwxr-xr-x. 4  501  507 4096 Aug 17 21:42 /home/oracle/.mozilla
    -rwxrwxr-x. 1  501  507 3786 Aug 21 18:24 /home/oracle/.viminfo
    [root@localhost u01]# su oracle
    [root@localhost u01]# su oracle
    bash: /home/oracle/.bashrc: Permission denied

    Hi,
    Why the Home Oracle files are rwx rwx r-x. the oracle home should have the permissions rwx r-x r-x.
    # chmod -R 755  /home/oracle/*
    To switch to an other user, it is recommended to use
    # su - oracle
    the dash (-) : this is used to load ALL the envirenment of the user oracle.
    Don't forget to verify if the .bashrc is executable, if not run:
    $ chmod +x ~/.bashrc
    I hope this can help you
    Best Regards

Maybe you are looking for

  • Does an external hard drive have to stay plugged in with Time Machine?

    I have an external hard drive but I do not always leave it plugged in.  I usually back up my computer every week or so and am just now getting around to using Time Machine. If i plug in my external hard drive and press "Back up now" will Time machine

  • Encounter a problem during upgrade sap r/3 4.7 to ecc6

    Hi expert: i encounter a problem during upgrade sap r/3 4.7 to ecc6 in START_SHDI_FIRST step. here is the error msg~ MSSCRESPDEFN.LOG Msg 2812, Level 16, State 62, Server Jack, Line 6 Could not find stored procedure 'dbo.sap_upg_getrelease'. setuser

  • Adobe Flash for Android 2.0

    I just bought a Cruz Reader it has the Android 2.0 O.S on it, I keep trying to d/l adobe flash but I'm running into dead ends everywhere. I want to transfer an epub I bought from borders to my reader but in order to do that I need Digital Edition on

  • SQL *PLUS issue

    I have an unusual problem in SQL PLUS. When the SQL statement is a DML things go fine - no problem, BUT when the SQL statement is a DDL (like creating a database object )the process hangs. Things get more interesting ... if I open another SQL PLUS se

  • Download to Excel with Images

    Hello The download to excel and PDF documents now includes images.  I have inlcuded images in my web templates to execute commands eg: Download to Excel, Bookmake etc. See below: img onclick="executeJS_EXPORT_XSLT120();" alt="Download to Excel" src="