Cannot view postgresql tables

I can not view tables or open the tables folder in Data Source Explorer when connected to a postgresql 9.2.4 database in Eclipse 4.4.2
I have set the driver to postgresql-9.2-1003.jdbc4.jar.
I can connect to the database, view the schema list, view the tables in pg_catalog but I can not view the tables in the public schema.
Thanks
Graham

No response has been received.
I went back to using Netbeans. Every so often I attempt to use Eclipse as it does have some advantages over Netbeans but every time I do, I end abandoning it because something does not work.
Graham

Similar Messages

  • Cannot view the tables in SQL developer

    Hi everybody,
    I just installed SQL developer and connected to my oracle DB but I am not able to see the tables..I can execute though any SQL statements...
    I thought of installing Oracle Client but nothig changed... what could be the reason ???

    What do you get by running:
    with tabs as (
    select t.*, rownum rn -- not merge
    from sys.all_tables t
    where owner = :SCHEMA
    ), objs as (
    select o.*, rownum rn -- not merge
    from sys.all_objects o
    where owner = :SCHEMA
    AND O.OBJECT_TYPE = 'TABLE'
    AND O.GENERATED = 'N'
    AND O.OBJECT_NAME NOT IN (SELECT OBJECT_NAME FROM RECYCLEBIN)
    AND O.OBJECT_NAME NOT IN (SELECT MVIEW_NAME FROM SYS.ALL_MVIEWS WHERE :SCHEMA = OWNER)
         AND O.OBJECT_NAME NOT IN (SELECT QUEUE_TABLE from all_queue_tables WHERE :SCHEMA = OWNER)
         AND not ( object_name like 'AQ$_%_G'
    or object_name like 'AQ$_%_H'
    or object_name like 'AQ$_%_I'
    or object_name like 'AQ$_%_S'
    or object_name like 'AQ$_%_T' )
    AND ( user = :SCHEMA or not object_name like 'BIN$%' ) -- user != :SCHEMA --> object_name not like 'BIN$%'
    -- RECYCLEBIN is USER_RECYCLEBIN!
    ) select * from (
    SELECT o.OBJECT_NAME, o.OBJECT_ID ,'' short_name, t.partitioned,t.iot_type, o.OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME
    FROM OBJS O , tabs t
    WHERE o.object_name = t.table_name
    union all
    SELECT OBJECT_NAME, OBJECT_ID , syn.SYNONYM_NAME short_NAME,
    t.partitioned,t.iot_type, SYN.TABLE_OWNER OBJECT_OWNER, o.CREATED, o.LAST_DDL_TIME
    FROM sys.all_objects O, sys.user_synonyms syn,sys.all_tables t
    WHERE syn.table_owner = o.owner
    and syn.TABLE_NAME = o.object_NAME
    and o.object_name = t.table_name
    and :INCLUDE_SYNS = 1
    and :SCHEMA = USER
    This is the underlying query in the latest version 1.5.4 with update 2. So if that works, just install that version. If not, use it to investigate where it fails.
    Regards,
    K.

  • Cannot view table with spatial advisor

    I have loaded a table using SafeFME software. It did not populate SDO_GEOMETRY.SDO_SRID during the conversion from ArcInfo coverage to Oracle8i Spatial SDO_GEOMETRY.
    Since I could not view the spatial data with the spatial advisor, I ran the VALIDATE_LAYER procedure and found the error. At that point I INSERTed a value for SDO_SRID into my table, and into XXXX_SDO_GEOM_METADATA. Still cannot view the spatial data with spatial advisor. Why not?
    Platform: Sun Solaris
    Oracle8i 8.1.7
    Richard Clement

    Hi Dan:
    the Spatial Index Advisor message at the lower part of the apps' frame says 'Drew 3701 geometries' after I attempt to "Draw all geometries" (third button down on the left).
    After this, the viewport is blank. It is odd, though - it appears that the bounds are set correctly. When I add another "layer" and draw it, the viewport is referencing the correct area (the bounds for the first layer). This behavior occurs when the XXXX_SDO_GEOM_METADATA.SRID is either NULL or set to a value.
    Our MapXtreme app shows the same behavior (no display of data, no error message).
    I'll try to run the VALIDATE (layer and geometry) functions and procedures again.
    We have loaded some data with the routine using shp2sdo.exe (like in the tutorials) and those are drawing just fine. Strange.
    Richard Clement
    State of Alaska DNR

  • Index not used on view when table stats exist

    Hello,
    I would be grateful if someone comes with ideas on the following problem I'm currently facing.
    I have a table with XMLTYPE data type column:
    sql-->desc ACFBNK_STMT008
    RECID     NOT NULL     VARCHAR2(200)
    XMLRECORD XMLTYPE
    I have a view V_ACFBNK_STMT008 on that table, in which the view columns are defined as extracted tags values from the XMLTYPE field, e.g. for the view field N_BOOKING_DATE:
    numcast(extractValue(xmlrecord,'/row/c25')) "N_BOOKING_DATE"
    (note: numcast is just a simple function that returns TO_NUMBER of its input argument)
    I have also a function-based index on this field of the table:
    CREATE INDEX train4.NIX_ACFBNK_STMT008_C25
    ON train4.ACFBNK_STMT008("TRAIN4"."NUMCAST"(extractValue(xmlrecord,'/row/c25')))
    And so, I'm executing on the view the following SQL statement:
    SELECT RECID FROM V_ACFBNK_STMT008 WHERE (N_BOOKING_DATE > TO_NUMBER('20070725'));
    Now, the problem comes: when statistics exist on the view base table (that is ACFBNK_STMT008) then the above statement is not using the index and is making a "table access full". When I delete the statistics for the table then the SQL runs fast with an "index range scan".
    Which is further strange - when I change the ">" operand with a "=" the SQL statement correctly captures the index regardless of whether or not statistics exist.
    I've tried to manually rewrite the SQL and include the "numcast" function in it:
    SELECT RECID FROM TRAIN4.V_ACFBNK_STMT008 WHERE ( N_BOOKING_DATE>train4.numcast(TO_NUMBER( '20010725' ) ));
    And in this way the index is used OK even with statistics existing!
    But regretfully I don't have a way to change the application and the SQL, so the only things I can change is the view and/or the index.
    Thank you in advance,
    Evgeni
    P.S.
    I've tried gathering statistics in both the following ways but still the problem persists:
    sql-->analyze table train4.ACFBNK_STMT008 compute statistics;
    sql-->exec dbms_stats.gather_table_stats(ownname=>'TRAIN4', tabname=>'ACFBNK_STMT008', CASCADE=>TRUE, partname=>NULL);

    Oh, and I forgot to mention: I cannot change the view definition as well (for example, to remove the "numcast"), since every now and then the application would recreate it automatically with the same code. :(

  • Cannot view BLOB datatypes in Oracle10g

    After a successful upgrade from Oracle8i to Oracle10g, I cannot view tables with BLOB datatypes. I'm getting the following error in SQL*PLUS upon quering the table:
    SP2-0678: Column or attribute type can not be displayed by SQL*Plus
    When i try to do the same thing from TOAD, I'm getting this error instead:
    A Query with LOB's requires OC18 mode, but OC17 mode is used.
    I have also tried to create a new table with BLOB datatype (since i thought the culprit was a broken migrated data) but I got the same error. What am I missing here????

    Hy,
    you never could view blobs via sqlplus
    you only could use utl_raw.cast_to_varchar2 if there ist text inside your blobs.
    regard
    Martin

  • Adding field in Maintenance view of table

    Hi,
    I am trying to create a custom maintanable table.  Now the requirement is I need to add one more extra  field in the maintenace view of the table which should not be in the table fields and is for display only in the maintencae view.
    I tried adding a cloumn by editing the screen program generated by the table maintenance generator. I get the the display in the maintenance view of that extra field. But I dont get the values populated.
    Can you please let me know in which PBO or PAI i should write the module programe ..
    Help will be rewarded with points.

    Hello Bluesh
    Normally the extra field should be from a table that has a foreign-key relationship to your main table. Thus, add this additional table to the list of tables for the view. If it does not have a suitable relationship you cannot add it to the list of tables.
    Afterwards add the required field to the list of view fields and set its property to 'R' = read-only.
    If correctly defined there is no need at all to modify the screen(s) or the coding of the PBO/PAI modules.
    Example: your z-table contains field KUNNR (value table KNA1) and you want to add the NAME1 field to your maintenance view
    add table KNA1 to the list of tables
    add field NAME1 to view fields
    set its property to 'R'
    regenerate function modules and screens
    Regards
      Uwe

  • Error message when trying to view a table using SM30

    I'm getting the following syntax message for all tables in a function group:
    "BSPC_DL_XMLSTRX2" must be a flat structure. You cannot use internal tables, strings, references, or structures as components. -
    I believe this was generated through the easy enhancement workbench.  It won't let me modify the structure using the Table Maintenance Generator in SE11.  How can I get this object removed from this function group? 
    thanks.
    Linda

    Hi
    Common issues for this :
    1. Once you install crystall add on ,you need to go to Crystal report Administration >Account setup .
    Put on the user name and password and click on creating ext tables
    Try then running the report .
    If not the case ,
    make sure you install runtime .
    You need :
    1.Crystal report basic from SAP download -(Not necessary if you want only report viewer >
    2.You need to have crystal integration addon (I think service pack is SP1)
    3.Make sure you have runtime install
    When you are installing ,make sure you restart your PC before you do or remove temporary file s
    Hope this solves your issue
    Bishal

  • Cannot view data on physical layer on Oracle BI administration tool

    Hi everyone
    I have a schema1 and table1, table2, table3.
    I have connect in odbc using the schema username and password and it was successful.
    I can view the data using toad and sql oracle developer with schema username and password.
    I also import the tables in Oracle BI administration tool with my schema username and password.
    But my problem is i cannot view the data on the table in physical layer using my schema username and password.
    Please help,
    Thanks in advance
    Edited by: hanson on Sep 16, 2009 7:15 AM

    Hi,
    I'm confused about the last bit, you did a database import to get the tables into the RPD, which worked, but now they are not showing in the phsyical layer of the rpd? They should be there under a database with the name of the ODBC/OCI that you used when you imported them.
    If they are not there then this would make me think that the import of the tables has not worked, try importing just one and see what happens.
    Regards,
    Matt

  • How to view /SAPAPO/ tables using SQL Studio question

    Hi,
    This is for Livecache 7.4 on AIX.
    I have installed a SQL Studio 7.6. When I logged using SUPERDBA/admin, I can only see tables owned by SUPERDBA, SYS, and DOMAIN.
    I cannot see any tables owned by SAP<LC Name>. I want to see details about table e.g. /SAPAPO/ORDKEY, which is owed by SAP<LC Name>.
    Is it possible to see it using SQL Studio?
    Please let me know if anybody has any idea about it.
    Regards.
    Sume.

    Hello Sume,
    If you would like to see details about table e.g. /SAPAPO/ORDKEY.
    =>
      Did you check the owner of this table?
    => You could check, for example, in LC10 -> liveCache:Monitoring
    -> Problem Analysis -> Tables/Views/Synonyms ->
       Database Object Schema           SAPLCT
       Name of Database Object          *
       < execute >
       & review if the table /SAPAPO/ORDKEY is listed.
    => If the table is listed, you should be able to run the select statement as SAPLCT user on this table.
    If you are sure that you was using the SAPLCT user, please
    Check if this user has application tables:
    < May be the password was changed from the default sap for the
    Standard liveCache user, you should know it. >
    dbmcli -d LCT -u control,control
    dbmcli on LCT>sql_connect SAPLCT,sap
    dbmcli on LCT> sql_execute select * from users
    dbmcli on LCT> sql_execute select * from users
    < I would like to see what DBA users you have in liveCche &
      when the SAPLCT user was created. >
    dbmcli on LCT>sql_execute select tablename from tables where owner='SAPLCT'
    < If the SAPLCT is the owner of the liveCche application tables,
      and the table /SAPAPO/ORDKEY will be listed. >
    dbmcli on LCT> sql_execute select * from tables where owner='SAPLCT'
    dbmcli on LCT> sql_execute select count(*) from "SAPLCT"."/SAPAPO/ORDKEY"
    < to get number of the entries in the table with owner - SAPLCT >
    dbmcli on LCT>exit
    You could also to check what user did you set for the LCA connection.
    And run //om16 transaction in the liveCache relevant client on the system
    to see the entries in the /sapapo/ordkey & /sapapo/ordmap in liveCache in this client.
    Question: What details you need about table /SAPAPO/ORDKEY?
              Do you have problems on your system?
    Thank you and best regards, Natlia Khlopina

  • Selecting from a view when tables are in more than one schema problem

    I give up where am I missing it. Why is the ORA-01031 error being generated on the view u1.bv1. In testing even if I give object access to u3 I still get the same errors:
    SQL>
    SQL> drop user u1 cascade;
    drop user u1 cascade
    ERROR at line 1:
    ORA-01918: user 'U1' does not exist
    SQL> drop user u2 cascade;
    drop user u2 cascade
    ERROR at line 1:
    ORA-01918: user 'U2' does not exist
    SQL> drop user u3 cascade;
    drop user u3 cascade
    ERROR at line 1:
    ORA-01918: user 'U3' does not exist
    SQL> drop role aRole;
    drop role aRole
    ERROR at line 1:
    ORA-01919: role 'AROLE' does not exist
    SQL>
    SQL>
    SQL> select user from dual;
    USER
    SYS
    1 row selected.
    SQL>
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Solaris: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    5 rows selected.
    SQL>
    SQL> create user u1 identified by u1 default tablespace users
    2 quota unlimited on users;
    User created.
    SQL>
    SQL> create user u2 identified by u2 default tablespace users
    2 quota unlimited on users;
    User created.
    SQL>
    SQL> create role aRole;
    Role created.
    SQL>
    SQL> create user u3 identified by u3 default tablespace users;
    User created.
    SQL>
    SQL> grant aRole to u3;
    Grant succeeded.
    SQL>
    SQL> alter user u3 default role all;
    User altered.
    SQL>
    SQL> grant create session to u3;
    Grant succeeded.
    SQL>
    SQL> create table u1.t1(c1 number);
    Table created.
    SQL>
    SQL> create table u2.t1(c1 number);
    Table created.
    SQL>
    SQL> grant select on u2.t1 to u1;
    Grant succeeded.
    SQL>
    SQL> create or replace view u1.bv1 as
    2 select u1.t1.c1 as c1 ,u2.t1.c1 as c2
    3 from u1.t1, u2.t1 where u1.t1.c1 = u2.t1.c1;
    View created.
    SQL>
    SQL> grant select on u1.bv1 to aRole;
    Grant succeeded.
    SQL>
    SQL> create or replace view u1.gv1 as select * from u1.t1;
    View created.
    SQL>
    SQL> grant select on u1.gv1 to aRole;
    Grant succeeded.
    SQL>
    SQL> connect u3/u3
    Connected.
    SQL>
    SQL> select * from u1.bv1;
    select * from u1.bv1
    ERROR at line 1:
    ORA-01031: insufficient privileges
    SQL>
    SQL> select * from u1.gv1;
    no rows selected
    SQL>
    SQL> spool off

    User u1 cannot do a grant on a view to other user if the view uses tables from other schemas unless you do a "with grant option" grant.
    You need to do the following to make it work:
    SQL> grant select on u2.t1 to u1 with grant option;
    Grant succeeded.
    SQL>

  • Cannot create temporary table having identity column

    Hi experts,
    I saw the above error msg while running the following statement:
           create local temporary column table #tmp_table (c1 int GENERATED by default AS IDENTITY (start with 1 increment by 1), c2 int)
         Could not execute 'create local temporary column table #tmp_table(c1 int GENERATED by default AS IDENTITY (start with ...'
         SAP DBTech JDBC: [7]: feature not supported: cannot create temporary table having identity column: C1: line 1 col 48 (at pos 47)
    I understand we can support normal column table creation with identity column, but don't know why cannot support temporary column tables with identity column. Is there any configuration that can enable it for temporary column table? Or what can I do to support it indirectly, like writing a trigger to support it or something else?
    If not, then is there any future plan for this feature?
    Regards,
    Hubery

    Hi Hubery,
    I've heard this trail of arguments before...
    Customer has a solution... they want it on HANA... but they don't want to change the solution.
    Well, fair call, I'd say.
    The problem here is: there's a mix-up of solution and implementation here.
    It should be clear now, that changing DBMS systems (in any direction) will require some effort in changing the implementation. Every DBMS works a bit different than the others, given "standard" SQL or not.
    So I don't agree with the notion of "we cannot change the implementation".
    In fact, you will have to change the implementation anyhow.
    Rather than imitating the existing solution implementation on ASE, implement it on SAP HANA.
    Filling up tons of temporary tables is not a great idea in SAP HANA - you would rather try to create calculation views that present the data ad hoc in the desired way.
    That's my 2 cts on that.
    - Lars

  • Demantra - Cannot view a level in Worksheet

    I have populated data in Item Branch Category 1  in t_src_sales_tmpl table. After 'EBS Full Dowload' data is populated into t_ep_e1_it_br_cat1 (Item Branch Category definition table) and is also updated in mdp_matrix. Now I want to add this level 'Item Branch Category 1' into worksheet. However I cannot view the level in worksheet editor [Worksheet Designer --> Aggregation. In the Available Levels box]. Is there anything that I need to do to make a level visible in 'Available Levels' of the Worksheet?

    What's the word on this?  I am still having the same issue.  This is very problematic for many pdfs on many websites! Can someone from Adobe please answer this???

  • Cannot view cube data in mmeasure data viewer

    I am using AWM(10.2.3A) with Oracle EE 10g(10.2.1)with the appr patchset(for enabling OLAP option).
    I have created dimensions(time,product),cube (cube1),measures (sales) in a AW,
    and mapped it to the source tables as well.
    in time dimension,i created levels like,year,quarter,month
    in product i created just 1 level,drink.
    time i mapped to a year_table table which i created as follows:
    create table year_table(yid number,year varchar2(30),qid number,qtr varchar2(30),mid number primary key,month varchar2(30));
    product i mapped to product_table which i created as follows:
    create table product_table(pid number primary key,product varchar2(30));
    sales i mapped to sales_table which i created as follows:
    create table sales_table(id number primary key,mid number,pid number,sales number));
    for all tables i inserted values.
    when i did a maintain on AW,it was successfull.
    after maintaining ,when i try to view data on my cube,using Measure Data Viewer,
    I was able to see my dimensions,but no data.
    also in AWM right hand canvas in mappings when i do a right click on my fact table(for cube mapping) i am not able to see the. data.
    Can anybody help me in this regarrd.

    If you check the OLAPSYS.XML_LOAD_LOG table you will find the log for your build. Did you manage to load any dimension members? The log will tell you how many records were loaded and how many were rejected.
    It is strange that you cannot view the source data from your fact table. Try launching AWM using the AWMC.EXE file. This will launch AWM via a command window. All error messages will be recorded in this window. Try viewing the data from your source table and see if any additional error messages are recorded in the log window.
    One thought - when you connect to AWM do you provide a full JDBC connect string (host:port:sid) or do you supply a TNSNAME entry? Try using the JDBC connection string and see if that resolves the problem.
    Keith Laker
    Oracle EMEA Consulting
    BI Blog: http://oraclebi.blogspot.com/
    DM Blog: http://oracledmt.blogspot.com/
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    BI Samples: http://www.oracle.com/technology/products/bi/samples/

  • When I save an image on my ipod touch 3rd gen then go to the photos, the library updates/rebuilds, then I cannot view the picture as it just comes up as a picture of a grey camera that says JPG.  It never used to do this, how do I fix it?

    I go to save a picture (bu holding my finger down on the image, then pressing save image, when the option comes up), and then go to the photos to view the picture, its says updating library and takes about a minute to finish loading and rebuilding/updating the library.  After it has finished updating the library I cannot view the picture I saved because it comes up as a picture of a grey camera that says JPG (I assume this is some sort of file, because if i save multiple pictures only one JPG, gery camera image shows up.) My ipod never used to do this.  Any idea on how to fix it?

    Try a manual install following directions in link below.
    Basic troubleshooting steps. 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD  120G Vertex 3 SSD Boot HD  

  • How to find how name of view and table using in Discoverer report

    Hi all,
    Please help me, i have requirement, i need name of views and tables used in discoverer reports.
    plz help its urgent.
    regards,
    Vivek Gautam

    As per my knowledge goes, We can see from Administrator which Folder is associated with a Workbook. Else you may have to manually open each and every workbook and look for the objects.

Maybe you are looking for

  • Can't open any PDF file with Adobe Acrobat XI Pro

    I have tried to open multiple Acrobat files but none will open. I get a FATAL ERROR message saying: "Acrobat failed to connect to a DDE server."  I've created documents in word and publisher and am able to convert to pdf format but after the pdf file

  • Display a web page or flash file in an email

    we are looking to send clients an e-card for christmas and im trying to figure out how i could incorporate this into a web page and insert it in the email so it displays when they open it. im also wondering how you could insert a flash file in an ema

  • Pattern matching a string

    I'm trying to pattern match a string in java which has the following syntax: ENSMUS followed by one character which can be anything followed by 11 digits. I've done this in javascript using the following regex: var regex = /^ENSMUS(\w{1})(\d{11})$/;I

  • Undeploying a SOA composite in OIM 11gR2

    I have two versions of approval processes deployed in SOA. What are the steps to undeploy the older version SOA composite which is not in use. Thanks in advance

  • Problem with in type ComboBoxCollum in grid

    Hi, I try to load one collum type ComboBoxCollum in my grid and received this message: Unable to cast COM object of type 'SAPbouiCOM.GridColumnClass' to interface type 'SAPbouiCOM.ComboBoxColumn'. This operation failed because the QueryInterface call