Ora-28509 and ora-28511 when attempting to join oracle with postgresql in query

I have attempted to run the following statement.
select a."uri", b.person_id from "sources"@postgresql a, ct_person_src_ref_store b where decoder(b.source_uri) = a."id";
This is the error I get.
ERROR at line 1:
ORA-28511: lost RPC connection to heterogeneous remote agent using
SID=ORA-28511: lost RPC connection to heterogeneous remote agent using
SID=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DAT
A=(SID=posgre133)))
ORA-28509: unable to establish a connection to non-Oracle system
ORA-02063: preceding line from POSTGRESQL
Process ID: 116908
Session ID: 5197 Serial number: 49491
I have a resulting trace file from having HS_FDS_TRACE_LEVEL = DEBUG.  It's kind of long (490 lines).  I'm hesitant to paste the whole log into this posting. Is there a certain part of the trace file that I can post that would assist in helping me determine the cause of the error?
Thanks

That works now ....
When we ask the Postgres driver which columns/data types are in that table it reports:
Entered hgopcda at 2014/04/16-20:59:52
Column:27(uri): dtype:-1 (LONGVARCHAR), prc/scl:8190/0, nullbl:1, octet:0, sign:1, radix:10
Exiting hgopcda, rc=0 at 2014/04/16-20:59:52
Which then leads to:
SQL text from hgopars, id=1, len=32 ...
     00: 53454C45 43542022 6964222C 22757269  [SELECT "id","uri]
     10: 22204652 4F4D2022 736F7572 63657322  [" FROM "sources"]
Column:1(id): dtype:-5 (BIGINT), prc/scl:19/0, nullbl:0, octet:0, sign:1, radix:0
Exiting hgopcda, rc=0 at 2014/04/16-21:05:15
Entered hgopcda at 2014/04/16-21:05:15
Column:2(uri): dtype:-1 (LONGVARCHAR), prc/scl:8190/0, nullbl:1, octet:8190, sign:1, radix:0
Exiting hgopcda, rc=0 at 2014/04/16-21:05:15
hgodscr, line 464: Printing hoada @ 0x1ab8820
MAX:2, ACTUAL:2, BRC:1, WHT=5 (SELECT_LIST)
hoadaMOD bit-values found (0x20:NEGATIVE_HOADADTY,0x200:TREAT_AS_CHAR)
DTY             NULL-OK  LEN  MAXBUFLEN   PR/SC  CST IND MOD NAME
-5 BIGINT      N          8          8   0/  0    0   0  20 id
-1 LONGVARCHAR Y          0          0   0/  0    0   0 220 uri
Exiting hgodscr, rc=0 at 2014/04/16-21:05:15
=> so far so good. The gateway exists from that routine and here it can't locate the database process anymore:
Exiting hgodscr, rc=0 at 2014/04/16-21:05:15
HS Agent received unexpected RPC disconnect
   Network error 1004:  NCR-01004: NCRS: Write error.
Could you please upload the alert.log details matching that timstamp?
- Klaus

Similar Messages

  • Getting ORA-1013 when attempting to expand tables within connections

    Getting ORA-1013 when attempting to expand tables within connections on new install of Oracle SQL developer 3.1.06.
    Any ideas?

    Hi Steve,
    The ORA-01013 usually means a timeout or, more typically on this forum, an intentional user cancellation. Searching the forum, I do not see any prior references to your exact situation. Some recommendations:
    1. SQL Developer 3.1.0.6 was an early adopter release. Upgrade to the latest and greatest: 3.2.10.09.57
    2. Review this: Re: [SQL Developer 3.0.04] Cannot Drill Down
    3. If it is a true timeout, your privileges might make a difference. If you have access to the DBA views, SQL Developer does look-ups using those and performance is better.
    So for [3], having the SELECT_CATALOG_ROLE privilege may help. I even read of one case in this forum where the poster finally discovered his database's recycle bin had an issue and the DBA needed to do some clean-up to correct the performance issue.
    Hope this helps,
    Gary
    SQL Developer Team

  • I have changed my apple id, and its ok when i sync my Iphone with Itunes, but ON my Iphone still my old apple-ID is there. I can NOT buy things from Itunes or Upgrade anything now, how to fix this?

    I have changed my apple id, and its ok when i sync my Iphone with Itunes, but ON my Iphone still my old apple-ID is there. I can NOT buy things from Itunes or Upgrade anything now, how to fix this?

    I recently changed my email address and want to change my Apple ID account to match. I have created a new Apple ID to match the new account but now I can't sign into iCloud on our phones or computer with the old Apple ID. I can't make any changes on iCloud on our phones because it directs me to the old account, which I can't sign into. I also can't sign me in on my computer to make any changes. Help!!! Now I have two addresses and can't access the one that directly affects my devices. 

  • I transfer all my games from my iphone to my pad, but the game progress is lost.... i signed on to game centre it shows all my scores and progress but when i try to play with the games, all my progress and scores disappears... can anyone help???

    I transfered all my games from my iphone4s to my ipad, but the game progress is lost.... I signed on to game centre it shows all my scores and progress but when i try to play with the games, all my progress and scores disappears... can anyone help???

    Hi bubbles213,
    The best way to move information from one iOS device to another is to back up the device using iCloud or iTunes (or both), and then restoring the new device from it.  This article will walk you through the steps:
    Transfer content from an iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    Cheers,
    - Judy

  • ClassNotFoundException raised when attempting to load Oracle Driver in jsp

    ClassNotFoundException occoured when attempting to load Oracle Driver in jsp
    I am using oracle 9i server.here is the code that i have try
    Connection connection = null;
    try
    // Load the JDBC driver
    String driverName = "oracle.jdbc.driver.OracleDriver";
    Class.forName(driverName);
    // Create a connection to the database
    String serverName = "127.0.0.1";
    String portNumber = "1521";
    String sid = "mydatabase";
    String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String username = "username";
    String password = "password";
    connection = DriverManager.getConnection(url, username, password);
    catch (ClassNotFoundException e)
    // Could not find the database driver
    } catch (SQLException e)
    // Could not connect to the database
    can i have to set classpath for this, pls help me.

    Do not modify the serverclasspath in WebServer 6.1.
    Add the path to the driver to the classpathsuffix attribute.
    change
    classpathsuffix=""
    to
    classpathsuffix="/usroracle/driver/classes12.zip" (Unix)
    or
    classpathsuffix="C:/Oracle/driver/classes12.zip" ( Windows )
    Replace the path in the example with the actual path to the driver file.
    HTH,
    Hari.

  • ClassNotFoundException occoured when attempting to load Oracle Driver in js

    ClassNotFoundException occoured when attempting to load Oracle Driver in jsp
    I am using oracle 9i server.here is the code that i have try
    Connection connection = null;
    try
    // Load the JDBC driver
    String driverName = "oracle.jdbc.driver.OracleDriver";
    Class.forName(driverName);
    // Create a connection to the database
    String serverName = "127.0.0.1";
    String portNumber = "1521";
    String sid = "mydatabase";
    String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String username = "username";
    String password = "password";
    connection = DriverManager.getConnection(url, username, password);
    catch (ClassNotFoundException e)
    // Could not find the database driver
    } catch (SQLException e)
    // Could not connect to the database
    can i have to set classpath for this, pls help me.
    PS: Sorry for my english.

    Yes, the Oracle driver jar/zip file has to be in the classpath of the webapp or the server.
    For webapp, drop the jar file in the webapp's WEB-INF/lib.
    For server, add it to server-classpath or drop it in <instance-dir>/lib

  • Getting ORA-01031 when attempting to Create Database

    I am attempting to issue a CREATE DATABASE statement via JDBC but I am getting a "ORA-01031: insufficient privileges" error. I am logged in as an administrator and I have no trouble creating tables. I am also receiving the same error when attempting this from SQLPlus. I'm stumped.
    Thanks,
    Pino

    Pino,
    I haven't verified this, but only the SYS user can create a DATABASE in Oracle, and you also need to use a special login (when going via SQL*Plus) which JDBC cannot handle. Hence your failures both via JDBC and SQL*Plus.
    By the way, if you are new to Oracle, but have experience in another database, then the Oracle idea of a DATABASE is probably different than what you're used to. That's probably why you're stumped. If you haven't already done so, I suggest reading the Oracle Database Concepts volume of the Oracle documentation, which is available from:
    http://tahiti.oracle.com
    Good Luck,
    Avi.

  • ORA-3297 when attempting to resize a datafile to a small size

    Hello,
    I have a tablespace tbspace_A which has 3 datafiles. There are numerous segments in tbspace_A. This tablespace grew to 80 gigs while lots of inserts were performed on tables. Now those tables are either dropped or have records deleted dramatically. Now I want to reduce the tablespace from 80 gigs to 50 gigs so I can return the unused space to the o/s. I am getting error ORA-3297 when trying to reduce a datafile /oradata/tbspace_A03.dbf belong to tbspace_A.
    My task now is to:
    1) Find the segments that occupy /oradata/tbspace_A03.dbf datafile
    2) alter table table_name99 move tablespace scratch_tbspace;
    3) alter table table_name99 move tbspace_A;
    4) Attemp again to resize(smaller) the /oradata/tbspace_A03.dbf
    so to return disk space to the o/s.
    Is this the correct method?
    Is there a better method?
    What are the gotchas?
    Thank you.

    This is the procedure to follow, the gotchas I see are:
    1. Watch out for relational constraints
    2. Rebuild indexes afterwards
    3. You may use the move command, unless the table has LONG/LONG RAW columns.
    You could use Enterprise Manager and/or oracle expdp/impdp to perform the remapping tasks (10g).
    ~ Madrid

  • ORA-31000 when register schema in oracle 10g

    I am trying to register a schema in oracle10g rel2. The schema contain "<xs:include schemaLocation="papiNetCommonDefsV2R31.xsd"/>" and papiNetCommonDefsV2R31.xsd is successfully registered in Oracle repository. But i am still getting the error as
    1 begin
    2 dbms_xmlschema.registerSchema
    3 ('http://localhost:8080/home/xdb/xsd/PurchaseOrderV2R31.xsd',
    4 xdburitype('/home/xdb/xsd/PurchaseOrderV2R31.xsd').getCLOB(),
    5 FALSE,
    6 TRUE,
    7 FALSE,
    8 TRUE
    9 );
    10* end;
    SQL> /
    begin
    ERROR at line 1:
    ORA-31000: Resource 'papiNetCommonDefsV2R31.xsd' is not an XDB schema document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 20
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 31
    ORA-06512: at line 2.
    I can view 'papiNetCommonDefsV2R31.xsd' when i run the query - select schema_url from user_xml_schemas

    Hi Glyn,
    Can you create a script that recreates the problem?
    I have a similiar problem, but can not recreate the exact operations sequance that cause the ORA-07445.
    Avi.

  • ORA-12154 when try to connect oracle 9i with forms9i

    Hi everybody,
    I install oracle database 9i AS in:c:\ora9ias folder, with ora9ias database name.
    and I install oracle developer suite in c:\ora9ids, and both installation were successfull.
    in oracle with sql+, I connect with system/manager@ora9ias it's working,
    but when I work with forms, I have this error mesage:
    ORA-12154, can't resolve symbolique adresse TNS?
    Thanks for your help...
    best regards

    In Oracle 9i Release 2 onwards, passwords for SYS and SYSTEM are entered by you when you install Oracle 9i R2.
    In order to connect to SQL Plus via Host String, e.g. ora9i
    User name: sys
    Password: YOUR_NEW_PASSWORD (this is he actual password that you entered when you installed Oracle 9i)
    Host String: ora9i as sys

  • Error ORA-01446 when updating a versioned table with SQLDeveloper 1.5.4

    Hi,
    I have been trying out Oracle Workspace Manager to test how versioned tables might work to our advantage. My basic testing process is:
    1. Create a table
    2. Add some data rows
    3. Version enable the table
    4. Create a workspace
    5. Goto the created workspace
    6. Update a row
    7. Commit and I get the following error
    UPDATE "COMSERV"."A_OWM_TEST" SET DESCRIPTION = 'ABCDEFGHIJzzzz' WHERE ROWID = 'AAAThNAAIAAAgwqAAY'
    One error saving changes to table "COMSERV"."A_OWM_TEST":
    Row 10: ORA-01446: cannot select ROWID from view with DISTINCT, GROUP BY, etc.
    The same update works fine from SQLPlus so my question is Does SQL developer support table versioning or have I done something wrong is setting up my versioned tables?
    Any suggestions greatly appreciated.
    Thanks
    Richard Wilkinson

    hye...
    is that any view referring to that table...
    check the code on how u create that view...
    for e.g.
    CREATE OR REPLACE VIEW testview
    (id, name)
    AS
    select * from testing;
    this also will populate that ORA-01446 error.
    just a suggestion cause i also have a similar problem on ORA-01446 and i resolve it by alter the view..
    CREATE OR REPLACE VIEW testview
    (id, name)
    AS
    select id, name from testing;
    correct me if i'm worng...i'm just a newbie..
    thank you...

  • Zen screen goes black and locks up when attempting to dock to compu

    When attempting to dock my Zen to my computer, it first starts like it is attempting to dock and then the screen goes black and the player locks up. I have to reset it in order to get it to come back on. This happens when trying to dock with Zen Media Explorer and Media Monkey. I have tried it on another computer and it happens there too. Help!

    You are talking about a Creative Zen MP3 2/4/8/6/32 GB (flash) player?
    Then check if you have the latest firmware on your Zen?
    If you do have the latest firmware e.g. < Latest revision [.2.0] 28Feb08> then
    try this:
    Recovery Mode - If you experience one or more of the following symptoms, it is recommended that you boot the player into its unique Recovery Mode, and then clean up, format or reload the firmware.
    . The player is not detected in Creative MediaSource or Windows Media Player
    2. The battery does not last as expected
    3. Your computer stops responding during file transfers
    4. There is a power outage during file transfers
    5. There is an error about firmware
    6. LCD displays a "Firmware Problem" message
    7. Your player is not responding.
    8. The player is performing erratically <---------- - ?
    Just clean-up and reboot.

  • How to fix wrong parameter usage when attempting to open torrent with Azureus (Vuze)?!

    When attempting to open a torrent through Firefox with Vuze (formerly Azureus) it gives me an error message stating: Wrong parameter usage. I have always done things this way before so not sure what caused the new error. I am able to do it through IE but not sure why I can no longer do with w/ Firefox.

    That occasionally happens to me, also, and I'm not sure why. When it does, then I click "save file" instead of "open with", then go to Vuze and click on "file", "open", "torrent files", "add files", and then my download. Works every time. Still have NO idea about why "wrong parameter usage", but this solution has always worked for me.

  • Error 48 and Error 69 when trying to synch iPod with iTunes

    I keep getting error 48 and error 69 when I am trying to synch my iPod to iTunes. I have tried all of the Apple troubleshooting steps and still cannot get music onto my iPod. Has anyone else had this issue and been able to resolve it?
    Thanks,
    Ginger2

    Hey there! I see you have Tiger...grrr...I love Tiger. But, is this a Windows problem? I am going to assume that this is a Mac OSX problem. Although, I own several Mac's, I have not run into that problem, But perhaps you could find the help on the iTunes for Mac forum:
    http://discussions.apple.com/forum.jspa?forumID=789
    I'm not sure really why you are getting that problem. That's kinda odd. But, Good Luck, I hope someone over there can help you out.
    Rachyl

  • I receive a server error when attempting to sign in with an existing apple id to set up a new matchbook air

    I have 2 apple ID's, one for an IPAD and the other for an IPHONE.  I have just purchased a new macbook air and when setting it up, I receive a 'server error' meesage when attamepting to sign in with either of the 2 pre existing apple id's.
    These pre exisiting ID's all work correctly with IPAD and IPHONE.
    Everything I have looked up says that I should be able to use either of these apple ID's to set up my new macbook air. I shoud not have to create a new apple ID or change passwords.
    I cannot progress with setting up the macbook air without signing in.
    How do I fix this?
    Help appreciated!

    Wow, I found a solution in another thread:
    I had exact same error.....
    Rebooting - Failed
    Logging in to iTunes - Failed
    Logging into itunes Store - Failed
    Logging into iTunes Genius - SUCCESS    I woulnd't have thought it would make a difference but it does Then just log into the 'other' services with iTunes.
    Good luck!
    I still need to know how to change the name to Ann, though, Mike keeps popping up - and yes, I have changed it under Settings.....

Maybe you are looking for

  • Plant address not changed in PO delivery address

    Hello, I have changed a plant address in DEV & moved to QAS.i can find all the changed data in QAS in OX10.but when i create a new po for the same plant, print preview & delivery address tab is picking old address. how to handle this? please guide me

  • What is a workspace in Oracle10g ?

    Hi all, I want to know what a workspace is in oracle database 10g , and how to work with it ! Thank you very much

  • How to make default value for controlling area for MDG-F 7.0

    how do we default certain pre-defined values for few fields? e.g. controlling area or company code for MDG finance? Thank you in advance. SP

  • View content of REF CURSOR

    Is there any way in Raptor to view the content of a REF CURSOR being passed OUT from a stored procedure? In SQL PLUS, I'll do this: SET LINESIZE 1000; SET PAGESIZE 1000; VAR X REFCURSOR; BEGIN      MY_USP(:X); END; PRINT X; Is there a Raptor equivale

  • OMS job failed - node preferred credentials not correct

    I m facing problem while submitting job to OMS, it gives me error the node preferred credential are not set correctly, i per the documentation i created a system user ntoem gives it admin rights and logon as a batch job privilage but i m still gettin