Remove alter system checkpoint from Backup script

We are seeing high response time when we run alter system checkpoint and when we run "BEGIN BACKUP". Can we remove that from the script currently it's something like:
alter system checkpoint
alter system archive current
begin backup
Also would suspend/resume help if we have it after "begin backup" in response time?
Edited by: user628400 on Mar 26, 2009 5:06 PM

Hi;
It says;
"SQL-induced checkpoints are heavyweight. This means that Oracle records the checkpoint in a control file shared by all the redo threads. Oracle also updates the datafile headers. SQL-induced checkpoints move the checkpoint position to the point that corresponded to the end of the log when the statement was initiated. These checkpoints can adversely affect performance, because the additional writes to the datafiles increase system overhead."
According to my experiences, manually checkpointing has never been a quick operation.
How long it takes to finish checkpoint?

Similar Messages

  • How to remove a System Hold from an Cancelled Invoice in 11i

    Hi All,
    I have a Cancelled Invoice with "Dist Acct Invalid" hold that we need to release from the invoice.
    After some analysis I found that there is an invalid account segment value in Invoice distribution that we need to correct.
    But, I am not able to modify the distributions.
    The invoice is imported from iExp and not accounted.
    I am not sure whether it is because of canceletion or I am missing anything.
    Please suggest a way out to modify a cancelled Invoice.
    Thanks
    Sandy

    Hi Sandy,
    The ap_holds_pkg.quick release function will not release the following type of holds:
    ('DIST VARIANCE', 'NO RATE', 'CANT FUNDS CHECK', 'INSUFFICIENT FUNDS',
    'FINAL MATCHING', 'FUTURE PERIOD', 'CANT TRY PO CLOSE',
    'DIST ACCT INVALID', 'ERV ACCT INVALID', 'LIAB ACCT INVALID')
    Even if you change the hold to a different hold type and use the quick_release procedure to release the hold, the item will not account.
    I would recommend that you re-enable the distribution account. Once you have processed the accounting and sent the data to GL, you can disable the account again.
    Cheryl

  • Hot Backup을 Script로 작성후 Cron으로 실행시...

    안녕하세요!
    건강한 가을 보내시고 계신지요?
    오늘은 Hot Backup에 대해서 몇가지 궁금한게 있어서 글을 올립니다
    -. HP-UNIX 11, Oracle 9.2.0.7
    -. Oracle Database 파일 용량 : 약 50G
    -. Script 내용중 일부 발췌
    alter system switch log file; <--백업해야할 dbf 양이 많아 먼저 한번 실행시켰음
    ####### Tablespace Backup
    alter tablespace system begin backup;
    !cp /oradata/system01.dbf /BACKUP/hot/system01.dbf
    alter tablespace system end backup;
    ...........각 테이블스페이스별로 위와 같이 정의
    ####### Archive Log File Backup
    alter system switch log file;
    alter system archive log off;
    !cp /oradata/arch/*.arc /BACKUP/hot/arch/.
    !rm /oracle/arch/*.arc
    alter system archive log start;
    ####### Control File Backup
    alter system checkpoint;
    alter database backup controlfile '/BACKUP/hot/control.bkp';
    위와 같이 Script를 작성하여, Cron을 사용하여 야간에 작업을 수행코자 합니다.
    1. 위의 Script에서 수정을 가해야 하는 부분이나, 좀 더 추가되어야할 부분이 있으시면 기탄없이 지적 부탁드립니다.
    2. 야간에 작업을 수행하다보니, Tablespace의 Begin backup을 했는데, 여타의 장애로 인해 End Backup이 수행이 안될경우, DBA가 강제로 End Backup을 안해줄 경우에는 어떻게 되는지요?
    그리고, 이러한 위험을 해결키 위해 고수님들은 어떠한 방법을 사용하는지 알고 싶습니다.
    행복한 하루 되십시요!
    감사합니다.

    첫번째로..
    백업초기에 log switch를 하는 것은 경험상 필요하기도 합니다.
    트랜잭션이 거의 없는 백업본의 경우에 archive가 거의 떨어지지
    않게 되고, 하루 백업하는데 백업본에 archive는 없는 이상한 사태가
    벌어지죠. 차후에 cancel복구를 해야 하는 경우에도 어렵기 때문에
    online backup 시 초기에 log switch 를 해주기는 합니다.
    두번째로..
    alter system archive log stop; 명령은 왜 하셨는지요?
    이거 하면.. archiveing 이 멈추니 트랜잭션도 멈춥니다. 서비스 영향을
    줄텐데요.. 백업이 서비스에 영향을 주어서는 안되겠죠.
    archive log를 백업시에는 파일명에 대한 리스트를 만들고 그 리스터에
    있는 파일들을 백업후 삭제하는 방법으로 변경하시는 것이 좋을 것 같습니다.
    세번째로.. 컨트롤파일 백업은 tablespace backup 이후에
    바로 하시는 것이 좋습니다. archive file을 백업하는 시간동안
    SCN이 변경이 되겠고, 그러면 해당 컨트롤파일을 백업하고 그것을
    restore하게 되면 controlfile의 scn이 틀리니 controlfile의 SCN까지
    복구가 필요하다고 판단하겠죠.
    순서를.. 테이블스페이스 데이터파일 백업 -> 컨트롤파일 백업 -> 아카이브백업
    이런 순으로 하시면 좋을 것 같습니다.
    네번째로..
    begin backup을 하게 되면 테이블스페이스의 데이터파일 헤더에는 bebin
    backup mode라고 쓰게 됩니다. 그리고 이렇게 begin backup mode인
    테이블스페이스에서 변경된 데이터는 그 데이터를 row 단위로 redo log entry에
    등록하는 것이 아니라 블록단위로 등록하게 됩니다. 즉 단 하나의 row만을
    update했을 뿐인데도 해당 block전체가 redo log entry로 들어가겠죠. 당연히
    archive file이 훨씬 많이 쌓이게 됩니다. 또한 DB를 abort로 내렸을 경우에는
    이후에 open을 하려고 하면 system01.dbf 파일을 복구하라고 나와서
    아주 당황하게 되지요.
    그리고 사례를 보면..모 시청에서 DBA가 한달동안
    begin backup이 된 것을 몰랐고, DB fail이 났는데..복구를 한답시고
    controlfile을 재생성하였습니다. 그런데 bootstrap failure가 발생했고
    게다가 아카이브도 없고 백업도 없는 것이었습니다. 결국엔 adjust scn으로
    강제복구를 했지요.. begin backup mode인지는 아침에 시스템담당자가
    꼭 확인해야 하는 것 중에 하나입니다. 아침 점검 스크립트 수행하지
    않으시는지요?
    첨부로.. 얼마전에 여기 게시판에도 올렸던 내용인데요..
    백업 스크립트를 드리죠..
    그리고 아침에 DB를 점검할 때 보아야 하는 사항은 제가 정리한 것이
    있습니다.
    아래 링크에서 다운받아서 참고하세요.
    http://www.dbguide.net/servlet/com.util.DownloadServlet?file=%2F20060120%2F1137768090586.zip&filename=%C0%CF%C0%CF+DB%C1%A1%B0%CB+%BD%BA%C5%A9%B8%B3%C6%AE_%B0%F8%B0%B3%BF%EBv0.1.zip
    ===================================================
    온라인 백업은 파라메터 파일 , 콘트롤 파일, 모든 데이터파일 , 아카이브로그를
    백업후 다른 서버로 이동시키면 다른 서버로 복구할 수 있습니다.
    하지만 online backup시에 datafile, controlfile만을 백업하므로 current redo log가 없으므로
    until cancel 복구를 해야 합니다.(rman 백업도 마찬가지)
    1) init파일,DB file, controlfile을 다른서버로 이동시킵니다.
    보통 controlfile백업은 alter database backup controlfile to '~~'; 이렇게 하기 때문에
    하나만 복사하므로 이것을 추가 복사해서 controlfile의 경로에 복사해줍니다.
    2) init파일에 controlfile의 경로, background_dump_dest, user_dump_dest, core_dump_dest, log_archive_dest 를
    경로에 맞게 지정해줍니다.
    3) DB를 mount상태로 올립니다. 만약 mount하는 동안 에러가 난다면 controlfile에서
    문제가 생겼으므로 controlfile의 백업을 확인합니다.
    4) datafile, redolog file의 file_name을 변경합니다.
    select name from v$datafile;
    select member from v$logfile;
    alter database rename file '현재경로' to '이동시킨 경로';
    alter database rename file '현재경로' to '이동시킨 경로';
    단 여기에서 tempfile은 백업대상도 아니고 rename이 안되므로 새로 생성해 주어야 합니다.
    select name from v$tempfile;
    select * from sys.props$;에서 default temporary tablespace를 찾거나
    또는 select distiinct temporary_tablespace from dba_users 에서 찾습니다.
    tempfile을 추가하는 방법은 더이상 말씀 안드립니다. NBR과정의 기본이니까요..
    5) DB의 archive file을 log_archive_dest 에 설정된 곳으로 이동시키고 recovery를 수행합니다.
    recover database until cancel;
    마지막 archvie까지 적용후 cancel하기
    alter database open resetlogs;
    resetlogs open하기
    # 온라인 백업 스크립트(데이터파일, 컨트롤파일만 백업)
    작업 이전에 /backup , /backup/control 이라는 디렉토리 생성
    - 백업 메인
    vi /backup/onbackup.sh
    export LANG=C
    export ORACLE_HOME=/u/ora9i/product/9.2.0
    export PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_SID=PROD
    sh -x /backup/1_onbackup.sh
    sh -x /backup/2_cp_backup.sh
    sh -x /backup/3_control_backup.sh
    sh -x /backup/4_offbackup.sh
    - 백업 모드 변경
    vi /backup/1_onbackup.sh
    export LANG=C
    export ORACLE_HOME=/u/ora9i/product/9.2.0
    export PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_SID=PROD
    # backup mode on
    sqlplus /nolog << EOF1
    conn /as sysdba
    set head off
    set feedback off
    set time off
    set timing off
    set echo off
    spool /tmp/backup_online.tmp
    select 'alter tablespace '||tablespace_name||' begin backup;' from dba_tablespaces where status='ONLINE' and contents <>'TEMPORARY';
    spool off
    !cat /tmp/backup_online.tmp|grep -v spool|grep -v SQL > /tmp/backup_online.sql
    @/tmp/backup_online.sql
    exit
    EOF1
    - 데이터파일 백업할 쿼리
    vi /backup/2_cp_backup.sql
    select 'mkdir /backup/'||to_char(sysdate,'YYYYMMDD_HH24MI') from dual;
    select 'cp '||name||' /backup/'||to_char(sysdate,'YYYYMMDD_HH24MI') from v$datafile;
    - 데이터파일 copy하는 스크립트
    vi /backup/2_cp_backup.sh
    # cp backup, mkdir /backup/SYSDATE directory
    export LANG=C
    export ORACLE_HOME=/u/ora9i/product/9.2.0
    export PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_SID=PROD
    sqlplus /nolog << EOF2
    conn /as sysdba
    set head off
    set feedback off
    set time off
    set timing off
    set echo off
    spool /tmp/backup_script.tmp
    @2_cp_backup.sql
    spool off
    !cat /tmp/backup_script.tmp |grep -v spool |grep -v SQL > /tmp/backup_script.sh
    !chmod 755 /tmp/backup_script.sh
    exit
    EOF2
    sh -x /tmp/backup_script.sh
    - 컨트롤파일 백업
    vi /backup/3_control_backup.sh
    export LANG=C
    export ORACLE_HOME=/u/ora9i/product/9.2.0
    export PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_SID=PROD
    # controlfile backup
    sqlplus /nolog << EOF3
    conn /as sysdba
    set head off
    set feedback off
    set time off
    set timing off
    set echo off
    spool /tmp/control_backup.tmp
    select 'alter database backup controlfile to ''/backup/control/'||to_char(sysdate,'YYYYMMDD_HH24MI')||'.ctl'';' from dual;
    spool off
    !cat /tmp/control_backup.tmp |grep -v spool|grep -v SQL > /tmp/control_backup.sql
    @/tmp/control_backup.sql
    exit
    EOF3
    - 백업모드 offline하기
    vi /backup/4_offbackup.sh
    export LANG=C
    export ORACLE_HOME=/u/ora9i/product/9.2.0
    export PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_SID=PROD
    # backup mode off
    sqlplus /nolog << EOF4
    conn /as sysdba
    set head off
    set feedback off
    set time off
    set timing off
    set echo off
    spool /tmp/backup_offline.spool
    select 'alter tablespace '||tablespace_name||' end backup;' from dba_tablespaces where status='ONLINE' and contents <>'TEMPORARY';
    spool off
    !cat /tmp/backup_offline.spool |grep -v SQL > /tmp/backup_offline.sql
    @/tmp/backup_offline.sql
    exit
    EOF4
    그리고 만약 파일리스트만 내리고 veritas netbackup으로 백업이 가능하다면 아래와 같이 하면
    됩니다. veritas netbackup에서는 file리스트만 파일로 떨구면 그 파일을 백업해줍니다.
    archvie backup은 아래와 같이 하면 되는데 아래는 archive file의 backup list만 만듭니다.
    수정해서 backup list에서 YYYYMMDD_HH24MI의 분단위 디렉토리를 만들고 archive file을
    다른 서버로 cp복사하도록 하면 됩니다. 꼭 아래 스크립트는 테스트 후에 사용하시길
    바랍니다...
    # 데이터파일 백업과 archvie백업 쉘은 아래와 같습니다.
    1. begin backup할 스크립트를 수행합니다.
    dbbegin.sh
    TBS_INFO=/tmp/tbs_info~.$$
    sqlplus /nolog << EOF > $TBS_INFO 2>&1
    connect / as sysdba;
    select 'tablespace '||tablespace_name from dba_tablespaces;
    disconnect;
    exit
    EOF
    cat $TBS_INFO | awk ''$1 == "tablespace" { print $2 }'' | while read LINE
    do
    export LINE
    echo "Issuing alter tablespace $LINE begin backup;"
    /usr/openv/netbackup/oracle/table_begin.sh
    done
    \rm $TBS_INFO
    2. 위에서의 table_begin.sh 는 아래와 같습니다.
    table_begin.sh
    sqlplus /nolog << EOF > /dev/null 2>&1
    connect / as sysdba;
    alter tablespace $LINE begin backup;
    disconnect;
    exit
    EOF
    3. dbbegin.sh 을 하게 되면 테이블스페이스가 backup mode가 됩니다.
    4. 데이터파일 리스트를 추출합니다.
    datafile_list
    #!/bin/ksh
    DATAFILE_INFO=/tmp/datafile_info~.$$
    datafile_list=/tmp/PROD_data_list
    sqlplus /nolog << EOF > $DATAFILE_INFO 2>&1
    connect / as sysdba;
    select ''datafile_name ''||file_name from dba_data_files;
    select ''logfile_name ''||member from v\$logfile;
    select ''controlfile_name ''||name from v\$controlfile;
    disconnect
    EOF
    cat $DATAFILE_INFO | awk ''$1 == "datafile_name" {print $2}''
    /tmp/PROD_dbfile_list cat $DATAFILE_INFO | awk ''$1 == "logfile_name" {print $2}''
    /tmp/PROD_logfile_list cat $DATAFILE_INFO | awk ''$1 == "controlfile_name" {print $2}''
    /tmp/PROD_controlfile_list cat /tmp/PROD_dbfile_list > $datafile_list
    cat /tmp/PROD_logfile_list >> $datafile_list
    cat /tmp/PROD_controlfile_list >> $datafile_list
    \rm $DATAFILE_INFO
    5. 데이터파일 리스트를 netbackup에서 tape백업을 하도록 합니다.
    veritas netbackup에서 리스트만 주면 백업해줌..
    6. end backup 을 만드는 스크립트를 수행
    dbend.sh
    #!/bin/ksh
    TBS_INFO=/tmp/tbs_info~.$$
    sqlplus /nolog << EOF > $TBS_INFO 2>&1
    connect / as sysdba;
    select ''tablespace ''||tablespace_name from dba_tablespaces;
    disconnect;
    exit
    EOF
    cat $TBS_INFO |awk ''$1 == "tablespace" { print $2 }''|while read LINE
    do
    export LINE
    echo "Issuing alter tablespace $LINE end backup;"
    /usr/openv/netbackup/oracle/table_end.sh
    done
    \rm $TBS_INFO
    7. 위에서 table_end.sh 는 아래와 같습니다.
    table_end.sh
    sqlplus /nolog << EOF > /dev/null 2>&1
    connect / as sysdba;
    alter tablespace $LINE end backup;
    disconnect;
    exit
    EOF
    6. archive log가 없을 수 있으므로 수동으로 log switch 해줍니다.
    arch_list_1
    #!/bin/ksh
    sqlplus /nolog << EOF > $LOG
    connect / as sysdba;
    alter system switch logfile;
    disconnect;
    exit;
    EOF
    7. archvie file의 리스트를 뽑아냅니다.
    arch_list
    #!/bin/ksh
    TBS_INFO=/tmp/tbs_info~.$$
    ARCHIVE_DIR=/tmp/PROD_archive_dir.txt
    sqlplus /nolog << EOF > $LOG 2>&1
    connect / as sysdba;
    alter system switch logfile;
    disconnect;
    exit;
    EOF
    sqlplus /nolog << EOF > $TBS_INFO 2>&1
    connect / as sysdba;
    archive log list;
    disconnect;
    exit;
    EOF
    cat $TBS_INFO | awk ''$1 == "Archive" {print $3}'' > $ARCHIVE_DIR
    ARCH_DIR=
    cat $ARCHIVE_DIR
    ARCH_LIST_PROD=
    ls -ltr $ARCH_DIR/*.arc |wc -l
    echo "ARCH_LIST_PROD : $ARCH_LIST_PROD" >> $LOG
    ARCH_LIST_PROD_1=
    expr$ARCH_LIST_PROD - 1
    echo "ARCH_LIST_PROD_1 : $ARCH_LIST_PROD_1" >> $LOG
    /usr/bin/ls -ltr $ARCH_DIR/*.arc |awk ''{print $9}'' |head -
    $ARCH_LIST_PROD_1 > /tmp/PROD_arch_list
    echo "Archive Log List Print.....O.k....
    /usr/bin/date +%c
    " >> $LOG
    #\rm $TBS_INFO $ARCHIVE_DIR
    8. 위에서 /tmp/PROD_arch_list에 있는 archive리스트를 veritas netbackup에서 넣어주면 tape백업이 됩니다.그리고 특이한 것은 archvie file은 archive file을 백업했으면
    지우도록 설정하면 되겠지요.

  • RMAN Backup Script Help

    Hi,
    We currently have an RMAN script that runs nightly to backup the database, including the archivelogs and purge. We are using flashback and would like to keep the archivelog available for 3 days.
    I changed this:
    backup check logical as compressed backupset archivelog all format '${RMAN_DIR}/%d_ARC_%Y%M%D_%s_%p'
    delete input;
    To this:
    backup check logical as compressed backupset archivelog until time 'sysdate-3' format '${RMAN_DIR}/%d_ARC_%Y%M%D_%s_%p'
    delete input;
    I changed "all" to "until time 'sysdate-3'" and want to confirm this before I do anything. Thanks.

    Kamran's video would clear you everything.
    I just want to add few quick steps from my side.
    Step1.Make sure RMAN is connected to the right target database and the recovery catalog.
    Then run the CREATE SCRIPT command, as shown in this example:
    CREATE SCRIPT full_bkup
    allocate channel ch1 type disk format '/backups/rman/%n%M%D%Y%s%U.bak' maxpiecesize 4G;
    sql 'alter system archive log current';
    sql 'alter system switch logfile';
    backup incremental level 0 tag=rman_10 filesperset=5 database include current controlfile;
    sql 'alter system archive log current';
    sql 'alter system switch logfile';
    release channel ch1;
    Step2.Create a shell script rman_bkup_10g.ksh as below and initiate execution of the above script from this shell script.
    rman target sys/sys-pwd@tgt-db-conn-str catalog rman/rman-pwd@rec-cat-conn-str
    run {execute script *full_bkup*;}
    exit
    Step3.Schedule the shell script rman_bkup_10g.ksh in crontab as below(The example shows,the shell script gets executed everyday at 05:30)
    30 05 * * * /path/to/script/rman_bkup_10g.ksh >> /path/to/log/rmanbkup.log
    You may please tailor the scripts as per your need.
    Edited by: bharathDBA on Aug 8, 2011 3:27 AM
    Edited by: bharathDBA on Aug 8, 2011 3:52 AM
    Edited by: bharathDBA on Aug 8, 2011 3:54 AM

  • Alter System command

    Hi all,
    I am just bit confused in the following two commands
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    SQL> ALTER SYSTEM CHECKPOINT;
    So what is the main difference between the first and second cmds?
    Why seniors/books suggest to use first command instead of the second one ?

    372211, if you run manual hot backups then at the conclusion of copying the files for the last tablespace in your hot backup and issueing the "end backup" command you generally issue the ALTER SYSTEM SWITCH LOGFILE command to force all redo necessary to bring the backups to a consistent point in time during forward recovery.
    The archived redo logs and backup copies just made can be duplicated for sending off-site and provide a consistet image in the event of a diaster that results in the loss of archieved redo logs made after the backup.
    Also, to add to what was said about checkpoints - The header blocks for the database files must also be updated with the checkpoint information.
    HTH -- Mark D Powell --

  • Alter database OR alter system?? what is the logic?

    Hi,
    this is just a general question not related to any particular issue. I seem to be missing the logic behind when we need to use the "alter system ... " statements and when we need to use the "alter database ..." statements. Is there a logic I can use to guess ? Or we only need to remember them (or look up for them)?
    Let's take an example.
    alter database archivelog; & alter system checkpoint;
    OR
    alter database add logfile; & alter system set undo_retention=800;
    If you have a key that can be generally applied please let me know as I am not able to find it. Thank you,
    enrico

    I am not sure if there is a general rule but this is what I use:
    alter database is about modifying the database architecture, like data files, archived log files etc.
    alter system is about modifying the instance. so, you are modifying the way oracle runs. Remember that all parameters should be done with alter system (like undo_retention)
    hope this will help you.

  • Can I execute "Alter System Disconnect Session" in a OLE VB Script?

    Will this work? If not - How to do it?
    The speadsheet contains a list of sid's and serial#. I want to highlight a cell containing a username, then run the kill session macro on it.
    Sub Kill_Session()
    Dim KillStatement As Object
    DBPassword = "uuuu/pppppppp"
    DatabaseName = "dddd"
    Set objSession = CreateObject("OracleInProcServer.XOraSession")
    Set objdatabase = objSession.opendatabase(DatabaseName, DBPassword, 0&)
    objdatabase.Parameters.Add "SERIAL", 0, 2
    objdatabase.Parameters("SERIAL").ServerType = 1
    objdatabase.Parameters.Add "SID", 0, 2
    objdatabase.Parameters("SID").ServerType = 1
    Inputdata = ActiveCell.Value
    RowNo = ActiveCell.Row
    objdatabase.Parameters("SERIAL").Value = Worksheets("Sheet1").Cells(RowNo, 13)
    objdatabase.Parameters("SID").Value = Worksheets("Sheet1").Cells(RowNo, 12)
    Set OraSqlStmt = objdatabase.CreateSQL("ALTER SYSTEM DISCONNECT SESSION ':SID, :SERIAL' IMMEDIATE;", 0&)
    MsgBox objdatabase.Parameters("SID").Value
    MsgBox objdatabase.Parameters("SERIAL").Value
    objdatabase.Parameters.Remove ("SERIAL")
    objdatabase.Parameters.Remove ("SID")
    End Sub

    on 10gR1/10gR2, you can not use
    ALTER SYSTEM KILL SESSION ‘115,9779,@1';that start from 11gR1
    Only
    * For integer1, specify the value of the SID column.
    * For integer2, specify the value of the SERIAL# column.
    ALTER SYSTEM KILL SESSION ‘115,9779';http://download.oracle.com/docs/cd/B14117_01/server.101/b10759/statements_2013.htm#SQLRF00902
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_2013.htm#SQLRF00902
    You may use crontab to help ....
    Example about blocking (SID):
    select 'ALTER SYSTEM KILL SESSION ''' ||sid||','||serial#|| ''' IMMEDIATE;' from gv$session s where sid in (
    select distinct(l1.sid) from
    gv$lock l1, gv$lock l2
    where l1.block = 1 and l2.request > 0
    and l1.id1=l2.id1
    and l1.id2=l2.id2
    ) AND INST_ID = (select INSTANCE_NUMBER from v$instance )and ....
    Good Luck

  • [SOLVED] Removing E17 desktop from AUR script

    Hello,
    I went about today installing Arch with much success and was trying to install the E17 desktop which isn't working; anytime I type startx I get:
    xset: bad font path element (#0), possible cause are:
    Directory does not exist or has wrong permissions
    Director missing fonts.dir
    Incorrect font server address or syntax
    /home/fox/.xinitrc: line 4: exec: enlightenment_start: not found
    xinit looks like this:
    xset +fp /usr/share/fonts/local
    xset fp rehash
    exec enlightenment_start
    I was going to remove E17 and reinstall it, but since I used the easy_e17.sh script I don't know how to go about removing it. I got the script from the AUR and used pacman -U to install it, but I can't seem to find a way to undo it. I tried reading easy_e17 --help and googled for a while, but couldn't find any info. Any help is appreciated.
    Last edited by NexusX (2011-01-14 22:34:12)

    Awebb wrote:What's the objection against the package in the repos? Why all the hassle with a non-pacman install?
    I had the install from the repo's previously; the install was very smooth and it started just fine but I ran into a bug where if I attempted to remove a gadget from my desktop, my whole system would lock up. I jumped on to irc to see if anyone knew of a workaround when a dev told me that the snapshots in the repo's were about 2 weeks old, and that a large amount of work had been done over that time to that area, and that updating the snapshot would probably fix the issue. I know that at this point, it'd probably be easier to just re-install the package in the repos and avoid doing anything to reproduce the bug, but rather than take the easy way out I'd rather address the problem directly and have an up-to-date e17 install. In the meantime I got XFCE up and running so I have a fully functioning system.
    moetunes wrote:Enlightenment_start would be a script to set the environment up and start the window manager, it is important. It looks like the make errors, as they always are, are important and shouldn't be ignored. Try again and pay attention to what happens during make, more then likely it will be dependency problems.
    I went back and did another reinstall to see if I could read into those make errors a bit better, especially now that I have XFCE and a web browser to search with. The make errors didn't show up this time around (/shrug) but at the end of the install was a set of 3 instructions instructing the user to add 3 paths to their environment, one of which was the PATH argument listed in the wiki, the other two were for Python and an e17 library. Added them to /etc/profile:
    #E17 eas-e17
    PATH="$PATH:/opt/e17/bin"
    PYTHONPATH=":$PYTHONPATH"
    LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/opt/e17/lib"
    And shazaam, Enlightenment works I saw these instruction in previous installs, but dismissed them since 1 was in the wiki instructions, thinking that was all that was needed. I'm considering appending this finding to the wiki.
    The new updated install fixed the problem I was having with e17 before Now, lol, however a new one is showing up that might be worse.  Now that I can update the snapshot with a single command though I suppose I'll keep e17 around and play with it as updates happen. Thanks for sticking around, if it wasn't for you insistence that the problem probably was a fudged path variable, I might have missed it.

  • Alter system flushed shared pool in RMAN backup

    Hi,
    I am trying to take RMAN backup of 11.2.0.1 Database in IBM AIX 6.1 server.
    The RMAN is hanging .
    Though the backup gets completed, The channels allocated doesnt get released and the RMAN gets hanging.
    In earlier RMAN backup Scripts,
    the DBA was using alter system flush shared pool in RMAN backup script and the backup was getting succesful.
    Now my question is , is using ALTER SYSTEM FLUSH SHARED POOL have any performance impact on the database.
    Regards,
    TEJAS

    TEJAS_DBA wrote:
    Hi,
    I am trying to take RMAN backup of 11.2.0.1 Database in IBM AIX 6.1 server.
    The RMAN is hanging .
    Though the backup gets completed, The channels allocated doesnt get released and the RMAN gets hanging.Are you setting the large pool? If you don't, then rman uses the shared pool. Read about tuning rman performance in the docs.
    >
    In earlier RMAN backup Scripts,
    the DBA was using alter system flush shared pool in RMAN backup script and the backup was getting succesful.
    Now my question is , is using ALTER SYSTEM FLUSH SHARED POOL have any performance impact on the database.Yes, you are allowing the components in there to be loaded in the random order of whatever is called first. This may have a good impact if you had some fragmentation in there, or it could be mildly bad if everything was well sorted, or it could be very bad if you are unlucky or have some pattern of invalidations or should be pinning something or who-knows-what. It generally is considered not a good thing to do as a habit. You wind up with [url http://tkyte.blogspot.com/2012/05/another-debugging-story.html]rainy Monday scenarios.
    Edit: I notice there are some bugs, including very slow performance when using a catalog. When you say hang, how long are you waiting? Have you considered current patches?
    Edited by: jgarry on Aug 8, 2012 11:09 AM

  • [SOLVED] Remove cairo-dock completely from the system

    I would like to know how to remove cairo-dock completely from the system and then re-install it again.
    It seems like it is not uninstalled completely. I have removed and then re-installed and when performing pacman -Ss cairo-dock cairo-dock-plugins it figures as it is not installed when in fact is.
    Last edited by toni (2013-11-23 12:55:10)

    jasonwryan wrote:Please paste the commands you used to remove and reinstall it.
    Below the commands:
    sudo pacman -Rns cairo-dock cairo-dock-plugins
    I get below errors when trying uninstall them:
    error: target not found: cairo-dock
    error: target not found: cairo-dock-plugins
    I use compton composite manager.
    After that If I try to install it again:
    sudo pacman -S cairo-dock cairo-dock-plugins
    below output is shown:
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/dnd2share/upload2free.sh exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/drop-indicator/default-drop-indicator.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/drop-indicator/default-hover-indicator.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/drop-indicator/drop_indicator.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/drop-indicator/icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/drop-indicator/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/dustbin/dustbin.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/dustbin/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/dustbin/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/dustbin/themes/default/preview exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/dustbin/themes/default/trashcan_empty.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/dustbin/themes/default/trashcan_full.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/gnome-integration/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/icon-effect.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/icon-fire.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/icon-firework.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/icon-storm.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/rain.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/snow.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/icon-effect/star.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/icon-black-hole.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/icon-break.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/icon-evaporate.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/icon-explode.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/icon-fade-out.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/illusion.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/illusion/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/kde-integration/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/keyboard-indicator/caps-lock.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/keyboard-indicator/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/keyboard-indicator/keyboard-indicator.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/keyboard-indicator/num-lock.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/keyboard-indicator/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/icon-scheduling.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/locked.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/logout.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/logout.sh exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/system-guest.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/system-hibernate.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/system-log-out.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/system-restart.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/system-shutdown.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/logout/system-suspend.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/cd_mail_icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/cd_mail_newmail.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/cd_mail_nomail.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/mail.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/themes/Default/has_mail.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/themes/Default/new_mail_sound.wav exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/mail/themes/Default/no_mail.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/motion-blur/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/motion-blur/motion_blur.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/0.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/1.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/2.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/3.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/broken.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/broken.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/default.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/default.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/musicPlayer.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/pause.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/pause.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/play.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/play.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/stop.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/stop.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/themes/cd_box_simple/frame.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/themes/cd_box_simple/preview exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/themes/cd_box_simple/readme exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/themes/cd_box_simple/reflect.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/musicPlayer/themes/cd_box_simple/theme.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/bad.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/default.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/netspeed exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/netspeed.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/ok.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/netspeed/unknown.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/powermanager/charge.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/powermanager/default-battery.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/powermanager/default-charge.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/powermanager/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/powermanager/powermanager.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/powermanager/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/powermanager/sector.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/quick_browser/icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/quick_browser/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/quick_browser/quick-browser.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/preview-3D-plane.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/preview-caroussel.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/preview-curve.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/preview-panel.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/preview-parabolic.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/preview-rainbow.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/preview-slide.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/readme-3D-plane-view exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/readme-caroussel-view exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/readme-curve-view exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/readme-panel-view exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/readme-parabolic-view exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/readme-rainbow-view exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/readme-slide-view exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/rendering/rendering.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shared-files/images/expose-desktops.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shared-files/images/expose-windows.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shared-files/images/icon-gauge.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shared-files/images/icon-graph.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shared-files/images/show-desktop.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shared-files/images/widget-layer.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shared-files/scripts/lock-screen.sh exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shortcuts/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shortcuts/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/shortcuts/shortcuts.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/showDesktop/icon-active.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/showDesktop/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/showDesktop/showDesktop.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/show_mouse/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/show_mouse/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/show_mouse/show_mouse.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/slider/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/slider/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/slider/slider.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/stack/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/stack/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/stack/stack.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/stack/text-icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/stack/url-icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/switcher/broken.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/switcher/default.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/switcher/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/switcher/switcher.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/switcher/workspaces.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/systray/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/systray/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/systray/systray.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/terminal/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/terminal/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/terminal/terminal.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/tomboy/close.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/tomboy/icon.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/tomboy/note.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/tomboy/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/tomboy/tomboy.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/broken.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/0.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/1.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/10.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/11.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/12.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/13.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/14.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/15.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/16.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/17.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/18.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/19.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/2.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/20.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/21.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/22.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/23.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/24.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/25.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/26.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/27.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/28.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/29.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/3.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/30.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/31.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/32.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/33.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/34.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/35.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/36.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/37.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/38.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/39.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/4.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/40.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/41.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/42.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/43.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/44.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/45.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/46.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/47.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/5.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/6.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/7.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/8.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/9.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/na.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/preview exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/themes/Classic/readme exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weather/weather.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weblets/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weblets/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/weblets/weblets.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/wifi/default.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/wifi/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/wifi/no-signal.svg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/wifi/preview.jpg exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/wifi/wifi.conf exists in filesystem
    cairo-dock-plugins: /usr/share/cairo-dock/plug-ins/xfce-integration/icon.png exists in filesystem
    cairo-dock-plugins: /usr/share/locale/ar/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/ca/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/cs/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/de/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/el/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/en/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/es/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/et/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/eu/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/fr/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/he/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/hr/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/hu/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/id/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/it/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/ja/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/lt/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/nl/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/pl/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/pt/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/pt_BR/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/ru/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/sk/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/sr/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/sr@latin/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/sv/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/tr/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/uk/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/zh_CN/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/locale/zh_TW/LC_MESSAGES/cairo-dock-plugins.mo exists in filesystem
    cairo-dock-plugins: /usr/share/vala/vapi/CDApplet.deps exists in filesystem
    cairo-dock-plugins: /usr/share/vala/vapi/CDApplet.vapi exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by toni (2013-11-22 01:11:51)

  • HT5361 I want to permanently remove years old emails from my IMac Mountain Lion system.  How can I do this by year instead of laboriously doing it one message at a time?

    I want to permanently remove years old emails from my IMac Mountain Lion system.  How can I do so by year rather than slowly removing one message at a time?  Many thanks.

    Another option is to create a smart mailbox that includes emails with date received before a desired date.
    Then, select one message in the Smart Mailbox and cmd-A to select all. Then delete.

  • How do you remove a web address from compatibility view option using a script?

    How do you remove a web address from compatibility view option in IE using a script or a GPO? 
    Not seeing any options.
    Casey
    This topic first appeared in the Spiceworks Community

    luckyfromhialeah wrote:
    How do you remove a web site from popular list?
    If you mean from the Safari menubar item "Popular"
    Choose "Show All Bookmarks" from the Bookmark menu in the main menubar, or click the icon for that in Safari's menubar -
    The page that opens should show a list of Bookmarks. In the Left column, click the item under Collections named Bookmarks Bar.
    In the new view, locate the folder named Popular and click the reveal triagle to the left of its name - it will open and reveal all the items listed in Popular.
    Find the one you want to remove, click it once to select it, then press the Delete key on the keyboard.

  • How can i remove the spell check from my iMac, i tried system pref but it still autocorrects

    how can i remove the spell check from my iMac, i tried system pref but it still autocorrects

    Look at the Spelling settings in the Edit menu of the app that is doing the correcting.

  • How can i remove a hybrid mbr from my system drive so that Efi booted windows will install.

    Hi,
    i have just clean installed OSX lion on a freshly wiped drive in my macbook pro, using a bootable lion installer usb i used disk utility to partition my drive into a mac and a windows partition under the GPT/GUID partition scheme, i then proceeded to install lion onto the mac partition, and completed the set up, All Good...
    so i plug in my Windows 8 EFI Boot USB stick (Notice, EFI boot here, NOT BIOS EMULATION BOOT), shutdown and power on the mac and proceed to the boot picker by holding option, So far so good, the usb key is recognised and the system boots into the Windows Setup in EFI mode, Enter product key, accept terms and so on, Now i select my Windows partition and windows Says That it cant install to Partition 4 (EFI Partiton, OSX Lion, Lion recovery, Windows), It says that it can only install to a GPT / GUID based disk as expected...
    Why is there a protective MBR on my drive when i didnt add one, and i have not even touched bootcamp assistant...
    How can i remove this Protective MBR from my drive so that my disk is PURE GPT so windows can install?
    hours of googling has turned up nothing...
    System:
    Macbook Pro 13 inch Mid 2009
    Mac os: OSX Lion
    Version of windows trying to install: Windows 8 Release Preview 64 bit in EFI Mode

    Alexander, I would like to apologize for the TERRIBLE answers you have been given so far.  I too had this question, and so here is what my thoughts are, as maybe they might provide insight in leading you towards the answer.
    I am a *nix user in general, and thus own a mac and a thinkpad.  In fact I just got my thinkpad not too long ago.  As such, I transfered my faster hard drive to my faster computer, which made logcal sense to me.  Ergo, I moved my Mac drive to my lenovo.  On this drive I have a hybrid mbr which is no longer needed.  So my thoughts are this:
    From what I gather, the UEFI standard indicates that there is to be a protective MBR on all GPT systems.  This is so that when you use programs that are not GPT aware, they will see a presumably "full" drive and not think that they have the right to destroy your existing data in what it thinks is free space.  For instance, fdisk or other MBR only partitioning systems.  Thus, if your system has only a MBR with a single EE partition, it would be my guess that it was in fact not put there by installing Windows, but rather for the protection of your system. 
    If you are in my situation, where you do indeed have a hybrid MBR with written out partitions, it would be my guess that the only way to rid yourself of it is to do it manually.  The way I would recommend, is using gdisk (gpt fdisk).  It is command line only, but the syntax is pretty easy:
    $ sudo gdisk /dev/disk0
    Assuming you are using your mac partition and your primary hdd is disk0.  That will put you into an interactive session of gdisk.  Enter "?" for command options.  What you need is the "recovery and transformation" section which is the "r" I think.  From there I would say you probably want to create a new hybrid mbr (you will be using this to delete it).  When it asks you for the partitions you would like to include, just hit enter.  It should then ask you if you would like to create a protective entry for the remainder of the empty space.  This is what you want so tell it to do that.  After you are done, "w" will write and exit.  You may want to first use the "p" to print and ensure that you have what you want.  You can proabably check your work by using fdisk as so:
    $ sudo fdisk -l /dev/disk0
    I hope this helps you, and if you find that there is a better way, I hope you might enlighten this thread. 
    Cheers!
    PS The command examples, the $ is to indicate it is a bash/shell command as a non-root user, do not include it in the command.

  • How to remove an external drive from time machine backup

    In time machine I also backup to an external drive. I recently bought a new external drive and thats working fine. However, it still wants to backup to my previous drive which I dont want to use. In time machine preferences I see the old and new drive listed. Both are greyed out so I cannot deselect the older drive.
    Suggestions?

    mhattonmd wrote:
    So when I open time machine preferences I see time machine and both external drives listed. If I click on options I see both external drives but I cant select either as they are both greyed out.
    If you see them both listed on the initial screen of TM prefs, they are both selected as backup drives. They are not being backed up. They are being used by Time Machine as a destination. You need to use “Select Disk…” to remove the external drives from the destination drives. Select Disk does not choose the drives you want to back up. It chooses the drives you wan to back up to.

Maybe you are looking for

  • Safari and Twitter after Mountain Lion upgrade

    After upgrading to mountain lion, Safari doesn't remember me when logging into twitter.com. Once I log in, Safari asks if I want to allow other apps access to my twitter account. This happens every single time. Anyone else have this problem? Any solu

  • Having issue Grouping by Derived Column

    I have a query with a derived column defined as such: CASE                   WHEN (charindex('-', E1.Identification) - 1) <= 0 THEN                     E1.Identification                   ELSE                     substring(E1.Identification, 1, chari

  • QT 7.2 VOLUME DEAD & CHOPPY

    Things were running swimmingly, and then the volume completely stops working, stuck on the highest setting but muted. Also, the video pauses every so often and I have to click the time marker to egg it on. Any similar problems?

  • Help with set up! M Audio Firewire Solo with DX4 monitors

    I hope the user which has the same set up as me reads this... I just bought the 2 items above and have installed them. The interface is working fine since I downloaded latest drivers and now get sound from the headphones plugged in the front input Ho

  • Na pasta aparece como se várias mensangens estivessem não lidas, mas nao existe mensagens não lidas na pasta. Como corrigir isso?

    No nome da pasta o aviso que voce tem N mensagens nao lidas esta aparecendo em diversas pastas. Porém não existem mensagens nao lidas nas pastas. Alguém já passou por isso?