move the lob segment fails with invalid identifier

Why this fails:

SQL > desc APPLSYS. WF_INBOUND_TABLE
Name Null? Type
----------------------------------------- -------- ----------------------------
Q_NAME VARCHAR2 (30)
MSGID NOT NULL RAW (16)
CORRID'ART VARCHAR2 (128)
PRIORITY NUMBER
NUMBER OF THE STATE
TIMESTAMP DELAY (6)
NUMBER OF EXPIRY
TIME_MANAGER_INFO TIMESTAMP (6)
NUMBER OF LOCAL_ORDER_NO
NUMBER OF CHAIN_NO
NUMBER OF THE CSCN
DSCN NUMBER
ENQ_TIME TIMESTAMP (6)
NUMBER OF ENQ_UID
ENQ_TID VARCHAR2 (30)
DEQ_TIME TIMESTAMP (6)
NUMBER OF DEQ_UID
DEQ_TID VARCHAR2 (30)
NUMBER OF RETRY_COUNT
EXCEPTION_QSCHEMA VARCHAR2 (30)
EXCEPTION_QUEUE VARCHAR2 (30)
NUMBER OF STEP_NO
NUMBER OF RECIPIENT_KEY
DEQUEUE_MSGID RAW (16)
USER_DATA SYSTEM. WF_PAYLOAD_T
SENDER_NAME VARCHAR2 (30)
SENDER_ADDRESS VARCHAR2 (1024)
NUMBER OF SENDER_PROTOCOL
ANYDATA USER_PROP


SQL > alter table APPLSYS. WF_INBOUND_TABLE move TABLESPACE APPS_TS_TX_DATA;

Modified table.

SQL > ALTER TABLE APPLSYS. WF_INBOUND_TABLE MOVE LOB (USER_PROP) STORE DID (TABLESPACE APPS_TS_TX_DATA);
*
ERROR on line 1:
ORA-00904: "USER_PROP": invalid identifier

user600570 wrote:
Well, no matter what the type is be, how to move to this segment?

The segment does not move when the corresponding table is moved to new tablespace?
At least that's what I see.

SQL> select * from v$version ;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
PL/SQL Release 10.2.0.4.0 - Production
CORE     10.2.0.4.0     Production
TNS for Solaris: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - Production

SQL> create table t nologging as select * from applsys.wf_inbound_table where 1 = 2 ;

Table created.

SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;

DBMS_METADATA.GET_DDL('TABLE','T')
--------------------------------------------------------------------------------

  CREATE TABLE "APPS"."T"
   (     "Q_NAME" VARCHAR2(30),
     "MSGID" RAW(16),
     "CORRID" VARCHAR2(128),
     "PRIORITY" NUMBER,
     "STATE" NUMBER,
     "DELAY" TIMESTAMP (6),
     "EXPIRATION" NUMBER,
     "TIME_MANAGER_INFO" TIMESTAMP (6),
     "LOCAL_ORDER_NO" NUMBER,
     "CHAIN_NO" NUMBER,
     "CSCN" NUMBER,
     "DSCN" NUMBER,
     "ENQ_TIME" TIMESTAMP (6),
     "ENQ_UID" NUMBER,
     "ENQ_TID" VARCHAR2(30),
     "DEQ_TIME" TIMESTAMP (6),
     "DEQ_UID" NUMBER,
     "DEQ_TID" VARCHAR2(30),
     "RETRY_COUNT" NUMBER,
     "EXCEPTION_QSCHEMA" VARCHAR2(30),
     "EXCEPTION_QUEUE" VARCHAR2(30),
     "STEP_NO" NUMBER,
     "RECIPIENT_KEY" NUMBER,
     "DEQUEUE_MSGID" RAW(16),
     "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
     "SENDER_NAME" VARCHAR2(30),
     "SENDER_ADDRESS" VARCHAR2(1024),
     "SENDER_PROTOCOL" NUMBER,
     "USER_PROP" "SYS"."ANYDATA"
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "APPLSYSD"
 OPAQUE TYPE "USER_PROP" STORE AS LOB (
  ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
  CACHE
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))

SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
  2  where table_name = 'T' ;

OWNER                          TABLE_NAME
------------------------------ ------------------------------
COLUMN_NAME
-----------------------------------------------------------------------------------------------------------------------------------
SEGMENT_NAME                   TABLESPACE_NAME
------------------------------ ------------------------------
APPS                           T
USER_PROP
SYS_LOB0000365381C00035$$      APPLSYSD

SQL> alter table t move tablespace APPLSYSX ;

Table altered.

SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;

