Browsing table data with server explorer.

I'm trying to browse data from a table in a different schema. When I double click on the table, I keep getting an error. Schema object MY_TABLE.MY_SCHEMA : Table @ JIN.dbprd/prd1 no longer exists in the database. I can see that (at least in the message), the table and schema is clearly reversed. Anybody else having this problem? is this a known issue? any fix?

If you would like to try to diagnose this, please try the following:
1) Close Visual Studio and all applications that are connected to Oracle
2) In the same Oracle Home as the ODT install, please find the SQLNET.ORA file
3) In that file, add a line:
TRACE_LEVEL_CLIENT=16
4) Start Visual Studio
5) Reproduce the error as efficiently as possible (with no extra steps)
6) Close Visual Studio immediately
7) Search for the newly created SQLNET.TRC file
8) Zip the file, rename the extension to .zipa or something else and email to [email protected]
9) Remove the TRACE_LEVEL_CLIENT entry in SQLNET.ORA

Similar Messages

  • How to export table data with coloring of cell according to value.

    Hi all,
    I am using jdeveloper 11.1.1.6
    i want to export table data with lot of formatting. like with coloring of cell according to value and so many.How to do that?

    Hi,
    like with coloring of cell according to value and so many.How to do that?
    Answer is, you can't
    Frank

  • Hi I am using an iphone 4 and its was working fine.  Presently its giving browsing error.  Whenever I am trying to browse internet by using safari or any other browser it retruns with "server not responding" Can somebody give me a solution for this ?

    Hi I am using an iphone 4 and its was working fine.  Presently its giving browsing error.  Whenever I am trying to browse internet by using safari or any other browser it retruns with an error message "server not responding" Even the same thing is happening with youtube also. The worst part is am able to check my mails, able to chat and so on... only thing not able to browse through the browser.  I have tried restore option also.  This is happening with both Wlan and Data con. too
    Please help...

    I do not really know much about this kind of problem, but i may be your internet connection.
    If you are on your own #G network then:
    Go to Settings > then enable "Airplane Mode". Count to 10 and then disable it.
    Then wait patiently until you get a good connection and then try again.
    If you are on a nearby Wi-Fi connection then:
    Go to Settings > Wi-Fi > then disable then enable after counting to 10. Make sure that you are connected and then try again.
    If all else fails, then you need to contact your provider for assistance.
    Sprint:888-211-4727
    AT&T:?
    Verizon:?

  • Bug: object browser shows invalid identifier when browsing  table data

    Hello,
    getting the following message:
    failed to parse SQL query:
    ORA-00904: "some column name": invalid identifier
    to reproduce,
    install the sample application in application express
    open object browser (tables are displayed)
    click on first DEMO table
    in the right panel, click DATA to view contents of table
    click on 2nd DEMO table
    repeat process for each table, eventually it will appear; mileage varies between table clicks to error
    the data can be displayed without errors by simply clicking DATA link again
    I don't find a particular pattern as to when it appears (time between clicks, order of tables clicked)
    my environment: oracle xe, appex on local machine with windows xp
    Thanks.
    Albert

    Hello,
    This is a known bug/issue because of how the object browser iframe interacts with some of the ajax data pulls.
    It will be fixed in 3.0 when we drop the iframe from the object browser and make it fully Ajax based.
    Carl

  • Export and import table data with Java

    I need a library for simple exporting and importing table data.
    The data should be exported to a SQL file with insert statements.
    I just want to tell the library the table name, the connection and where to store the file. The usage should be very simple.
    Are there any small libraries for this? Finished calsses and methods which I can just call?

    I need a library for simple exporting and importing
    table data.
    The data should be exported to a SQL file with insert
    statements.Every database has utilities to export/import data from tables. Take a look at your database manual.

  • How join a type table data with a real table.

    Hello,
    I want make a join with a type table data and real table.
    But i don't know how make this.
    Can you help me?????
    I have this pl/sql:
    SET LINESIZE 5000;
    DECLARE
    valor NUMBER;
    TYPE reg_tablita IS RECORD
    (cuenta B_TB_CTAFACTU.B_CO_CTAFACTU%TYPE,sistema B_TB_CTAFACTU.B_CO_SISTEMA%TYPE);
    TYPE Tabla IS TABLE OF reg_tablita INDEX BY BINARY_INTEGER;
    I                         BINARY_INTEGER;
    Array Tabla;
    BEGIN
    Array(1).cuenta:='000001';
    Array(1).sistema:='AA';
    Array(2).cuenta:='000002';
    Array(2).sistema:='BB';
    Array(3).cuenta:='000003';
    Array(3).sistema:='CC';
    Array(4).cuenta:='000004';
    Array(4).sistema:='DD';
    Array(5).cuenta:='000005';
    Array(5).sistema:='EE';
    SELECT count(*) into valor FROM
    TABLA A, Array WHERE
    B_CO_CTAFACTU=Array.cuenta and B_CO_SISTEMA=Array.sistema
    quit;
    Thanks very much!!!!

    You need to have the types defined as SQL types (created in database) in order to be able to use them for joining. PL/SQL object types can not be joined.

  • Order table data with comparing rows

    Hi,
    My question is...
    I have table with with 5 columns this actually is been loaded from a file and there is no direct PK, but for that combination of columns as used to make them unique
    code, person, case
    Table X
    CODE             CASE              OLD_ID                NEW_ID            PERSON       AUTH
    01              ab122         1234               0001             AU123     99393
    07              vv353          7872               0919             FV982     78282
    01              ab122         1982               9929             AU123     99393
    04               hjsss         8839                8302            JK920     32320
    01              ab122         0001               1982             AU123     99393
    05              cg899         6728               32322           IKL020     65252
    07              w353          0919                8282             FV982     78282
    now I need to order this data comparing row values of old_id to new_id for each of the combinations of code, person, case
    need output like below
    Table X
    CODE             CASE              OLD_ID                NEW_ID            PERSON       AUTH
    01              ab122         1234               0001             AU123     99393
    01              ab122         0001               1982             AU123     99393
    01              ab122         1982               9929             AU123     99393
    04               hjsss         8839                8302            JK920     32320
    05              cg899         6728              32322           IKL020     65252
    07              vv353          7872               0919             FV982     78282
    07              w353          0919                8282            FV982     78282
    hot to get this result, any help is much appreciated..
    Thanks,
    AK.

    Yes you are right, I took it down to edit this in that time you have posted the message...
    Question:
    Table data need to be sorted by matching old_id with new_id
    actual table : here rows are randomly arranged
    Table X
    CODE             CASE              OLD_ID                NEW_ID            PERSON       AUTH
    01              ab122         1234               0001             AU123     99393
    07              vv353          7872               0919             FV982     78282
    01              ab122         1982               9929             AU123     99393
    04               hjsss         8839                8302            JK920     32320
    01              ab122         0001               1982             AU123     99393
    05              cg899         6728               32322           IKL020     65252
    07              w353          0919                8282             FV982     78282
    output table: here if you see old_id of row 2 is matched to new_id of row 1.. and so on
    Table X
    CODE             CASE              OLD_ID                NEW_ID            PERSON       AUTH
    01              ab122         1234               0001             AU123     99393
    01              ab122         0001               1982             AU123     99393
    01              ab122         1982               9929             AU123     99393
    04               hjsss         8839                8302            JK920     32320
    05              cg899         6728              32322           IKL020     65252
    07              vv353          7872               0919             FV982     78282
    07              w353          0919                8282            FV982     78282
    so, I need a query where I can generate this output..

  • Problem generating Proxy with Server Explorer

    Hi,
    i've tried too generate a SAPProxy with .net Connector 2.0.
    When i drag the desired function from the Server Explorer to the designer i've got following error message:
    "Server Explorer: The system could not find the specified file."
    What can cause this error and how can a solve this problem?
    regards
    guenther

    Hi Reiner,
    thanx for your help! it works great now!
    regards
    guenther

  • Firefox sync does not replace my local data with server data

    I reformatted my laptop and re-installed Firefox 3.6 and also the add-on. I manage to setup firefox sync and chose the option to erase local data and replaced with server's data. to my dismay, my bookmarks are not synced.

    If you didn't make a backup of the Sync key before reinstalling Windows then you can't access your sync account to sync your data to the new installation.
    If you reset your sync key and generated a new sync key then that causes your data to be removed from the sync server and can't be accessed anymore.

  • Transport table+data one server to another server

    Hi expert,
    i have 2 servers DEV1 & DEV 2 with ecc 6.0 oracle 10g.
    Both server have same patch level and same version of OS,DB & Patch.
    in DEV1 have a table which consist  54500 rows i want move to this table and data in DEV2 server.
    Please suggest How can i do this if i create a transport or copies request it move only structure not data.
    Regards,

    Hi,
    It is possible through SAP by creating transport request.
    See the below link for how to:
    Transporting Table entries from one server to another
    [http://****************/Tips/Basis/Transport/TableEntries.htm|http://****************/Tips/Basis/Transport/TableEntries.htm]
    Regards.
    Rajesh Narkhede

  • Compare table data with data in csv file

    Hi, I have a database table with ~32 milj rows. I want to compare the data from a csv file(~ 1500000 rows) with the data in a specific database column. And as a result I want to see what rows exists in both the csv file and db and what records in csv file are unique. The text I'm searching for is VARCHAR2. I am not allowed to export the database table so that's not an alternative. This is also a production environment so one need to be careful not disturbing the production.
    Rgds J

    2c0eaa24-46c9-4ff7-9f01-564f37567899 wrote:
    Hi, I have a database table with ~32 milj rows. I want to compare the data from a csv file(~ 1500000 rows) with the data in a specific database column. And as a result I want to see what rows exists in both the csv file and db and what records in csv file are unique. The text I'm searching for is VARCHAR2. I am not allowed to export the database table so that's not an alternative. This is also a production environment so one need to be careful not disturbing the production.
    Rgds J
    How do I ask a question on the forums?
    https://forums.oracle.com/message/9362002#9362002
    Does CVS fille reside on DB Server system now?

  • Pages Link Table Data With A Chart

    Hello,
    I am wondering if in pages one can link the data in a table with the charts in the same document.
    Thanks in advance

    No. It might be better for you to work in Numbers if you are doing a lot of this.
    Jerry

  • Problem getting the Table Data with the selection listener

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

  • How to incorporate table data with Oracle Business Rule

    hello
    I want to use table with data in Oracle Business Rule can i do it.
    if yes please write how .
    with regs
    saleem

    Hi,
    like with coloring of cell according to value and so many.How to do that?
    Answer is, you can't
    Frank

  • Replace Table Data With Search

    I want to run a search but only on a selected 8 cells, and want to change all the words "Blue" to "Red", even I select those cells when I hit Search it seems to replace all of the cells... Any ideas anyone?

    Numbers won't do a find/replace limited to the selection.
    Two ways of accomplishing this:
    1. Don't use "Replace all". Instead,click "Find Next", then "Replace & Find"for each occurrence you want to change, and "Find next" on each that you wish to stay the same.
    2. To limit the changes to a single table, select each of the tables you do NOT wish to change and go Arrange > Lock. When all are locked, proceed with the Find/Replace, using Replace All. All occurrences on the unlocked table will be replaced. All data on the Locked table(s) will remain unchanged.
    Regards,
    Barry

Maybe you are looking for

  • Open PS confirmation error.

    Hi Guys, I am facing a problem while working in Open PS. I have created a project in R/3 . Then i have downloaded the project from R/3 to Open PS. There I can add an activity & can upload the revised project to R/3. But the problem is if I confirm an

  • Debugging of Routines in transfer rules

    Hi All, I wrote a routine and trying to debug.I tried to debug using "Simulate update" option when we right click in the monitor screen.I don't know how to proceed from there.Could some one explains the steps to debug the routine in transfer rules? Y

  • Reg:page options in dashboard

    hi, i have followed the link below to remove the page options button in dashboards http://obiee101.blogspot.com/2009/07/obiee-hide-page-options-button.html but now i just want to add a link in the place of page options called "edit dashboard" which a

  • Repository owner installation failed OWB10.2

    Hello OWB 10.2.0.1.31 successfully installed in 10.2.0.1.0 database on Windows Server 2003. Installation of Warehouse Builer Runtime Repository fails at 5% with following exception: "The Warehouse Builder repository owner installation failed on user

  • Loading DATE datatype into a measure

    Hi Folks, Is there any way to load DATE values into a measure? Is yes, how? I'm using OLAP 10G. Thanks, JSoufer