Datafile check command

what is command to check the datafiles of a database order by mount point

SQL> startup mount;
ORACLE instance started.
Database mounted.
SQL> select file#,name from v$datafile order by 1 desc;
SQL> /
FILE# NAME
5 D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\USERS01_REORG0.DBF
4 D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\DATA01.DBF
3 D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\SYSAUX01.DBF
2 D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\UNDOTBS01.DBF
1 D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\SYSTEM01.DBF
Elapsed: 00:00:00.32
Message was edited by:
user526020

Similar Messages

  • Error in opening datafile after use of DATAFILE RESIZE command

    Hi Friends,
    I am facing a strange problem here. We got a space problem yesterday ORA-01659: unable to allocate MINEXTENTS beyond 42 in tablespace and I increased the underlying datafiles using resize command. The datafiles were 1G earlier and I have increased them to 2G using the command
    ALTER DATABASE DATAFILE 4 resize 2G;
    It went fine and I saw the free space in my tablespace. But after this when I try to drop a table using a script which connects to this db as a schema owner ( the script just selects all tables from dictionary and drops it using 'drop table x cascade constraints' , It thorws the following error
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 262145
    On going through metalink, I found that there could be problems with ulimit parameter in the OS. My OS is SunOS 5.8 Generic_117350-28 sun4u sparc SUNW,Sun-Fire-480R and my oracle version is 10.2.0.1.0 . I have set the ulimit parameters for file size to unlimited for both hard limit and soft limit.
    airsun10 oracle [CBA11]:ulimit -aS
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) 8192
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:ulimit -aH
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:ulimit -Ss unlimited
    airsun10 oracle [CBA11]:ulimit -aS
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:ulimit -aH
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CBA11]:
    These solutions are suggested as per MOS note ID 271331.1. However the issue is still persisting. I am not getting any clue on whats happening. Any help is appreciated.
    Thanks
    SSN

    Thanks for your hint.
    yes, I did and the following is something more strange. I can't figure out !!
    The ulimit is only different for stack for hard and soft. file size is still unlimited. The same drop table doesn't allow me when I connect as schema owner directly !
    airsun10 oracle [CHANGEME]:whoami
    oracle
    airsun10 oracle [CHANGEME]:ulimit -aS
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) 8192
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    vmemory(kbytes) unlimited
    airsun10 oracle [CHANGEME]:ulimit -aH
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) unlimited
    coredump(blocks) unlimited
    nofiles(descriptors) 1024
    vmemory(kbytes) unlimited
    airsun10 oracle [CHANGEME]:cd drop_cts/
    /export/home/oracle/drop_cts
    airsun10 oracle [CHANGEME]:ls
    drop.sql on.lst run_drop.sql sql
    drop_objects recompile_objects run_dropObj.sql
    airsun10 oracle [CHANGEME]:cat drop.sql
    drop table BID_STATUSES cascade constraints;
    drop table BID_TYPES cascade constraints;
    drop table BID_TYPES_IN_SETS cascade constraints;
    airsun10 oracle [CHANGEME]:sqlplus cts_owner/cts_owner@CBA11
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Oct 8 10:02:06 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> @drop.sql
    drop table BID_STATUSES cascade constraints
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 183107
    drop table BID_TYPES cascade constraints
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 183107
    drop table BID_TYPES_IN_SETS cascade constraints
    ERROR at line 1:
    ORA-01116: error in opening database file 4
    ORA-01110: data file 4: '/SAN/p0/oradb/CBA11/data/avient01CBA11.dbf'
    ORA-27092: size of file exceeds file size limit of the process
    Additional information: 132104
    Additional information: 183107
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    airsun10 oracle [CHANGEME]:export ORACLE_SID=CBA11
    airsun10 oracle [CBA11]:sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Oct 8 10:02:29 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> conn cts_owner/cts_owner
    Connected.
    SQL> drop table BID_STATUSES cascade constraints;
    Table dropped.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    airsun10 oracle [CBA11]:

  • Plese check command upgrade from crs 10.1.0.4 to 10.2.0.4

    Is it right?
    # Upgrade from 10.1.0.4 to 10.2.0.1
    - Keep my old $CRS_HOME
    - DO not change .profile file
    Step1 : node 2
    1) copy "CRS 10.2.0.1 install files" to on node1
    2) log on my node1 as root user
    3) cd "CRS 10.2.0.1 install files" folders
    4) [run] sh preupdate.sh
    5) [type] ./runInstaller
    6) check "t o per f or m a r olling upgr a de by ins t a lling Or a cle Da t a ba s e 10g Relea s e 2 (10.2) Or a cle Clus t er wa r e on a s ubs et of clus t er member nodes ." option
    7) run $ CRS_home/install/root upgrade.sh
    Step2 : nodo2
    1) copy "CRS 10.2.0.1 install files" to on node2
    2) log on my node1 as root user
    3) cd "CRS 10.2.0.1 install files" folders
    4) [run] sh preupdate.sh
    5) [type] ./runInstaller
    6) check "t o per f or m a r olling upgr a de by ins t a lling Or a cle Da t a ba s e 10g Relea s e 2 (10.2) Or a cle Clus t er wa r e on a s ubs et of clus t er member nodes ." option
    7) run $ CRS_home/install/root upgrade.sh
    # Upgrade from 10.2.0.1 to 10.2.0.4
    Step1 : node1
    1) copy "CRS 10.2.0.4 patchset files" to on node1
    2) log on my node1 as root user
    3) cd "CRS 10.2.0.4 patchset files" folders
    4) [type] ./runInstaller
    - Welcome Screen
    Click Next
    - Specify File Locations
    choose the CRS_home and click Next (selection the CRS_home will automatically select and upgrade the CRS software)
    - Selected Nodes
    All nodes should be automatica lly selected click Next
    - Summary
    Click Next
    - Inst ll
    - End of Installation
    (in a new window the final patch install insructions will displayed)
    5) Shutdown the CRS daemons by issuing t he following comma nd:
    crsctl stop crs
    6) sh root102.sh
    Step1 : node2
    1) Shutdown the CRS daemons by issuing t he following comma nd:
    crsctl stop crs
    2) sh root102.sh

    Hello Marc,
    i think you are mixing up two things
    10.1.0.4 = 10g R1 with Patchset 4
    10.2.0.2 = 10g R2 with Patchset 2
    10.2.0.4 = 10g R2 with Patchset 4
    So you always upgrade from 10g R1 to 10g R2 .. and then is the question which Patchset for 10g R2.
    I would use 10gR2 with Patchset 4, because there are some nice features and not so many bug fixes to apply.
    Regards
    Stefan

  • Upgrade check: command-shift-double-click has no effect

    We're installing Adobe Creative Suite 2 Design Premium. We have what should be a valid serial number for a copy of Adobe Creative Suite 2 Premium. However, the installer terms it invalid.
    Someone else in my company just spend a long time with customer service trying the solution of activating the upgrade code window (where you can bypass the problem by confirming a number given by customer service). The instructions are to command-shift-double click on the Invalid Serial Number window. Well, he's done that clicking combination everywhere on the screen, and it's caused nothing to happen except sometimes selecting the text.
    Is there any other way to bring up that window? Does it require an active connection to customer service to even bring up the window in the first place? Is there any larger workaround we could try?

    Correct Lenoxus it is possible the unlocking function may no longer work under Mac OS 10.9.3.  Thank you for the update that our support team was able to generate a non-upgrade serial number after verifying the validity of your upgrade.
    For future viewers of this discussion you can contact our support team at Contact Customer Care.  I would also recommend reviewing Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html and ensuring your serial number is registered under your account.

  • Reg CHECK command

    Dear guys,
    I have piece of code below.
    MODULE 9201_PAI_SET_PSTYV INPUT.
    CHECK SY-UCOMM <> 'PRINT'
         OR SY-UCOMM <> 'CLEAR' OR SY-UCOMM <> 'CLEAR2'.
      CHECK ZSDORDER-MATNR <> SPACE AND ZSDORDER-CHECK = SPACE.
      DATA:
        W_MATNR LIKE ZSDORDER-MATNR.                 
      IF G_PSTYV <> SPACE.                    READ TABLE GTAB_DORDER INDEX SY-STEPL.
        ZSDORDER-PSTYV = GTAB_DORDER-PSTYV.
        IF SY-STEPL = SY-TFILL.
          CLEAR G_PSTYV.
        ENDIF.
      ELSE.
    ENDMODULE.
    Qn:
    I Could not understand what mean by CHECK statement( CHECK SY-UCOMM <> 'PRINT') here..
    Is this same as IF statement?
    Suggestion please..
    Ambichan

    Hi Ambi Chan,
    The main difference between a CHECK and an IF statement is that a CHECK statement stops the processing of all the subsequent line within a processing block, if the condition is negative. IF statement will stop the processing of the lines that are enclosed within the IF ENDIF block.
    PERFORM CHECK_TEXT.
    WRITE 'ABC'.
    FORM CHECK_TEXT.
      CHECK V_TEXT = 'ABC'.
      WRITE V_TEXT.
      L_TEXT = V_TEXT.
    ENDFORM.
    In the above code, both the 'WRITE V_TEXT.' and the 'L_TEXT = V_TEXT.' statement will not be executed if V_TEXT is not equal to 'ABC' and the processing continues after the PERFORM statement. Compare the same with an IF statement.
    PERFORM CHECK_TEXT.
    WRITE 'ABC'.
    FORM CHECK_TEXT.
      IF V_TEXT = 'ABC'.
        WRITE V_TEXT.
      ENDIF.
      L_TEXT = V_TEXT.
    ENDFORM.
    Here if V_TEXT is not ABC, then the 'WRITE V_TEXT' will not be executed, but the 'L_TEXT = V_TEXT' will be executed.
    Hope this helps,
    Srinivas

  • Switch datafile all

    Hi
    If I use "set new name" command in rman, do I always have to issue "switch datafile all;" command ?
    I`ve just used duplicate command to duplicate a database and used "set new name" in run block , I didnt specify "switch datafile all" command , and it worked without any issues

    Hi,
    We don't know your version, the commands you entered etc. but it's not always necessary. Perhaps you use DB_FILE_NAME_CONVERT for example ? In this case RMAN even does the "set new name" commands for you.
    A quick example with a single command "duplicate" (the initP102DUP.ora I created from the spfile of P102 includes DB_FILE_NAME_CONVERT
    and LOG_FILE_NAME_CONVERT) :
    rman target sys/XXXXXX@P102 auxiliary /                                                                                       
    Recovery Manager: Release 10.2.0.5.0 - Production on Sam. Févr. 5 09:25:01 2011
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    connecté à la base de données cible : P102 (DBID=1526015026)
    connexion établie avec la base de données auxiliaire : P102DUP (non montée)
    RMAN> duplicate target database to P102DUP;
    Démarrage de Duplicate Db dans 05/02/11
    utilisation du fichier de contrôle de la base de données cible au lieu du catalogue de récupération                                                                                  
    canal affecté : ORA_AUX_DISK_1                                                            
    canal ORA_AUX_DISK_1 : sid=155 typedev=DISK                                               
    contenu de script mémoire:
       set until scn  454134;
       set newname for datafile  1 to
    "/u02/oradata/P102DUP/system01.dbf";
       set newname for datafile  2 to   
    "/u02/oradata/P102DUP/undotbs01.dbf";
       set newname for datafile  3 to    
    "/u02/oradata/P102DUP/sysaux01.dbf";
       set newname for datafile  4 to    
    "/u02/oradata/P102DUP/users01.dbf"; 
       restore                           
       check readonly                    
       clone database                    
    exécution de script mémoire          
    exécution de la commande : SET until clause
    exécution de la commande : SET NEWNAME
    exécution de la commande : SET NEWNAME
    exécution de la commande : SET NEWNAME
    exécution de la commande : SET NEWNAME
    Démarrage de restore dans 05/02/11
    utilisation du canal ORA_AUX_DISK_1
    canal ORA_AUX_DISK_1 : restauration du fichier de données 00001
    copie du fichier de données en entrée recid=5 horodatage=741817866 nom=/u01/app/oracle/product/10.2.0/db_1/dbs/data_D-P102_I-1526015026_TS-SYSTEM_FNO-1_06m3eff4                     
    destination de restauration du fichier de données 00001: /u02/oradata/P102DUP/system01.dbf
    canal ORA_AUX_DISK_1 : copie du fichier de données 00001 copiée                           
    fichier de sortie=/u02/oradata/P102DUP/system01.dbf                                       
    canal ORA_AUX_DISK_1 : restauration du fichier de données 00002                           
    copie du fichier de données en entrée recid=7 horodatage=741817901 nom=/u01/app/oracle/product/10.2.0/db_1/dbs/data_D-P102_I-1526015026_TS-UNDOTBS1_FNO-2_08m3efhb                   
    destination de restauration du fichier de données 00002: /u02/oradata/P102DUP/undotbs01.dbf
    canal ORA_AUX_DISK_1 : copie du fichier de données 00002 copiée                           
    fichier de sortie=/u02/oradata/P102DUP/undotbs01.dbf                                      
    canal ORA_AUX_DISK_1 : restauration du fichier de données 00003                           
    copie du fichier de données en entrée recid=6 horodatage=741817895 nom=/u01/app/oracle/product/10.2.0/db_1/dbs/data_D-P102_I-1526015026_TS-SYSAUX_FNO-3_07m3efgh                     
    destination de restauration du fichier de données 00003: /u02/oradata/P102DUP/sysaux01.dbf
    canal ORA_AUX_DISK_1 : copie du fichier de données 00003 copiée                           
    fichier de sortie=/u02/oradata/P102DUP/sysaux01.dbf                                       
    canal ORA_AUX_DISK_1 : restauration du fichier de données 00004                           
    copie du fichier de données en entrée recid=8 horodatage=741817903 nom=/u01/app/oracle/product/10.2.0/db_1/dbs/data_D-P102_I-1526015026_TS-USERS_FNO-4_09m3efhe                      
    destination de restauration du fichier de données 00004: /u02/oradata/P102DUP/users01.dbf 
    canal ORA_AUX_DISK_1 : copie du fichier de données 00004 copiée                           
    fichier de sortie=/u02/oradata/P102DUP/users01.dbf                                        
    Fin de restore dans 05/02/11                                                              
    instruction SQL : CREATE CONTROLFILE REUSE SET DATABASE "P102DUP" RESETLOGS ARCHIVELOG    
      MAXLOGFILES     16                                                                      
      MAXLOGMEMBERS      3                                                                    
      MAXDATAFILES      100                                                                   
      MAXINSTANCES     8                                                                      
      MAXLOGHISTORY      292                                                                  
    LOGFILE                                                                                  
      GROUP  1 ( '/u02/oradata/P102DUP/redo01.rdo' ) SIZE 50 M  REUSE,                        
      GROUP  2 ( '/u02/oradata/P102DUP/redo02.rdo' ) SIZE 50 M  REUSE,                        
      GROUP  3 ( '/u02/oradata/P102DUP/redo03.rdo' ) SIZE 50 M  REUSE                         
    DATAFILE                                                                                 
      '/u02/oradata/P102DUP/system01.dbf'                                                     
    CHARACTER SET WE8ISO8859P1                                                               
    contenu de script mémoire:
       switch clone datafile all;
    exécution de script mémoire 
    fichier de données 2 changé en copie de fichier de données
    copie du fichier de données en entrée recid=1 horodatage=742296381 nom=/u02/oradata/P102DUP/undotbs01.dbf                                                                            
    fichier de données 3 changé en copie de fichier de données                                
    copie du fichier de données en entrée recid=2 horodatage=742296381 nom=/u02/oradata/P102DUP/sysaux01.dbf                                                                             
    fichier de données 4 changé en copie de fichier de données                                
    copie du fichier de données en entrée recid=3 horodatage=742296381 nom=/u02/oradata/P102DUP/users01.dbf                                                                              
    contenu de script mémoire:
       set until scn  454134;
       recover               
       clone database        
        delete archivelog
    exécution de script mémoire
    exécution de la commande : SET until clause
    Démarrage de recover dans 05/02/11
    utilisation du canal ORA_AUX_DISK_1
    démarrage de la récupération après défaillance matérielle
    journal d'archivage, thread 1 séquence 3 déjà sur disque en tant que fichier /u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_741731765.dbf
    journal d'archivage, thread 1 séquence 4 déjà sur disque en tant que fichier /u01/app/oracle/product/10.2.0/db_1/dbs/arch1_4_741731765.dbf
    journal d'archivage nom=/u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_741731765.dbf thread=1 séquence=3
    journal d'archivage nom=/u01/app/oracle/product/10.2.0/db_1/dbs/arch1_4_741731765.dbf thread=1 séquence=4
    récupération après défaillance matérielle terminée, temps écoulé : 00:00:01
    Fin de recover dans 05/02/11
    contenu de script mémoire:
       shutdown clone;
       startup clone nomount ;
    exécution de script mémoire
    base de données ouverte
    Fin de Duplicate Db dans 05/02/11Best regards
    Phil
    Edited by: Philippe Florent on Feb 5, 2011 9:36 AM -- typo

  • Error while deploying : DCM command did not complete successfully (-8)

    Hi Friends:
    I am getting error while deploying the application on Oracle Portal AS. Following are the version details:
    Portal 10.1.4 ; Portal AS 10.1.2.0.2 ; JDK 1.5.x ; Jdeveloper 10.1.3.3.0
    I am able to deploy same on my Standalone OC4J Server.
    Portal Server connection is Successful. Application i am trying to deploy is simple JSF application.
    The deployment log is as follow:
    ---- Deployment started. ---- Aug 21, 2008 10:10:26 AM
    Target platform is Oracle Application Server 10g 10.1.2 (Windows) (PortalASConnection1).
    Wrote WAR file to C:\Jdeveloper\jdev\mywork\MyApplication\ViewController\deploy\myApp1.war
    Wrote EAR file to C:\Jdeveloper\jdev\mywork\MyApplication\ViewController\deploy\myApp1.ear
    Invoking DCM servlet client...
    C:\Jdeveloper\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\Jdeveloper\jdev\lib\oc4j_remote_deploy.jar http://01HW180457:18102/Oc4jDcmServletAPI/ ias_admin **** redeploy D:\OraHome_3 C:\Jdeveloper\jdev\mywork\MyApplication\ViewController\deploy\myApp1.ear myApp1
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy D:\OraHome_3 C:\Jdeveloper\jdev\mywork\MyApplication\ViewController\deploy\myApp1.ear myApp1 UNDEFINED
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = ac11c08f46b696f8630ce3484fda975697914ab9c18a
    Please, wait for command to finish...
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=ac11c08f46b696f8630ce3484fda975697914ab9c18a
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (-8)
    #### HTTP return code was -8
    Exit status of DCM servlet client: -8
    Elapsed time for deployment: 14 seconds
    #### Deployment incomplete. #### Aug 21, 2008 10:10:39 AM
    I will appriciate to hear from you.
    Have A Nice Time!
    Regards,
    Kevin

    Refer Note:373056.1 on MetaLink.
    Thanks
    Shail

  • URGENT -1 from DCM Command  on OBE deploy  === can not deploy/

    Attempting to complete the OBE "Deploying J2EE and ADF Applications
    http://www.oracle.com/technology/obe/obe9051jdev/deployToAppServer/lesson_Deployment.htm
    in order to prove to upper management that it is "easy" to develop on JDEV 9.0.5 build 1618 and deploy to Oc4j 9.0.4
    Compiles clean
    Runs like a champ on the embedded oc4j
    When i try to deploy the J2EE Application to oracle 9.0.4 getting a -1 from Oc4jDcmServlet <#### Deployment incomplete. #### >
    < see attached >
    when i look at the 9.0.4 Instance's XML log i get:
    java.lang.Exception: can not deploy/undeploy to a disabled component: home
    <see attached >
    i have checked the home component. there is no way to enable / disable it just have start and stop and it is in the start state.
    please help.
    JDEV log
    Invoking DCM servlet client...
    C:\Java\j2sdk1.4.2_06\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\Jdeveloper\jdev\lib\oc4j_remote_deploy.jar http://jstoll-xp-lt:1810/Oc4jDcmServletAPI/ ias_admin **** redeploy C:\Ora10G.9.0.4\InfraEngine C:\Jdeveloper\jdev\mywork\deploySamples\deployment_j2ee\View\deploy\application1.ear hr
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy C:\Ora10G.9.0.4\InfraEngine C:\Jdeveloper\jdev\mywork\deploySamples\deployment_j2ee\View\deploy\application1.ear hr UNDEFINED
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = 0a0a0a0a712594fbb82a5544f92a4d1a95f5dc99c4e
    Please, wait for command to finish...
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=0a0a0a0a712594fbb82a5544f92a4d1a95f5dc99c4e
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=0a0a0a0a712594fbb82a5544f92a4d1a95f5dc99c4e
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=0a0a0a0a712594fbb82a5544f92a4d1a95f5dc99c4e
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=0a0a0a0a712594fbb82a5544f92a4d1a95f5dc99c4e
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (-1)
    #### HTTP return code was -1
    Exit status of DCM servlet client: -1
    Elapsed time for deployment: 48 seconds
    #### Deployment incomplete. #### Oct 31, 2005 3:15:43 PM
    log.xml
    Log Entry: October 31, 2005 3:15:38 PM EST
    Component DCM
    Message Type Error
    Module ID oracle/defaultLogger/ExceptionLogger
    User ID SYSTEM
    Host Name jstoll-xp-lt
    Host Network Address 10.10.10.10
    Process/Thread ID null-Thread[Deamon Worker for TaskMaster of iAS instance at: C:\Ora10G.9.0.4\InfraEngine JVM Id = 763f5d.107482d4e1c.-8000,5,main]
    Message Level 1
    Execution Context ID 10.10.10.10:57042:1130789725003:0
    Message Text
    Remote Execute failed:
    Supplemental Text
    java.lang.Exception: can not deploy/undeploy to a disabled component: home
    at oracle.ias.sysmgmt.task.TaskMaster.internal_evaluate(Unknown Source)
    at oracle.ias.sysmgmt.task.RemoteEvaluate.execCommand(Unknown Source)
    at oracle.ias.sysmgmt.task.DaemonWorker.run(Unknown Source)

    DCM command did not complete successfully (-1)
    DCM command did not complete successfully (-1)

  • Why is Adobe Muse not spell checking?

    So I am building a site on Adobe Muse CC and I noticed the program is not spell checking as I write.  I purposely misspelled words to see if the spell checker would put the red squiggly line underneath misspelled words but it doesn't.  I have searched for a spell checker command everywhere on the program with no luck.  Don't know why a spell checker is so hard to find when that should be one of the easiest commands to find.  PLEASE HELP!!!

    " I have Dynamic Spelling checked and my User Dictionary is set to English."
    That is not enough.
    There are different places, where you can determine the language:
    Global for the document: –> Site properties
    For one page: –> Page properties
    For one text frame: –> Right click onto the text frame and choose "language".
    By the way: It is not really helpful and quite confusing, if you write in your first posting:
    "I have searched for a spell checker command everywhere on the program with no luck."
    And when somebody shows you, where the spell checker command can be found:
    "I wasn't an absolute idiot but thanks for pointing out the obvious."

  • How can I reduce size of the SYSTEM datafile?

    Hi All,
    I recently installed Oracle 9i Enterprise addition on Windows XP Pro. Everything went smoothly. However, I foolishly created a database with large space requirements in the default tablespace (SYSTEM) and this caused the datafile for the SYSTEM tables space to grow to 8 Gig. I dropped the tables and tried to shrink the datafile with the 'alter database datafile resize' command but the command failed indicating that the tablespace had data byond the reize amount. However, this is claerly not true since the OEM indicates that the tablespace is only 4% utilized.
    How can I reset the high water mark for the SYSTEM tablespace so that I can resize the datafile?

    Hi All,
    I recently installed Oracle 9i Enterprise addition on Windows XP Pro. Everything went smoothly. However, I foolishly created a database with large space requirements in the default tablespace (SYSTEM) and this caused the datafile for the SYSTEM tables space to grow to 8 Gig. I dropped the tables and tried to shrink the datafile with the 'alter database datafile resize' command but the command failed indicating that the tablespace had data byond the reize amount. However, this is claerly not true since the OEM indicates that the tablespace is only 4% utilized.
    How can I reset the high water mark for the SYSTEM tablespace so that I can resize the datafile? at one time (perhaps during the install) the extents may have been used and although you see only 4% used those extents have been allocated nonetheless.
    you'll have to rebuild the db if you can't resize the system ts
    to reset the high water mark you would have to truncate the system tables, don't think you want to do that
    steve

  • Authorization Check on Radio Button

    Hi,
    I have a custom report which has a radio button. Can I provide the authorization on this radio button, meaning only selected no. of users can run this report with radio button checked. I know it's possible through maintaining a list of users in custom table, But I want to check if we can do it using authorization object/group etc...

    Birendra, you're absolutely correct that we need to consider future maintenance efforts. But this is exactly a weak side of the parameter approach that you've suggested. The jet analogy is impressive, but way out of proportion in this case.
    Using authority check command in ABAP code and modifying screen elements is not hard-coding. The parameter approach also requires writing some code, so it has no advantage here.
    Also it requires someone (a Basis admin?) to update the user profile and a table entry that you've mentioned. To use the standard authorizations, only one authorization object will need to be created (although it may even be possible to use another, existing object if it's the same authorization level). It won't take more space or more time to create than an SM30 entry. Updating the roles might be more of a hassle than updating the user parameter, but the difference can hardly be considered significant and it's a one-time thing anyway.
    It is a matter of preference whether to hide a control, disable it or display a message. (By the way, in many standard transactions you'll find that controls or menu options are hidden/disabled based on authorization, so it is nothing exotic.) But I stand by my suggestion of using standard authorization check functionality specifically because it makes the future maintenance easier.
    1) Basis admins most likely already maintain some document regarding the role assignment. It might be actually easier to them to maintain the roles than to keep track of the additional profile parameter and remember it in future.
    2) Imagine years from now you're gone and all the new people are maintaining the system. The user gets a 'no authorization' message and, naturally, contacts a system admin. Again, naturally, admin will check security trace. Now guess what - your parameter thingy cannot be tracked anywhere. No one knows about it and it will take an ABAPer to figure this out.
    With standard approach it will only take a second to run SU53 and a few minutes to resolve an issue by a Basis admin. Additionally, authorization objects have 'where used' button, so it would be easy to check if and where the object is used (e.g. if the report has been changed/deleted it will be easy to spot the 'orphaned' object). With the profile parameter sooner or later someone will have to wonder what the heck it is for and might accidentally delete it. By the way, sometimes users actually have access to their own parameters, so it's not a very secure option either.
    I understand you mean well, but, unfortunately, in my work quite frequently I have to deal with some things that were developed by well-meaining consultants who overlooked some long-term effects of their approach.

  • ITunes database integrity check?

    In iTunes I have a few ! that have appeared in the first column indicating iTunes can't find the file. So far I have found three folders (albums) that are missing from my music library disc and I don't understand how or when they dissappeared. I haven't found any individual missing files yet, just missing whole folders. It appears iTunes doesn't update the ! indicator until it has some reason to actually go open the file. Is there a way to automate this? So far I've been looking at each song with Command-I to check the Where info under Summary, or selecting the first song of an album and using Command-R to view the songs in finder. This is going to take a long time with nearly 8000 songs in my library. I'm trying to get an handle on the extent of the problem. I am careful to only use iTunes to manage the library (I don't move files around with finder). My library is on an external Firewire drive. Ideally, I would like there to be an "iTunes database integrity check" command.

    The MSDN documentation says "RESTORE VERIFYONLY" command does not verify whether the structure of the data contained within the backup set is correct. Does it mean the restore command will not able to detect corruption in the database and I just need to
    restore each of the backs starting from the latest to see if integrity check fails after restore ? OR RESTORE VERIFYONLY will confirm if the database is un-corrupted ?
    As the documentation suggests, RESTORE VERIFYONLY checks the structure of the backup but not the database itself.  You'll need to restore the backup to check the database consistency.
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Can't run compiz-check script or any application ?!!!

    hi all
    I am new user in Arch .
    I am trying to install the Gpointing app so that I can set up the Cursor sensitivity in KDE but I get this:
    1st :
    ./configure >> and the result is bellow
    [yasser@(none) gpointing-device-settings-1.5.1]$ sudo ./configure
    Password:
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking how to create a pax tar archive... gnutar
    checking how to create a pax tar archive... (cached) gnutar
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking dependency style of gcc... (cached) gcc3
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for ar... ar
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking for pkg-config... /usr/bin/pkg-config
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking dependency style of gcc... (cached) gcc3
    checking how to run the C preprocessor... gcc -E
    checking whether make sets $(MAKE)... (cached) yes
    checking whether NLS is requested... yes
    checking for intltool >= 0.35.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.16.1
    checking for XML::Parser... ok
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for locale.h... (cached) yes
    checking for LC_MESSAGES... (cached) yes
    checking for libintl.h... (cached) yes
    checking for ngettext in libc... (cached) yes
    checking for dgettext in libc... (cached) yes
    checking for bind_textdomain_codeset... (cached) yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... (cached) yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for pkg-config... (cached) /usr/bin/pkg-config
    checking for GTK+ - version >= 2.14.0... yes (version 2.24.11)
    checking for glib-genmarshal... /usr/bin/glib-genmarshal
    checking for glib-mkenums... /usr/bin/glib-mkenums
    checking pkg-config is at least version 0.9.0... yes
    checking for GNOME_SETTINGS_DAEMON... yes
    checking for GCONF2... yes
    Using config source xml:merged:/etc/gconf/gconf.xml.defaults for schema installation
    Using $(sysconfdir)/gconf/schemas as install directory for schema files
    checking for gconftool-2... /usr/bin/gconftool-2
    checking for XINPUT... yes
    checking for X11... yes
    checking for an ANSI C-conforming const... yes
    checking whether to use Cutter... (cached) auto
    checking for CUTTER... no
    checking for lcov... no
    checking for genhtml... no
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating modules/Makefile
    config.status: creating modules/common/Makefile
    config.status: creating modules/gnome-settings-daemon-plugins/Makefile
    config.status: creating data/Makefile
    config.status: creating data/gpointing-device-settings.desktop.in
    config.status: creating test/Makefile
    config.status: creating doc/Makefile
    config.status: creating po/Makefile.in
    config.status: creating libgpointing-device-settings.pc
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing default-2 commands
    config.status: executing po/stamp-it commands
    [yasser@(none) gpointing-device-settings-1.5.1]$ make
    make all-recursive
    make[1]: Entering directory `/home/yasser/gpointing-device-settings-1.5.1'
    Making all in src
    make[2]: Entering directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    CCLD gpointing-device-settings
    /usr/bin/ld: cannot open output file .libs/gpointing-device-settings: Permission denied
    collect2: error: ld returned 1 exit status
    make[2]: *** [gpointing-device-settings] Error 1
    make[2]: Leaving directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/yasser/gpointing-device-settings-1.5.1'
    make: *** [all] Error 2
    [yasser@(none) gpointing-device-settings-1.5.1]$ make install
    Making install in src
    make[1]: Entering directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    CCLD gpointing-device-settings
    /usr/bin/ld: cannot open output file .libs/gpointing-device-settings: Permission denied
    collect2: error: ld returned 1 exit status
    make[1]: *** [gpointing-device-settings] Error 1
    make[1]: Leaving directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    make: *** [install-recursive] Error 1
    [yasser@(none) gpointing-device-settings-1.5.1]$ ?????
    bash: ?????: command not found
    [yasser@(none) gpointing-device-settings-1.5.1]$ clear
    [yasser@(none) gpointing-device-settings-1.5.1]$ ./configure
    ./configure: line 2100: config.log: Permission denied
    ./configure: line 2110: config.log: Permission denied
    [yasser@(none) gpointing-device-settings-1.5.1]$ sudo ./configure
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking how to create a pax tar archive... gnutar
    checking how to create a pax tar archive... (cached) gnutar
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking dependency style of gcc... (cached) gcc3
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for ar... ar
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking for pkg-config... /usr/bin/pkg-config
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) gcc3
    checking dependency style of gcc... (cached) gcc3
    checking how to run the C preprocessor... gcc -E
    checking whether make sets $(MAKE)... (cached) yes
    checking whether NLS is requested... yes
    checking for intltool >= 0.35.0... 0.50.2 found
    checking for intltool-update... /usr/bin/intltool-update
    checking for intltool-merge... /usr/bin/intltool-merge
    checking for intltool-extract... /usr/bin/intltool-extract
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for perl... /usr/bin/perl
    checking for perl >= 5.8.1... 5.16.1
    checking for XML::Parser... ok
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking for LC_MESSAGES... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking for ngettext in libc... yes
    checking for dgettext in libc... yes
    checking for bind_textdomain_codeset... yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for locale.h... (cached) yes
    checking for LC_MESSAGES... (cached) yes
    checking for libintl.h... (cached) yes
    checking for ngettext in libc... (cached) yes
    checking for dgettext in libc... (cached) yes
    checking for bind_textdomain_codeset... (cached) yes
    checking for msgfmt... (cached) /usr/bin/msgfmt
    checking for dcgettext... (cached) yes
    checking if msgfmt accepts -c... yes
    checking for gmsgfmt... (cached) /usr/bin/msgfmt
    checking for xgettext... (cached) /usr/bin/xgettext
    checking for pkg-config... (cached) /usr/bin/pkg-config
    checking for GTK+ - version >= 2.14.0... yes (version 2.24.11)
    checking for glib-genmarshal... /usr/bin/glib-genmarshal
    checking for glib-mkenums... /usr/bin/glib-mkenums
    checking pkg-config is at least version 0.9.0... yes
    checking for GNOME_SETTINGS_DAEMON... yes
    checking for GCONF2... yes
    Using config source xml:merged:/etc/gconf/gconf.xml.defaults for schema installation
    Using $(sysconfdir)/gconf/schemas as install directory for schema files
    checking for gconftool-2... /usr/bin/gconftool-2
    checking for XINPUT... yes
    checking for X11... yes
    checking for an ANSI C-conforming const... yes
    checking whether to use Cutter... (cached) auto
    checking for CUTTER... no
    checking for lcov... no
    checking for genhtml... no
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating modules/Makefile
    config.status: creating modules/common/Makefile
    config.status: creating modules/gnome-settings-daemon-plugins/Makefile
    config.status: creating data/Makefile
    config.status: creating data/gpointing-device-settings.desktop.in
    config.status: creating test/Makefile
    config.status: creating doc/Makefile
    config.status: creating po/Makefile.in
    config.status: creating libgpointing-device-settings.pc
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing default-1 commands
    config.status: executing default-2 commands
    config.status: executing po/stamp-it commands.
    2nd >>> make .
    [yasser@(none) gpointing-device-settings-1.5.1]$ make
    make all-recursive
    make[1]: Entering directory `/home/yasser/gpointing-device-settings-1.5.1'
    Making all in src
    make[2]: Entering directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    CCLD gpointing-device-settings
    /usr/bin/ld: cannot open output file .libs/gpointing-device-settings: Permission denied
    collect2: error: ld returned 1 exit status
    make[2]: *** [gpointing-device-settings] Error 1
    make[2]: Leaving directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/yasser/gpointing-device-settings-1.5.1'
    make: *** [all] Error 2.
    3rd >> make install
    [yasser@(none) gpointing-device-settings-1.5.1]$ make install
    Making install in src
    make[1]: Entering directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    CCLD gpointing-device-settings
    /usr/bin/ld: cannot open output file .libs/gpointing-device-settings: Permission denied
    collect2: error: ld returned 1 exit status
    make[1]: *** [gpointing-device-settings] Error 1
    make[1]: Leaving directory `/home/yasser/gpointing-device-settings-1.5.1/src'
    make: *** [install-recursive] Error 1.
    I know this problem might be a silly problem for u guys but I really need to decrease the Cursor sensitivity because it's annoying .
    Moderator edit: Changed the [ quote ] tags to [ code ] ones for you to keep this readable. Please do so yourself in future. -- bernarcher
    Last edited by bernarcher (2012-09-02 16:44:51)

    I don't think you need to compile and install this yourself as it appears to already be in the AUR. You should download an AUR helper and use it to install gpointing-device-settings.
    Example using packer:
    sudo pacman -S wget # wget is for downloading packer, you can download it manually if you'd like
    mkdir ~/builds # Where you want to put packer's files, change if you'd like
    cd ~/builds
    wget http://aur.archlinux.org/packages/pa/packer/packer.tar.gz
    makepkg -s # Make sure you have the base-devel group installed
    sudo pacman -U packer
    packer -S gpointing-device-settings
    If this solves the problem, remember to edit your original post and add [Solved] to the beginning of the title.
    Last edited by Mindstormscreator (2012-09-02 18:52:08)

  • System Utilities Check failed while rapid installation

    Hi All,
    Following error is encountered while installing Oracle Applications 11.5.10
    System Utilities Check
    command : cmd.exe /c C:\Stage\Stage11i\startCD\Disk1\rapidwiz\bin\adchkutl.cmd C:\Program Files\MKS Toolkit C:\VC
    C:\Stage\Stage11i\startCD\Disk1\rapidwiz>echo off
    C:\WINDOWS\system32/cmd.exe
    'which' command is available.
    C:\WINDOWS\system32/gnumake.exe
    'gnumake' is available.
    C:\WINDOWS\system32/cc.exe
    'cc' is available.
    'link' is not available.
    ERRORCODE = 1 ERRORCODE_END
    RW-50011: Error: - System Utilities Availability test has returned an error: 1
    what could be the reason ?
    Regards,
    Neeraj

    Hi Andrew,
    Thanks for the article.
    Now I want to do fresh installation of MKS toolkit and all other stuff for sucessfull installation of Oracle Application.
    But during the installation of mks toolkit, I am unable to specify the path for installation i.e., c:\MKS , it is saying that " An existing installation is detected. The install location cannot be changed."
    But I have uninstall it through control panel->add and remove programs and manually cleaned all the physical files but still error encountered.
    Please guide me how to proceed .
    Regards,
    Neeraj

  • How can I Spell Check with an Action?

    Hi -
    I can use the Spell Checking command while I'm recording a new Action but when I play that
    Action it gets stuck on the first step... "Spell Check in contents of all text layer".  I didn't write that first step - PShop did while I was recording the Action.  Whe I try to use the Action I get an alert ... "The object "in contents of all text layer" is not currently available."
    If I hit Stop - the Action stops.
    If I hit Continue - the Action stops.
    So how do I Spell check using an Action?  I plan to use this in a batch process. I have about 300 files and automating this would be great.
    TIA any insight,
    JL
    --Photoshop CS5, Win 7

    See if using Insert Menu Item works for the spell check.

Maybe you are looking for

  • 40 gig video from my camcorder becomes 117 gigs in iMovie

    I have a Cannon Vixia HG20 with about two hours of HD video on it. It's only taking up 40 gigs of my camcorder's hard drive. When I tried to import these videos to iMovie, I found out that the Movies\Movies Events\ folder became a whopping 117 gigs.

  • Problem in download netweaver

    Dear Sir, I cannot download netweaver from this website. Is there any setup that must be done before download ? Thanks Sincerely David

  • IPad & parallax - Is this a bug?

    Is this a bug or am I doing something wrong in Muse? On my iPad when I am on this page of my site I get this white bar with text on the top and a blank white bar down the right side (highlighted with green arrows). It is not like this on my desktop.

  • FlexVPN with F-VRF and multiple tunnels

    Hi There, I have a burning question and initially need to understand the possibility of the following scenario, below is a diagram of a single point-to-point connection used for proof of concept. The Hub router acts as a local RADIUS and is to issue

  • Input  as a command line

    Hello:::: How to take an input as a command line using BufferedReader class??? I shall be highly grateful to you, if you kindly give a proper example. Thanking you, Anirban Sinha