DBMS_METADATA.GET_DDL('TABLE','T')
--------------------------------------------------------------------------------

  CREATE TABLE "APPS"."T"
   (     "Q_NAME" VARCHAR2(30),
     "MSGID" RAW(16),
     "CORRID" VARCHAR2(128),
     "PRIORITY" NUMBER,
     "STATE" NUMBER,
     "DELAY" TIMESTAMP (6),
     "EXPIRATION" NUMBER,
     "TIME_MANAGER_INFO" TIMESTAMP (6),
     "LOCAL_ORDER_NO" NUMBER,
     "CHAIN_NO" NUMBER,
     "CSCN" NUMBER,
     "DSCN" NUMBER,
     "ENQ_TIME" TIMESTAMP (6),
     "ENQ_UID" NUMBER,
     "ENQ_TID" VARCHAR2(30),
     "DEQ_TIME" TIMESTAMP (6),
     "DEQ_UID" NUMBER,
     "DEQ_TID" VARCHAR2(30),
     "RETRY_COUNT" NUMBER,
     "EXCEPTION_QSCHEMA" VARCHAR2(30),
     "EXCEPTION_QUEUE" VARCHAR2(30),
     "STEP_NO" NUMBER,
     "RECIPIENT_KEY" NUMBER,
     "DEQUEUE_MSGID" RAW(16),
     "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
     "SENDER_NAME" VARCHAR2(30),
     "SENDER_ADDRESS" VARCHAR2(1024),
     "SENDER_PROTOCOL" NUMBER,
     "USER_PROP" "SYS"."ANYDATA"
   ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
  TABLESPACE "APPLSYSX"
 OPAQUE TYPE "USER_PROP" STORE AS LOB (
  ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
  CACHE
  STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))

SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
  2  where table_name = 'T' ;

OWNER                          TABLE_NAME
------------------------------ ------------------------------
COLUMN_NAME
-----------------------------------------------------------------------------------------------------------------------------------
SEGMENT_NAME                   TABLESPACE_NAME
------------------------------ ------------------------------
APPS                           T
USER_PROP
SYS_LOB0000365381C00035$$      APPLSYSX

SQL> drop table t purge ;

Table dropped.

If you want to be able to move the segment to a different tablespace to the table, I guess that's not possible. Oracle only allows LOB to be stored in a separate tablespace as the corresponding table provided that they are defined as the LOBs explicitly during the creation of the table, unlike the LOB created by oracle internally because of the column datatype being ANYDATA as in this case.

Tags: Database

