SDO_NN doesn't work though tables are spatially indexed

Hi,
As said Andrew Thomas, the Search function doesn't work today, so I don't know if the answer is already somewhere in the forum.
I' trying to perform a SDO_NN (nearest neighbor) search on a set of tables which are almost identical in structure. I first created a view in order to do 'ordinary' selects on the 'ordinary' columns.
Now I need to code request on spatial columns, with joins based on results from SDO_NN and values from ancillary function SDO_NN_DISTANCE.
As SDO_NN requires its first parameter to be a spatially indexed column and it is not possible to index a view, I create a temporary table on the fly, index it, insert a line into USER_SDO_INDEX_METADATA about this index and then launch my request.
I always get the following error:
ERROR at line 1 :
ORA-13249: SDO_NN cannot be evaluated without using index
ORA-06512: in "MDSYS.MD", ligne 1723
ORA-06512: in "MDSYS.MDERR", ligne 17
ORA-06512: in "MDSYS.PRVT_IDX", ligne 27
I've spent 3 days on it now, reading the manual for clues, adding optimizer hints, and so on.
Here comes the trace of my SQL script (with SET ECHO ON):
===================================================
SQL> @er_ens.sql
SQL>
SQL> DROP TABLE TEMPGEOMDATA ; -- Drop the temp table to be sure
DROP TABLE TEMPGEOMDATA
ERREUR � la ligne 1 :
ORA-00942: Table ou vue inexistante -- It didn't exist
SQL> DROP INDEX TEMPGEOMDATA_IDX ; -- Drop the temp index to be sure
DROP INDEX TEMPGEOMDATA_IDX
ERREUR � la ligne 1 :
ORA-01418: L'index indiqu� n'existe pas -- It didn't exist, either
SQL> DESCRIBE v$_er_ens; -- Display the view structure
Nom NULL ? Type
ADRESSE_NUMERO VARCHAR2(255)
ADRESSE_RUE VARCHAR2(255)
CLEF_DISTANCIER_GLOBAL VARCHAR2(255)
CODE_INSEE VARCHAR2(255)
DATE_CREATION DATE
DATE_MODIFICATION DATE
EFFECTIF_1997_1998 NUMBER
GEOMETRIE MDSYS.SDO_GEOMETRY
ID_FOURNISSEUR VARCHAR2(255)
INCLUS_DANS_LES_YVELINES VARCHAR2(255)
NOM VARCHAR2(255)
OBSERVATIONS_REMARQUES VARCHAR2(255)
RNE VARCHAR2(255)
SOURCE_DONNEES_GRAPHIQUES VARCHAR2(255)
STATUT VARCHAR2(255)
TYPE VARCHAR2(261)
SQL> SELECT Count(*) FROM v$_er_ens; -- Display the number of rows in the view
COUNT(*)
438
SQL> CREATE TABLE TEMPGEOMDATA AS SELECT * from v$_er_ens; -- Create temp table based on view
Table cr��e. -- Created
SQL>
SQL> DESCRIBE TEMPGEOMDATA; -- Display the temp table structure: all the same
Nom NULL ? Type
ADRESSE_NUMERO VARCHAR2(255)
ADRESSE_RUE VARCHAR2(255)
CLEF_DISTANCIER_GLOBAL VARCHAR2(255)
CODE_INSEE VARCHAR2(255)
DATE_CREATION DATE
DATE_MODIFICATION DATE
EFFECTIF_1997_1998 NUMBER
GEOMETRIE MDSYS.SDO_GEOMETRY
ID_FOURNISSEUR VARCHAR2(255)
INCLUS_DANS_LES_YVELINES VARCHAR2(255)
NOM VARCHAR2(255)
OBSERVATIONS_REMARQUES VARCHAR2(255)
RNE VARCHAR2(255)
SOURCE_DONNEES_GRAPHIQUES VARCHAR2(255)
STATUT VARCHAR2(255)
TYPE VARCHAR2(261)
SQL> SELECT Count(*) FROM TEMPGEOMDATA ; -- Display the number of rows in the temp table: the very same
COUNT(*)
438
SQL>
SQL> INSERT INTO -- Insert a new line in SDO_USER_INDEX_METADATA
2 USER_SDO_GEOM_METADATA
3 VALUES (
4 'TEMPGEOMDATA'
5 , 'GEOMETRIE'
6 , MDSYS.SDO_DIM_ARRAY(
7 MDSYS.SDO_DIM_ELEMENT('X', 56957200, 59045500, 0.005)
8 , MDSYS.SDO_DIM_ELEMENT('Y', 242450500, 244324700, 0.005)
9 )
10 , NULL
11 )
12 ;
1 ligne cr��e. -- Line inserted
SQL> SELECT * FROM USER_SDO_GEOM_METADATA WHERE TABLE_NAME LIKE 'TEMPGEOMDATA'; -- Check to be sure!
TABLE_NAME COLUMN_NAME DIMINFO SRID
TEMPGEOMDATA GEOMETRIE SDO_DIM_ARRAY(SDO_DIM_ELEMENT('X', 56957 NULL
200, 59045500, ,005), SDO_DIM_ELEMENT('Y
', 242450500, 244324700, ,005))
SQL> CREATE INDEX TEMPGEOMDATA_IDX -- Create the spatial index on temp table
2 ON "TEMPGEOMDATA" ("GEOMETRIE")
3 INDEXTYPE IS MDSYS.SPATIAL_INDEX
4 PARAMETERS (' SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"')
5 ;
Index cr��. -- Index created
SQL> show errors
Pas d'erreur. -- NO errors!
SQL> COMMIT;
Validation effectu�e. -- Commited to be sure!
SQL> SELECT -- Checking that every table involved has a spatial index
2 U.SDO_INDEX_NAME
3 --, A.OWNER
4 --, A.INDEX_TYPE
5 --, A.TABLE_OWNER
6 , A.TABLE_NAME
7 , A.STATUS
8 , A.PARAMETERS
9 --, A.JOIN_INDEX
10 FROM
11 USER_SDO_INDEX_METADATA U,
12 ALL_INDEXES A
13 WHERE
14 ( U.SDO_INDEX_NAME = A.INDEX_NAME )
15 AND (
16 ( A.TABLE_NAME LIKE '%TEMPGEOMDATA%' )
17 OR
18 ( A.TABLE_NAME LIKE '%BATSP_CIS%' )
19 OR
20 ( A.TABLE_NAME LIKE '%ENS%' )
21 )
22 ;
SDO_INDEX_NAME TABLE_NAME STATUS PARAMETERS
BATSP_CIS_SP_IDX BATSP_CIS VALID SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"
ENS_COLLEGE_SP_IDX ENS_COLLEGE VALID SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"
ENS_ECOLEPRIM_SP_IDX ENS_ECOLEPRIM VALID SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"
ENS_LYCEE_SP_IDX ENS_LYCEE VALID SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"
ENS_UIT_SP_IDX ENS_UIT VALID SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"
ENS_UNIV_SP_IDX ENS_UNIV VALID SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"
TEMPGEOMDATA_IDX TEMPGEOMDATA VALID SDO_INDX_DIMS=2 LAYER_GTYPE="COLLECTION"
7 ligne(s) s�lectionn�e(s). -- Yes, they all do (Join table, original tables for the view, temp table from the view)
SQL> SELECT /*+ INDEX(TEMPGEOMDATA TEMPGEOMDATA_IDX) INDEX(BATSP_CIS BATSP_CIS_SP_IDX INDEX LIMADM_COMMUNE LIMADM_COMMUNE_SP_IDX)*/
2 v.nom ENS_NOM
3 , v.adresse_numero -- Spatial request with
4 , v.adresse_rue -- optimizer hints to be sure indexes are used
5 , c.code_insee -- My understanding of manual is that only the
6 , c.nom COM_NOM -- 1st SDO_NN() parameter has to be spatially indexed
7 , b.code_centre -- i.e. alias 'b', table BATSP_CIS
8 , MDSYS.SDO_NN_DISTANCE(1) DIST -- which is the case!
9 FROM
10 --v$_er_ens v
11 TEMPGEOMDATA v
12 , limadm_commune c
13 , batsp_cis b
14 WHERE
15 ( v.code_insee = c.code_insee ) AND
16 ( SDO_NN(b.geometrie, v.geometrie, 'sdo_num_res=1', 1) = 'TRUE' )
17 ;
SELECT /*+ INDEX(TEMPGEOMDATA TEMPGEOMDATA_IDX) INDEX(BATSP_CIS BATSP_CIS_SP_IDX INDEX LIMADM_COMMUNE LIMADM_COMMUNE_SP_IDX)*/
ERREUR � la ligne 1 : -- An error occurs, though!
ORA-13249: SDO_NN cannot be evaluated without using index
ORA-06512: � "MDSYS.MD", ligne 1723
ORA-06512: � "MDSYS.MDERR", ligne 17
ORA-06512: � "MDSYS.PRVT_IDX", ligne 27
SQL> DELETE FROM
2 USER_SDO_GEOM_METADATA
3 WHERE
4 TABLE_NAME = 'TEMPGEOMDATA'
5 ;
1 ligne supprim�e. -- Deleted the line from USER_SDO_INDEX_METADATA, so it did exist!
SQL> DROP INDEX TEMPGEOMDATA_IDX ;
Index supprim�. -- Deleted the temp index, so it did exist!
SQL> DROP TABLE TEMPGEOMDATA ;
Table supprim�e. -- Deleted the temp table, so it did exist!
SQL>
SQL> SET ECHO OFF
SQL>
===================================================
Does anyone have a clue?

Hi,
As a general rule, whenever using an operator where the query window comes from a table rather than a constructor, try using the ordered hint and put the table that contains the query window (the second geometry in the operator) first in the from clause. You are right in that the table associated with the first geometry must be indexed. This query might be changed to:
SELECT /*+ ordered */
v.nom ENS_NOM, v.adresse_numero, v.adresse_rue,
c.code_insee , c.nom COM_NOM , b.code_centre,
MDSYS.SDO_NN_DISTANCE(1) DIST
FROM TEMPGEOMDATA v, limadm_commune c, batsp_cis b
WHERE v.code_insee = c.code_insee
AND SDO_NN(b.geometrie, v.geometrie, 'sdo_num_res=1', 1) = 'TRUE' ;
Hope this helps,
Dan

Similar Messages

  • InDesign CS6 Font doesn't work in table cells

    Hi all!
    I'm working in InDesign CS6 on Mac OS 10.6 Leopard.  I have character and paragraph styles defined using a certain font, and they work just fine except when using them in table cells.  I have the character style nested in the paragraph style, which is then used in the cell style.  But it doesn't work.  It inherits everything correctly except for the font.  If I select the text, the font menu tells me it is the correct font, but it displays in a different font.  I've tried exporting to IDML and resaving, but that didn't work.  I'm stumped

    Hi Jeffrey-
    Indeed it should, and I see why using a formatted table would cause conflicts, but I am importing it as an unformatted table already.  Built all styles in InDesign first, then imported as unformatted table.  A few times it did work as expected, but most of the time it steadfastly refused to apply the correct font.
    But in any case, that wasn't my only issue with the tables.  My understanding of importing Excel spreadsheets is that applied table and cell styles will be maintained when the linked file is updated, but local formatting/overrides will be wiped out, which is why I was trying to get the styles working in the first place.  However, after testing, I found that even when I didn't use local formatting/overrides, updating the linked file still broke my InDesign layout.
    In my test, the only thing I did to the imported (unformatted) table was to apply the table/cell styles and adjust column width (which is unavoidable as far as I know - didn't see anywhere I could set column width as part of a style).  But even then an update to the linked file removed all the styles and column widths I had set (and was also highly annoying as it gave me a separate error message about the formatting loss for each and every instance of the spreadsheet).
    Could be a fluke, or could be I'm missing something, but for whatever reason, I just couldn't get it to work

  • PSE7 Faces tagging doesn't work (No items are selected)

    Hi,
    I try to use the Faces tagging feature in PSE 7 (with windows vista 32bit sp1) but it doesn't work.
    For some reasons, the faces tagging interface never display the photos I've selected. In the lower left corner, it says "No items are selected".
    I tried selecting zero, one or more photos in the photo browser. When I select zero photos, it asks me if I want to find faces on all the displayed picture (I have about 5 000 pictures) but none appears in the faces tagging interface.
    The menu item Find->Find Faces for tagging and the button Face Faces for Tagging give the same result (doesn't work).
    Can anyone help me?
    Cheers,
    Alexandre

    Hi,
    Thanks for the help, but it did not work :(
    I tried two times:
    1) The repair command said it did not find any error and I said No to "Repair anyway", then optimized.
    2) Same thing, but I said yes to Repair anyway with the Visually similar content checkbox checked.
    Cheers,
    Alexandre

  • Spacebar in CS6 doesn't work and hotkeys are shifty

    I just recently downloaded CS6 from the creative cloud, the spacebar in CS6 doesn't work and switching cursor settings (brush, handtool, select all, move etc...) with the keyboard causes the program to pause for 1-2 seconds before the mouse will move again.
    This is really obnoxious and ruins any workflow you want to have...
    OH and I called Adobe support but that was a big FN' mistake.... most aggravating process and they are too damn skeptical about if you own the software or not!
    Has anyone had issues w/ this?

    You can try trashing your prefs (see Replace Your Preferences), but I don't think that's the problem, nor is there a general problem with book page numbering in CS6, so it's something that you've set incorrectly, or a step you've missed. Did you update the numbering after adding the files?

  • How to optimize massive insert on a table with spatial index ?

    Hello,
    I need to implement a load process for saving up to 20 000 points per minutes in Oracle 10G R2.
    These points represents car locations tracked by GPS and I need to store at least all position from the past 12 hours.
    My problem is that the spatial index is very costly during insert (For the moment I do only insertion).
    My several tries for the insertion by :
    - Java and PreparedStatement.executeBatch
    - Java and generation a SQLLoader file
    - Java and insertion on view with a trigger "instead of"
    give me the same results... (not so good)
    For the moment, I work on : DROP INDEX, INSERT, CREATE INDEX phases.
    But is there a way to only DISABLE INDEX and REBUILD INDEX only for inserted rows ?
    I used the APPEND option for insertion :
    INSERT /*+ APPEND */ INTO MY_TABLE (ID, LOCATION) VALUES (?, MDSYS.SDO_GEOMETRY(2001,NULL,MDSYS.SDO_POINT_TYPE(?, ?, NULL), NULL, NULL))
    My spatial index is created with the following options :
    'sdo_indx_dims=2,layer_gtype=point'
    Is there a way to optimize these heavy load ???
    What about the PARALLEL option and how does it work ? (Not so clear for me regarding the documentation... I am not a DBA)
    Thanks in advanced

    It is possible to insert + commit 20000 points in 16 seconds.
    select * from v$version;
    BANNER                                                                         
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod               
    PL/SQL Release 10.2.0.1.0 - Production                                         
    CORE     10.2.0.1.0     Production                                                     
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production                        
    NLSRTL Version 10.2.0.1.0 - Production                                         
    drop table testpoints;
    create table testpoints
    ( point mdsys.sdo_geometry);
    delete user_sdo_geom_metadata
    where table_name = 'TESTPOINTS'
    and   column_name = 'POINT';
    insert into user_sdo_geom_metadata values
    ('TESTPOINTS'
    ,'POINT'
    ,sdo_dim_array(sdo_dim_element('X',0,1000,0.01),sdo_dim_element('Y',0,1000,0.01))
    ,null)
    create index testpoints_i on testpoints (point)
    indextype is mdsys.spatial_index parameters ('sdo_indx_dims=2,layer_gtype=point');
    insert /*+ append */ into testpoints
    select (sdo_geometry(2001,null,sdo_point_type(1+ rownum / 20, 1 + rownum / 50, null),null,null))
    from all_objects where rownum < 20001;
    Duration: 00:00:10.68 seconds
    commit;
    Duration: 00:00:04.96 seconds
    select count(*) from testpoints;
      COUNT(*)                                                                     
         20000                                                                      The insert of 20 000 rows takes 11 seconds, the commit takes 5 seconds.
    In this example there is no data traffic between the Oracle database and a client but you have 60 -16 = 44 seconds to upload your points into a temporary table. After uploading in a temporary table you can do:
    insert /*+ append */ into testpoints
    select (sdo_geometry(2001,null,sdo_point_type(x,y, null),null,null))
    from temp_table;
    commit;Your insert ..... values is slow, do some bulk processing.
    I think it can be done, my XP computer that runs my database isn't state of the art.

  • Index (search button) in finder and mail doesn't work after installing mountain lion, index doesn't work after installing mountain lion

    after I up grade to mountain lion search button in finder and mail doesn't work: when I search from something the result is "zero"
    How can I solve this problem? thank you

    Try:
    sudo mdutil -E /
    which rebuilds spotlight and search indexes on the volume.

  • Error dialog when open index dialog on tables with spatial index

    Hi all,
    When I want to open in the preferences of a table with a spatial index the index dialog, then there appears the following message:
    "Index <myIndex> column GEOMETRY, datatype SDO_GEOMETRY is not a valid column type for use in a text index".
    I can only click the ok button, but I am not able to modify any of my set index.
    Does anyone else have the same problem?
    regards markus
    Version:
    Java: 1.6.0.16
    Oracle IDE: 2.1.1.64.39
    OS: Linux, Ubuntu 9.10
    Edited by: markusin on Mar 3, 2010 12:32 AM

    I have the same problem on SQLDev 2.1.1 for Windows. I hadn't this problem in 1.5.
    I must use a normal sql script to create spatial index.
    Vittorio

  • The volume button on my ipod touch doesn't work unless headphones are plugged in?

    Hi there,
    So I have had this ipod for a while now but just recently it's doing this thing where i can press the side volume buttons but they don't do anything unless the earphones are plugged in.  i have reset it a number of times and had it plugged into my computer to charge it completely and nothing works.   when i go to play music on the ipod without the headphones, the slider doesn't even show up...any suggestions??

    Try restoreing the iPOd, first from backup and then to factory defaults /new iPOd if the problem persists.  If you still have the problem then you likely have a defective headphone jack. 
    In that case I would make an appointment at the Genisu Bar of an Apple store to confirm.
    Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    A third-party place is less expensive.  Here is one, Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Nested Composite Component Doesn't work for table column

    I have reported this issue as defect 1541 but I'm hoping someone my have a suggestion on a work around for this. Here is the issue
    I am attempting to use composites to represent a table column. I have tried this with both IceFaces and the standard implementation. I have a custom component that is of type UIColumn that is being inserted into another composite that houses a table. The table renders and the column renders. However, the outputText that should represent the row data does not render. Interestingly this will render using composites when I don't have the column rendering as a composite (IE the table is contained in the composite and the row level output is contained in the top level page.). That is not my requirement though. This seems to be a tough cookie to crack. I have the source now and am starting to acquaint myself with it in an attempt to figure out what is going on. Any brilliant ideas out there?
    Code is below.
    tableColumn.xhtml
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    </h:head>
    <h:body>
    <composite:interface componentType="MyColumn">
    </composite:interface>
    <composite:implementation>
    <ice:column headerText="Make" id="column3">
    <composite:insertChildren />
    </ice:column>
    </composite:implementation>
    </h:body>
    </html>
    table.xhtml
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    <title></title>
    </h:head>
    <h:body>
    <composite:interface>
    </composite:interface>
    <composite:implementation>
    <ice:dataTable augmentTitle="false"
    rows="10"
    value="#{SessionBean1.carDataProvider.tableDisplayList}"
    var="item" >
    <composite:insertChildren />
    </ice:dataTable>
    </composite:implementation>
    </h:body>
    </html>
    Example Page
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:temp="http://java.sun.com/jsf/composite/tempcomp"
    <h:head id="outputHead1">
    </h:head>
    <h:body>
    <ice:form id="form1">
    <temp:table>
    <temp:tableColumn>
    <ice:outputText id="outputText3" value="#{item.make}"/>
    </temp:tableColumn>
    </temp:table>
    </ice:form>
    </h:body>
    </html>
    The the new UIMyColumn class
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package icefacestestapp2;
    import com.icesoft.faces.component.ext.UIColumn;
    import javax.faces.component.FacesComponent;
    @FacesComponent(value = "MyColumn")
    public class MyColumn extends UIColumn {
    @Override
    public String getFamily() {
    return "custom";
    Interestingly the row text will not render even if I add it directly to the new
    composite column class as seen below.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:ice="http://www.icesoft.com/icefaces/component"
    xmlns:composite="http://java.sun.com/jsf/composite">
    <h:head>
    </h:head>
    <h:body>
    <composite:interface componentType="MyColumn">
    </composite:interface>
    <composite:implementation>
    <ice:column headerText="Make" id="column3">
    <ice:outputText id="outputText3" value="#{item.make}"/>
    </ice:column>
    </composite:implementation>
    </h:body>
    </html>

    Hi,
    I recall an issue in 10.1.3.2 with inner frames that had the wrong JavaScript reference to the DOM. So I assume this to be the same in your case. So you can give it a try with JDeveloper 10.1.3.3 and see if this fixes the problem
    Frank

  • 5g ipod nano earphone jack doesn't work, but earphones are OK. Sound of music comes from ipod heard w/o earphone jack plugged in . How, where to fix jack?

    6th g ipod nano earphone jack doesn't produce sound with earphones that work on another 6th ipod. fairly loud music sound heard from ipod w/ no earphone plugged in. Hoe and where to get it fixed?

    I fixed my nano sound problem. Went to settings, hit center button, scrolled down to reset settings, hit center button, scrolled up to reset and hit center button. Walah,  Now earphone jack delivers sound to ear buds like before. AND yes the jack was always plugged in all the way. Simple problem, simple solution.

  • HT204135 what do you do if apple responds that the driver is unavailable. The problem is even if you have manually uploaded the drivers from the epson website, apple seems to need to look for them and if it doesn't work then you are stuck

    I am trying to install an epson bx635fwd.
    Connecting to the printer is fine and using the usb cable and network seems to work OK. The problem comes when I try and find the printer.
    It pops up as a nearby printer but apple tries to look for the softwars on its own website. It then tells me this is unavailable.
    I go to the epson website and upload the latest drivers.
    When I try again, in system preferences, the same thing happens and I get a message that the software is unavailable from the apple website....etc..etc.
    I am using 10.7 on a 24 inch imac, fully updated.
    help please

    When you select to add the printer, don't select the entry shown under Nearby Printers. Instead, select Add Printer or Scanner and from the new window that appears, select the Epson. If the Print Using menu does not change to the already installed driver and the search window appears, sometimes you have the option to skip this search and manually add the printer via the Print Using menu. If you are not given this option then trash the contents of the Epson folder in HD > Library > Printers. Then unplug the printers USB cable and reconnect. This should prompt the Mac to add the printer automatically and go looking for the driver which is available from Apple.

  • I have uninstalled, downloaded latest and installed but it still doesn't work. Why are there still files leftover even after manually removal whatever I could?

    I am a Windows 8.1 user. I have followed instructions found online. But still nothing works.
    McAfee is still saying Firefox is untrusted and will not run it.
    I have managed to delete some folders containing Firefox but there are some still remaining.
    Why?
    There was never a problem before today.

    Hi, [https://support.mozilla.org/en-US/kb/uninstall-firefox-from-your-computer this article] will help you to completely remove Firefox.
    You should ''only'' download Firefox from [https://www.mozilla.org/en-US/ Mozilla.]
    If McAfee is still not allowing it, you may need to look at the settings within McAfee.
    Hope that helps.

  • QueueBrowser doesn't work when messages are in the queue

    We are attempting to list off the messages in a JMQ 2.0 queue while our application is running. The code currently creates a new Connection & Session and then a new QueueBrowser on each queue. Following that, we get an Enumeration of the messages in the queue and print them out.
    When no messages are in the queue, this approach works fine and prints out all the relevent information. However, when a message is in the queue, the QueueBrowser just hangs. I've tried on transacted and non transacted QueueSessions and the same thing happens.
    Is this known behavior and is it possible to work around it?
    Thanks,
    Mike

    Try restarting the Mac with the ethernet cable plugged in and with a live device attached ('live device' = another Mac, a modem, a printer, or a hub/switch/router, which has been powered on).

  • Customized table cell renderer doesn't work after table data model changed

    Hi:
    I have a jtable with a custimized table cell render (changes the row color). Everything works fine while the data model is unchanged. I can change the row color, etc. However, after I delete one row or any number of rows in the table, the data model is updated and the custmized table cell renderer is not being called anymore while jtable is rendering on its cells. Seems like the table cell render is no long associated with the jtable. Is this a known problem? Any help would be appreciated.
    Thanks

    I am having the same problem. Has anybody solved this issue?
    Thanks

  • TA38625 how do you fix the device if the sleep/wake and the home button doesn't work and you are stuck at one page?

    i need my phone to start working again normally but i cant seem to find out how to fix it.

    I fail to see how oyu can even use your phone if both buttons are not working.  You would never be able to minimise one app and elect to use another.  I think it is time you got your phone fixed or replaced

Maybe you are looking for

  • How to log the error/variables info in java classes

    We are using the third party jar and the jar is independent to the application. So this is why I am not able to see any errors in the web server log. In that file using the below sample code is using. And my problem is I am not able to print the vari

  • Please help with a tutorial on Abode Flash

    Have been using abode photoshop for years. Downloaded flash each time it tells me to upgrade, but never used it. would dearly love to use it in my new website. Can someone tell me how to access it on my computer. I dont have an icon of flash that spe

  • Account 233000 needs assignment to CO Object

    Hi Im trying to post differences in Physical Inventory and this error appears. What are the possible reasons and how do I fix. Vishnu

  • Error out-hp816xgetmodulestatus.vi

    when i run the driver hp816x get module status.vi.The error out status will show error-hp816x get module status.vi.i try use ni spy to check where is the error occur.this is what NI Spy show : > 2008. viGetAttribute (0x00000000,0x3FFF0007,"") > Proce

  • Video conferencing with AS2.0?

    Hi everyone, I am about to implement Video chat function in my Flash projet, I am using as2.0, and is it possible? I download the sample code from Adobe official website: (http://www.adobe.com/devnet/flashmediaserver/sample_apps.html) I've already in