Similar Questions

  • How to move the lob segment in a partitioned table

    My Oracle 11.2, I have a partitioned table that I want to switch to a different tablespace

    After invoking the script, there are still inside for the insensitive lob segment table
    CREATE TABLE BONGO.AAA_3
    (
      ID       NUMBER,
      DATUM    DATE,
      OBJEKAT  BLOB
    )
    TABLESPACE BONGODATA_HUGE
    PCTUSED    40
    PCTFREE    10
    INITRANS   1
    MAXTRANS   255
    LOGGING
    PARTITION BY RANGE (DATUM)
    (  
      PARTITION P_MAXVALUE VALUES LESS THAN (MAXVALUE)
        LOGGING
        NOCOMPRESS
        TABLESPACE BONGODATA_HUGE
    LOB (OBJEKAT) STORE AS 
            (   TABLESPACE  BONGODATA 
              ENABLE        STORAGE IN ROW
              CHUNK       8192
              RETENTION
              NOCACHE
              STORAGE    (
                          INITIAL          64K
                          NEXT             1M
                          MINEXTENTS       1
                          MAXEXTENTS       UNLIMITED
                          PCTINCREASE      0
                          FREELISTS        1
                          FREELIST GROUPS  1
                          BUFFER_POOL      DEFAULT
                         )
            )
        PCTUSED    40
        PCTFREE    10
        INITRANS   1
        MAXTRANS   255
        STORAGE    (
                    INITIAL          64K
                    NEXT             1M
                    MINEXTENTS       1
                    MAXEXTENTS       UNLIMITED
                    FREELISTS        1
                    FREELIST GROUPS  1
                    BUFFER_POOL      DEFAULT
                   )
    )
    NOCOMPRESS 
    NOCACHE
    NOPARALLEL
    MONITORING;
    How to move this lob segment in a partitioned table?

    or, is there a package for data move in storage?

    concerning

    ALTER TABLE current_table MOVE PARTITION nom_partition
    TABLESPACE destination_table_space
    LOB (column_name) STORE AS (TABLESPACE current_tablespace);

  • Calculate the free space of the lob segment / reclaim space?

    Friends...

    DB: 11 GR 2

    OS: Linux

    I am trying shrink lob segment and recover the free space between the business segments.

    This area in Oracle DB is new to me so try to learn and to shrink the segment.

    I went through various metalink doco (386341.1) but not be able to get answers for below...

    Issues related to the:

    1. how much free space is available in the lob segment?

    2 can I assume 'no LOB DATA' as the free space currently and even will be recovered once the segment will be shrunk?

    3. no disadvantage of using "ALTER TABLE... SHRINK SPACE.

    4. is it true if storage segment is 100 GB as many redo will be generated when trying to alter table... shrink the space?

    I'm following the steps below.

    1 find Segment name-> sys_lob123

    2. find the size of storage - > 100 GB

    3. find the size of the LOB data-> 70

    4. find the size of the data not LOB-> 30

    2. the storage size

    Select 'storage' from dba_extents bytes

    where nom_segment = 'sys_lob123. '

    100 GB

    3. the size of the LOB

    Select dbms_lob.getlength (col_lob) in the table_lob;

    70 GB

    4. the size of the LOB data not

    100-70 = 30 GB (i.e. #3 - #2)

    Thanks in advance and enjoy your time looking into this...

    Use DBMS_REDEFINITION to reorganize the LOB segment, it is the best way to retrieve a LOB segment space. Also use the clause "MEANS of COMPRESS" and SECURE LEADER, creating the temp table. There is no reason that you can use the BASIC FILE. It's online process, which means that your app can stay up to... However, make sure that monitor you the database when executing redef, as it can cause conflicts and slow down your application, in which case you must kill the reorg...

    If this process is not feasible or overwhelms you, "ALTER TABLE MOVE" is another option.

    With 'Displacement of Alter table', you need to rebuild all indexes after you move the LOB segment. Don't forget this is an offline process and your application needs a time out while you do this.

    Here is the query to list the 10 LOBs albums in your database-

    fixed line 160

    Col a20 PROPRIETARY format

    Col TABLE_NAME format a30

    Col COLUMN_NAME format a30

    Col nom_segment format a30

    size col 999 999 999 format

    SELECT *.

    FROM (SELECT b.owner,

    b.table_name,

    b.column_name,

    a.segment_name,

    SUM (a.bytes) / (1024 * 1024) "size".

    FROM dba_segments a, b dba_lobs

    WHERE a.segment_name LIKE '% SYS_LOB '.

    AND a.segment_name = b.segment_name

    AND a.owner NOT IN ('SYS', 'SYSTEM', 'GENERAL', "OUTLN")

    B.owner GROUP,

    b.table_name,

    b.column_name,

    a.segment_name

    ORDER BY DESC 5)

    WHERE ROWNUM<>

  • Displacement of the LOB segments.

    Is there a a way to move LOB segment, keeping the segment of the table? The statement:

    ALTER table < tab > move lob (< lob >) store as (tablespace < TBS >)

    moves not only the LOB segment, but also table segments, so consumes a lot of resources, needs to rebuild indexes etc.

    Thank you.

    If you move the lob segment, then the data of the line must change because the lob is in a different place. There is no way around that. The row stores a pointer to LOB. Oracle has decided to implement this in a way that makes all change of rowid (you can't influence that).

    So, as I said - it's life.

  • Move the LOB to a new tablespace

    I want the users tablespace LOB to some other tablespace. But when I tried I got the error set-aside. I moved all the objects corresponding to the particular schema, but not the LOB. Can you please explain why Cant I move the LOB. And if you can explain that I want to know the importance of the lob indexex. Thank you in advance.

    SQL > select TABLE_NAME, INDEX_NAME, TABLESPACE_NAME from dba_lobs where owner = 'PC_DOM ';

    TABLESPACE_NAME INDEX_NAME TABLE_NAME
    ------------------------------ ------------------------------ ------------------------------
    PCSF_DOMAIN SYS_IL0000077924C00002$ $ USERS
    PCSF_CPU_USAGE_SUMMARY SYS_IL0000077933C00006$ $ USERS
    PCSF_REPO_USAGE_SUMMARY SYS_IL0000077936C00005$ $ USERS
    PCSF_USER SYS_IL0000077940C00002$ $ USERS
    PCSF_GROUP SYS_IL0000077944C00002$ $ USERS
    PCSF_ROLE SYS_IL0000077948C00002$ $ USERS
    PCSF_DOMAIN_USER_PRIVILEGE SYS_IL0000077952C00002$ $ USERS
    PCSF_DOMAIN_GROUP_PRIVILEGE SYS_IL0000077956C00002$ $ USERS

    8 selected lines.

    SQL > alter table PCSF_DOMAIN move lob (SYS_IL0000077924C00002$) store as (tablespace TS_PC_DOM);
    ALTER table PCSF_DOMAIN move lob (SYS_IL0000077924C00002$) store as (tablespace TS_PC_DOM)
    *
    ERROR on line 1:
    ORA-00942: table or view does not exist

    Do not use segment name of LOB but about the name of the column in the table and qualify the name of the table with the owner of the table if you are not logged in as owner of the table:

    Try:

    alter table PC_DOM.PCSF_DOMAIN move lob () store as ( tablespace TS_PC_DOM );
    

    Each LOB column is materialized with 2 segments:
    -a LOB segment containing LOB data
    -a LOB index that is a structure designed to facilitate access to the LOB data in the LOB segment.

    Edited by: P. Forstmann on 22 July. 2011 20:48

    Edited by: P. Forstmann on 22 July. 2011 20:52

  • Backup fails with Invalid RECID error

    Hi all

    Please help me understand the guard-section layout

    below the text is
    [http://download.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmtroub.htm#447765]
    Backup Fails with Invalid RECID Error: Solution 2
    
    This solution is more difficult than solution 1:
    
    To create the control file with SQL*Plus:
    
       1. Connect to the target database with SQL*Plus. For example, enter:
    
          % sqlplus 'SYS/oracle@trgt AS SYSDBA'
    
       2. Mount the database if it is not already mounted:
    
          SQL> ALTER DATABASE MOUNT;
    
       3. Back up the control file to a trace file:
    
          SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
    
       4. Edit the trace file as necessary. The relevant section of the trace file looks something like the following:
    
          # The following commands will create a new control file and use it
          # to open the database.
          # Data used by the recovery manager will be lost. Additional logs may
          # be required for media recovery of offline data files. Use this
          # only if the current version of all online logs are available.
          STARTUP NOMOUNT
          CREATE CONTROLFILE REUSE DATABASE "TRGT" NORESETLOGS  ARCHIVELOG
          --  STANDBY DATABASE CLUSTER CONSISTENT AND UNPROTECTED
              MAXLOGFILES 32
              MAXLOGMEMBERS 2
              MAXDATAFILES 32
              MAXINSTANCES 1
              MAXLOGHISTORY 226
          LOGFILE
            GROUP 1 '/oracle/oradata/trgt/redo01.log'  SIZE 25M,
            GROUP 2 '/oracle/oradata/trgt/redo02.log'  SIZE 25M,
            GROUP 3 '/oracle/oradata/trgt/redo03.log'  SIZE 500K
          -- STANDBY LOGFILE
          DATAFILE
            '/oracle/oradata/trgt/system01.dbf',
            '/oracle/oradata/trgt/undotbs01.dbf',
            '/oracle/oradata/trgt/cwmlite01.dbf',
            '/oracle/oradata/trgt/drsys01.dbf',
            '/oracle/oradata/trgt/example01.dbf',
            '/oracle/oradata/trgt/indx01.dbf',
            '/oracle/oradata/trgt/tools01.dbf',
            '/oracle/oradata/trgt/users01.dbf'
          CHARACTER SET WE8DEC
          ;
          # Take files offline to match current control file.
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/tools01.dbf' OFFLINE;
          ALTER DATABASE DATAFILE '/oracle/oradata/trgt/users01.dbf' OFFLINE;
          # Configure RMAN configuration record 1
          VARIABLE RECNO NUMBER;
          EXECUTE :RECNO := SYS.DBMS_BACKUP_RESTORE.SETCONFIG('CHANNEL','DEVICE TYPE DISK
          DEBUG 255');
          # Recovery is required if any of the datafiles are restored backups,
          # or if the last shutdown was not normal or immediate.
          RECOVER DATABASE
          # All logs need archiving and a log switch is needed.
          ALTER SYSTEM ARCHIVE LOG ALL;
          # Database can now be opened normally.
          ALTER DATABASE OPEN;
          # Commands to add tempfiles to temporary tablespaces.
          # Online tempfiles have complete space information.
          # Other tempfiles may require adjustment.
          ALTER TABLESPACE TEMP ADD TEMPFILE '/oracle/oradata/trgt/temp01.dbf' REUSE;
          # End of tempfile additions.
    
       5. Shut down the database:
    
          SHUTDOWN IMMEDIATE
    
       6. Execute the script to create the control file, recover (if necessary), archive the logs, and open the database:
    
          STARTUP NOMOUNT
          CREATE CONTROLFILE ...;
          EXECUTE ...;
          RECOVER DATABASE
          ALTER SYSTEM ARCHIVE LOG CURRENT;
          ALTER DATABASE OPEN ...;
    Caution:
          If you do not open with the RESETLOGS option,
     then two copies of an archived redo log for a given log sequence number may
     exist--even though these two copies have completely different contents.
     For example, one log may have been created on the original host and the other on the new host.
     If you accidentally confuse the logs during a media recovery,
     then the database will be corrupted but Oracle and RMAN cannot detect the problem.

    How to open the database without resetlogs?

    This will not help you. You must open the database in resetlogs mode in order to avoid such a scenario. You can open the database in mode restelogs by type
    SQL > alter database open restelogs;
    Instead, he will lose the present trancation in logs online.

    Rgds.

  • Discoverer of office connections fails with invalid user/Pass name in r12

    Hi all;

    I have the problem. I can connect Discoverer Administrator to my localmachine, and I do not see what ppl it's there... But when I try it gives me connection Discoverer Desktop to my localmachine name of user/Pass not valid. error.

    I can not connect my system browser:

    http://xx.com:7778/discoverer/more < < pages comes and I filled in the blanks as district:
    Connect to: Oracle Application
    Username: sysadmin
    Pass: *.
    Data Base: SCREWS

    I found a document of forums. Which is:

    Discoverer is unable to connect to the Oracle Applications database: name of user and password invalid Doc ID: Note: 467919.1
    Discoverer 10 g (10.1.2) connect to Oracle E-Business Suite 12 fails with "Invalid Username/Password" Doc ID: Note: 443661.1

    But before I apply the patch I want to take advice from you. Coz I can connect Discoverer Administrator and can use it but cant login Discoverer Desktop... kind of weird... I already checked it that I made in the installtion and its all seems correct.

    Any idea;

    Concerning
    HELIOS

    If you have verified that all the steps, and all are OK, then please proceed and apply the patch. Make sure that you apply the appropriate fix (note: 467919.1) that corresponds to your version of discoverer.

  • System 32 error (0x00000020): "the process cannot access the file because it is being used by another process.". The operation to open the file will fail with error - 1032 (0xfffffbf8(JET_errFileAccessDenied))"

    Original title: svchost (1020)

    Event type: error
    Event source: ESENT
    Event category: general
    Event ID: 490
    Date: 2010-10-19
    Time: 14:51:34
    User: n/a
    Computer: ROB
    Description:
    Svchost (1020) an attempt to open the file "C:\WINDOWS\system32\CatRoot2\{127D0A1D-4EF2-11D1-8608-00C04FC295EE}\catdb" for read / write access failed with the error System 32 (0x00000020): "the process cannot access the file because it is being used by another process.".  The operation to open the file will fail with error - 1032 (0xfffffbf8(JET_errFileAccessDenied)).

    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

    Hi Robrw,

    1. when exactly you receive this error?

    2. don't you make changes to the computer before this problem?

    You can try to rename the catroot2 folder and check if it helps.

    Step 1:

    a. Click Start and in run type C:\windows\system32 and click ok

    b. find the Catroot2 folder. Right-click on Catroot2 and rename it to Catroot2.old

    If you are not able to do the normal mode, try to start in safe mode and rename

    Check out the link for more information on starting your computer in SafeMode below:

    http://support.Microsoft.com/kb/315222

    Step 2:

    If you are unable to access the catroot2 folder, and then try to change the permissions on the files and check if it helps.

    See the following article:

    How to capture a file or a folder in Windows XP

    http://support.Microsoft.com/kb/308421

    Step 3:

    You can also try to temporarily disable third-party security software and firewalls and check what is happening.

    Note: Activate the security software after the resolution of the problem.

    Hope this information is useful.

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Unable to connect to the printer - operation failed with error 0X0000003b

    When I search a printer in my local network and connect, the message "Operation failed with 0X0000003b error" always appear.

    Hello

    Run the Microsoft fixit from http://support.microsoft.com/mats/printing_problems/en-us

    Also, follow the steps in http://answers.microsoft.com/en-us/windows/forum/windows_7-networking/0x0000003b-on-printer-install-error-i-cannot/3b5a2538-1fde-4793-b16d-c61ca0999569?msgId=e0331f31-f29c-41e0-bdda-558f654c1053

    Hope this could help you. Let us know the results.

  • Unable to share the printer attached to the XP with windows 7, receive error message: windows cannot connect to the printer: operation failed with error 0x000004f1.

    Original title: printer HP LaserJet 4050 of PCL6 compatible with Windows 7?

    I have a desktop windows xp pro (SP3 5.1.2600) and you have a printer HP LaserJet 4050 PCL6.  The printer works fine connected to the desktop computer with a parallel port.  I'm trying to share the printer on my home network so that Win 7 (6.1.7601 SP1) laptops can use its printing features.  Please help.

    First I tried to add it with \\hostname\printername that returned this error: windows cannot connect to the printer: operation failed with error 0x000004f1.
    Thanks in advance for any help / support!

    Hello

     

    1. the two Windows XP, Windows 7 connected in a same workgroup?

    2. can you access files shared XP of Windows 7 computer?

    3. check if the printer is shared or not?

    I suggest you follow these methods and check.

    HP LaserJet 4050 PCL6 printer is not compatible with Windows 7. Printer drivers are available for Windows XP-based computers only.

    http://h20000.www2.HP.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&prodTypeId=18972&prodSeriesId=25475&prodNameId=18322&swEnvOID=228&swLang=8&mode=2&swItem=LJ-4119-3

    It is not in the Windows 7 Compatibility Center.

    http://www.Microsoft.com/Windows/compatibility/Windows-7/en-us/search.aspx?l=en-us&type=hardware&s=4050%20PCL6

    I sugegst you contact HP support for Windows 7 drivers, after you instaall drivers to check with the question.

    http://WWW8.HP.com/us/en/support-drivers.html

    See also: networking computers running different versions of Windows

    http://Windows.Microsoft.com/en-us/Windows7/networking-home-computers-running-different-versions-of-Windows#section_7

    I hope this helps!

  • IAM-2050243: process Orchestration with the id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the point of action

    Hello

    While creating a use to the IOM, I get the error below. I have to configure?

    oracle.iam.ui.platform.exception.OIMRuntimeException: IAM-2050243: process of Orchestration with the id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the point of action

    Error log file:

    ]]

    [2015 07-28 T 12: 53:51.674 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.identity.usermgmt.impl.handlers.base] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] compensate the method called in a process of running User Manager CREATE with process Id 498 509 and Event Id 3 306 663

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20043] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = basic 207 SRCH = scope = base filter = objectclass = * requestedAttributes = [] sizelimit = 0 timelimit = 0 typesOnly = false

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20044] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 207 RESULT err = 0 tag = 0 nentries = 1 etime = 0 = 0 mem = 2, 058, 395 728 dbtime / 4294967296

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20043] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = basic 208 SRCH = scope = base filter = objectclass = * = sizelimit timelimit [] = 0 requestedAttributes = 0 typesOnly = false

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20044] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 208 RESULT err = 0 tag = 0 nentries = 1 etime = 0 = 0 mem = 2, 058, 395 728 dbtime / 4294967296

    [2015 07-28 T 12: 53:51.703 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20043] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = base 209 SRCH = xxxxxxxxxx, dc = net scope = filter sub = orclguid = 56ca2d28625f47819064b8241ab44539 requestedAttributes = [orclguid] = 0 = 0 = false typesOnly timelimit sizelimit

    [2015 07-28 T 12: 53:51.705 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20044] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 209 RESULT err = 0 tag = 0 = 1 = 2 = 0 = 2 mem dbtime etime nentries, 058, 395 728 / 4294967296

    [2015 07-28 T 12: 53:51.705 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20040] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 210 DEL dn = cn = afdada, cn = users, xxxxxxxxxx, dc is net

    [2015 07-28 T 12: 53:51.709 - 07:00] [oimext_server1] [NOTIFICATION] [LIBOVD-20039] [oracle.ods.virtualization.accesslog] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] conn = op 78 = 210 RESULT tag = 0 = 0 = 4 etime nentries err = 0

    [2015 07-28 T 12: 53:51.723 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.identity.usermgmt.impl.handlers.custom] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] compensate the method called in a process of running User Manager CREATE with process Id 498 509 and Event Id 3 658 306

    [2015 07-28 T 12: 53:51.763 - 07:00] [oimext_server1] [NOTIFICATION] [] [oracle.iam.platform.kernel.impl] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] completed the orchestration with the result of the action - oracle.iam.platform.kernel.EventFailedException: IAM-3051103: failure of the create operation on the entity user at the point of action. :

    [2015 07-28 T 12: 53:51.775 - 07:00] [oimext_server1] [ERROR] [] [oracle.iam.request.impl] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [username: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: IOM #11.1.2.0.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] Orchestration process with id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the point of action. :.

    [2015 07-28 T 12: 53:51.784 - 07:00] [oimext_server1] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [tid: [ASSETS].] [' ExecuteThread: ' 74 ' for queue: "(self-adjusting) weblogic.kernel.Default"] [userId: xelsysadm] [ecid: 77744a889dde03de:77dc1a7d:14ec20555f9:-8000-000000000099b7c8, 0] [APP: oracle.iam.console.identity.self-service.ear #V2.0] [IDDM: 0000KvMCNcVEoIs6wjyWMG1Lgf5y00000k] ADF: adding the following JSF error message: IAM-2050243: Orchestration process with id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the stage of the action... [[

    oracle.iam.ui.platform.exception.OIMRuntimeException: IAM-2050243: process of Orchestration with the id 498509, failed with the IAM-3051103 error message: failed to create operation on the entity user at the stage of the action...

    at oracle.iam.ui.platform.exception.OIMErrorHandler.reportServiceException(OIMErrorHandler.java:171)

    at oracle.iam.ui.platform.exception.OIMErrorHandler.reportException(OIMErrorHandler.java:65)

    at oracle.adf.model.binding.DCDataControl.reportException(DCDataControl.java:411)

    at oracle.adf.model.binding.DCBindingContainer.reportException(DCBindingContainer.java:424)

    at oracle.adf.model.binding.DCBindingContainer.reportException(DCBindingContainer.java:479)

    at oracle.adf.model.binding.DCControlBinding.reportException(DCControlBinding.java:201)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.reportException(JUCtrlActionBinding.java:2036)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1680)

    at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)

    at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:760)

    at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:407)

    at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)

    at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)

    at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBinding(FacesUtils.java:169)

    at oracle.iam.ui.platform.utils.FacesUtils.executeOperationBindingFromActionListener(FacesUtils.java:116)

    at oracle.iam.ui.catalog.view.backing.CartReqBean.submit(CartReqBean.java:980)

    at oracle.iam.ui.catalog.view.backing.CartReqBean.submitActionListener(CartReqBean.java:919)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at com.sun.el.parser.AstValue.invoke(AstValue.java:187)

    at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:297)

    at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)

    at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1490)

    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)

    at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:181)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:104)

    to oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$ 1.run(ContextSwitchingComponent.java:93)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:371)

    at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:97)

    at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:98)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1086)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:434)

    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:207)

    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)

    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)

    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)

    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)

    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.help.web.rich.OHWFilter.doFilter (unknown Source)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.view.page.editor.webapp.WebCenterComposerFilter.doFilter(WebCenterComposerFilter.java:117)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:128)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)

    to org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$ FilterListChain.doFilter (TrinidadFilterImpl.java:446)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)

    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)

    at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.iam.ui.platform.servletfilter.IdentityContextFilter.doFilter(IdentityContextFilter.java:50)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.iam.platform.servletfilter.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:164)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.bpel.services.workflow.client.worklist.util.WorkflowFilter.doFilter(WorkflowFilter.java:175)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.bpel.services.workflow.client.worklist.util.DisableUrlSessionFilter.doFilter(DisableUrlSessionFilter.java:70)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:119)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.security.wls.filter.SSOSessionSynchronizationFilter.doFilter(SSOSessionSynchronizationFilter.java:418)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.security.am.agent.wls.filters.OAMServletAuthenticationFilter.doFilter(OAMServletAuthenticationFilter.java:265)

    at oracle.security.am.agent.wls.filters.OAMValidationSystemFilter.doFilter(OAMValidationSystemFilter.java:133)

    at oracle.security.wls.oamagent.OAMAgentWrapperFilter.doFilter(OAMAgentWrapperFilter.java:120)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3730)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3696)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1485)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Thank you

    As IOM tablespace maxed out, we were receving a lot of mistakes. It was one of them.

    Thank you Anne for your contributions.

  • The cube update fails with an error below

    Hello

    We are facing this problem below when planning application database update. We've been refreshing the database daily, but all of a sudden the error below appeared in the newspaper. The error is something like below:


    The cube refresh failed with the error: java.rmi.UnmarshalException: error demarshalling return; nested exception is:
    java.io.EOFException


    During the updating of the database is manual workspace, the updating of the database that happens successfully. But when the unix script, its lift the above error.

    There is some question related provisioning for which the user has been removed from MSAD? Please help me on this.


    Thank you
    Mani

    Published by: sdid on 29 July 2012 23:16

    have you tried restarting the RMI process for planning and then check that it runs without a doubt 11333 port

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Movement of the LOB Segment

    I am trying to write a PL/SQL procedure that will move all my lob segments in a tablespace again (this is for when a dev environment is created... lots of storage & compaction of the things endure us in the production takes place then!)

    I know that the SQL is:
    alter table X move lob (name-of-lob) store as tablespace NEWTBS;
    But I want to build these declarations programmatically by querying views user_ or all_. I don't know where to start. If I look in WHERE USER_SEGMENTS, I see segments with names like SYS_LOB0000048001C00017$ $... but I don't know what the table in order to begin to construct the statement "alter table...". ». (In other words, I think I reason that the command ' alter table SYS_LOB0000048001C00017$ $ move lob... ") ("wouldn't be correct).

    Similarly, the SQL will require me to know the name of the lob, I think, and that should be the name of the column in the table. But what view will allow me to extract this information, so I can complete my little building SQL?

    Can someone point me in the right direction please?

    Oh, and also: in WHERE USER_SEGMENTS, I see that I have «LOBSEGMENT "and types of segment"LOBINDEX"... assuming that the above SQL moves lob segments, how can I move the index business?»

    I think that you are looking for the table USER_LOBS (or ALL_LOBS or DBA_LOBS). Who has the TABLE_NAME, COLUMN_NAME and nom_segment. So I expect that you are looking for something like (not tested)

    FOR x IN (SELECT * FROM user_lobs)
    LOOP
      EXECUTE IMMEDIATE
          'ALTER TABLE ' ||
            x.table_name ||
            ' MOVE LOB (' ||
            x.segment_name ||
            ') STORE AS TABLESPACE newtbs';
    END LOOP;
    

    Justin

    Published by: Justin Cave on October 7, 2009 12:03 AM

    Fixed formatting

  • Can't do dmg file in the folder - "operation failed with status 1"

    I have a 1 TB hard that often went around. There are some personal files here although I am trying lock creating a DMG using disk utility and turning on encryption. However, whenever I try to do that, I always get an error code - status 1 to be exact. Note that it only does on some records. I had about 15 cases work this way with success, but I get this error a LOT... probably about 40% of the time. "Whenever I try too search ' operation failed with status 1," nothing appears! So frustrating! Any help at all is greatly appreciated! Please see the photos to see more. Thank you! Information... Files in JPEG areinformation1st picture2nd photophoto 3

    Please launch the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    The title of the Console window should be all Messages. If it isn't, select

    SYSTEM LOG QUERIES ▹ all Messages

    in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu at the top of the screen bar.

    Click on the clear view icon in the toolbar. Then take an action that does not work the way you expect. Select all of the lines that appear in the Console window. Copy to the Clipboard by pressing Control-C key combination. Paste into a reply to this message by pressing command + V.

    The journal contains a large amount of information, almost everything that is not relevant to solve a particular problem. When you post a journal excerpt, be selective. A few dozen lines are almost always more than enough.

    Please don't dump blindly thousands of lines in the journal in this discussion.

    Please do not post screenshots of log messages - text poster.

    Some private information, such as your name or e-mail address, can appear in the log. Anonymize before posting.

    When you post the journal excerpt, an error message may appear on the web page: "you include content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

  • Update of table with invalid identifiers

    Hello!

    I use a third-party plug-in and that comparisons of chemical structures. I want to update a table with the values of the other when the plugin matches two rows. However, I'm a problem invalid identifier.

    Two tables:
    PLATES: a VARCHAR2 columns of PLATE_SMILES, IN_DB
    INVEST: a VARCHAR2 columns of SMILES

    The operator is a binary: jc_compare (PLATE_SMILES, SMILES) = 1 (or 0 if they do not match)

    I want my query to say: "If comparison SMILES, PLATE_SMILES = 1, define IN_DB = 1 for row" - effectively asking if PLATE_SMILES exists in the table INVEST.

    I tried a number of "renditions", all identifiers not valid donations. Here is an example:

    Update (select plate. PLATE_SMILES, plate. IN_DB, invest. SMILES
    plate PLATES
    INVEST invest
    WHERE jc_compare (PLATE_SMILES, SMILES) = 1)
    set plate. IN_DB = 1;


    ORA-00904: "FLAT". "" IN_DB ": invalid identifier


    I hope that this should be an easy fix, and any help is greatly appreciated!

    Hello

    You have

    UPDATE (SELECT plate.plate_smiles,
                   plate.in_db,
                   invest.smiles
            FROM   plates plate, invest invest
            WHERE  jc_compare ( plate_smiles, smiles) = 1)
    SET    plate.in_db = 1;   -- Error here
    

    PLATE is not known outside the display online. Just remove it.

    Concerning
    Peter

Maybe you are looking for

  • Drivers/ATI Radeon 4650

    I bought my VGN-FW520D a year ago and the drivers for the ATI Mobility Radeon HD 4650 graphics card are now nearly a year a half old. I had some display problems lately with some programs as WindowBlinds and it has been suggested that drivers must be

  • Picture in picture book uses white between photos and filling when using "Adapt to the chassis" instead of the border color of page like in iPhoto

    I used the book of images to create a book in iPhoto several times because the line between the pictures and the filling when I use 'Adapt to the chassis', is the same color as the color chosen for the borders of homepage and text boxes.  It is seaml

  • Unable to access Windows Update page

    I am running XP Service Pack 3 and were unable to access the Windows Update page for a few weeks now. I get an error message saying that "Internet Explorer can not locate the page". I tried several routes to access the update page, but they all fail.

  • my printer will print when connected to cable but does not print from across the room.

    We have a HP C4780 Photoshop. I use Windows Vista and my husband uses Windows XP. Our two laptops are Toshiba. None of our computers will print at least that plug us laptops on cable directly into the printer. It is our only and the default printer.

  • Windows 7 ISO

    Well, a friend of mine gave me a windows 7 Home premium product key, I want to install it on my PC which is running windows 10. If I'm correct that I need to get the ISO then burn it to disc. The only problem becomes ISO, I have no idea how to do tha