Implicit results with the ODAC 12 c version 3 Beta 2

Implicit results cannot be returned to the client. I use Oracle 12 c PDB & ClientEnd vs2012 4.0 .net framework &

ODAC 12 c version 3 Beta 2 any IDEA?

https://community.Oracle.com/message/12666525#12666525

I got the answer.

Thanks for all the help you have the solution or not at least attempted to solve.

Tags: Database

Similar Questions

  • Oracle 12 c - unexpected result with the insertion of the DBA_VIEWS view

    Hello

    I try inserting the DBA_VIEWS fields in a table belonging to a common C a PDB file ##SA user:

    (a) the PDB PDBORCL using user C ##SA connection:

    SQL * more: Production of liberation 12.1.0.1.0 kills him Sep 10 16:21:39 2013

    Copyright (c) 1982, 2013, Oracle.  All rights reserved.

    Enter the password:

    Last successful login time: kills Sep 10-2013 16:18:26 + 02:00

    Connected to:

    Database Oracle 12 c Enterprise Edition Release 12.1.0.1.0 - 64 bit Production

    With the options of partitioning, OLAP, advanced analytics and Real Application Testing

    C##SA@pdborcl 10.09.2013 > see the con_name

    CON_NAME

    ------------------------------

    PDBORCL

    C##SA@pdborcl 10.09.2013 > see the con_id

    CON_ID

    ------------------------------

    3

    (b) I create the table user SA_VIEWS_V

    C##SA@pdborcl 10.09.2013 > select count (*) in the dba_views;

    COUNT (*)

    ----------

    6220

    1 selected line.

    C##SA@pdborcl 10.09.2013 > create table sa_views_v (owner varchar2 (128), view_name varchar2 (128));

    Table created.

    (c) the insertion in the table SA_VIEWS_V gave me only 65 rows at the same time lines of content 6220 dba_views:

    C##SA@pdborcl 10.09.2013 > INSERT INTO SA_VIEWS_V (OWNER, VIEW_NAME) SELECT MASTER, VIEW_NAME DBA_VIEWS;

    65 lines were created.

    C##SA@pdborcl 10.09.2013 > commit;

    Validation complete.

    C##SA@pdborcl 10.09.2013 > SELECT MASTER, VIEW_NAME DBA_VIEWS;

    ...

    IX

    IX

    IX

    SH

    6220 selected lines.

    (d) you will find above the executed plan of the insert and the single select statement:

    C##SA@pdborcl 10.09.2013 > select * from table (dbms_xplan.display_cursor ('aj3vkggtvv9d9'));

    PLAN_TABLE_OUTPUT

    ------------------------------------------------------------------------------------------------------------

    SQL_ID, aj3vkggtvv9d9, number of children 0

    -------------------------------------

    INSERT INTO SA_VIEWS_V (OWNER, VIEW_NAME) SELECT VIEW_NAME, MASTER OF

    DBA_VIEWS

    Hash value of plan: 1585970530

    -----------------------------------------------------------------------------------------------------

    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |

    -----------------------------------------------------------------------------------------------------

    |   0 | INSERT STATEMENT.                  |       |       |   136 (100) |          |

    |   1.  LOAD TABLE CLASSIC |                  |       |       |            |          |

    |*  2 |   FILTER                         |                  |       |       |            |          |

    |*  3 |    HASH JOIN |                  |    65.  6045.   136 (0) | 00:00:01 |

    |*  4 |     HASH JOIN |                  |    65.  4875.   132 (0) | 00:00:01 |

    |   5.      NESTED LOOPS |                  |       |       |            |          |

    |   6.       NESTED LOOPS |                  |    65.  3315 |   131 (0) | 00:00:01 |

    |   7.        INDEX SCAN FULL | I_VIEW1 |    65.   325.     1 (0) | 00:00:01 |

    |*  8 |        INDEX RANGE SCAN | I_OBJ1 |     1.       |     1 (0) | 00:00:01 |

    |   9.       TABLE ACCESS BY INDEX ROWID | OBJ$             |     1.    46.     2 (0) | 00:00:01 |

    |  10.      INDEX SCAN FULL | I_USER2 |   131.  3144 |     1 (0) | 00:00:01 |

    |  11.     TABLE ACCESS FULL | USER$ |   131.  2358.     4 (0) | 00:00:01 |

    | * 12 |    TABLE ACCESS FULL | USER_EDITIONING$ |     1.     6.     2 (0) | 00:00:01 |

    |  13.    SEMI NESTED LOOPS.                  |     1.    29.     2 (0) | 00:00:01 |

    | * 14 |     INDEX SKIP SCAN | I_USER2 |     1.    20.     1 (0) | 00:00:01 |

    | * 15 |     INDEX RANGE SCAN | I_OBJ4 |     1.     9.     1 (0) | 00:00:01 |

    | * 16.    TABLE ACCESS FULL | USER_EDITIONING$ |     1.     6.     2 (0) | 00:00:01 |

    -----------------------------------------------------------------------------------------------------

    Information of predicates (identified by the operation identity card):

    ---------------------------------------------------

    2 filter (((IS NULL AND "O". ("TYPE #" <>88) OR BITAND ("O". ("" FLAGS ", 1048576) = 1048576 OR

    BITAND ("U". "" SPARE1»(, 16) = 0 OR (((SYS_CONTEXT ('userenv', 'current_edition_name') = ' ORA$ BASE ", AND)))"

    "U"." TYPE #"(<>2) OR ('U'." ' TYPE # '= 2 AND 'U'. "SPARE2" = TO_NUMBER (SYS_CONTEXT ('userenv ',' current_e)) "

    dition_id'))) or IS NOT NULL) AND IS NOT NULL)))

    3 - access("O".") SPARE3 '=' U '. ("" USER # ")

    4 - access("O".") "OWNER # '=' U '. ("" USER # ")

    8 - access("O".") ' OBJ # '=' V '. (' ' OBJ # ")

    12 filter (("TYPE #" =: B1 ET "UE".)) "THE USER #" =:B2))

    14 - access("U2".") TYPE # "= 2, AND"U2"." SPARE2 "= TO_NUMBER (SYS_CONTEXT ('userenv ',' current_editi))"

    on_id')))

    filter (("U2". "TYPE #"= 2, AND "U2"."" SPARE2 "= TO_NUMBER (SYS_CONTEXT ('userenv ',' current_edit))"

    ion_id')))

    15 - access("O2".") DATAOBJ #"=: B1 AND 'O2'." ' TYPE # '= 88 AND 'O2'. "OWNER #"= "U2". ("" USER # ")

    16 filter ((' EU'. "TYPE #" =: B1 AND 'EU '. "THE USER #" =:B2))

    47 selected lines.

    C##SA@pdborcl 10.09.2013 > select * from table (dbms_xplan.display_cursor ('bc4f1jh1snwdp'));

    PLAN_TABLE_OUTPUT

    -------------------------------------------------------------------------------------------------------

    SQL_ID, bc4f1jh1snwdp, number of children 0

    -------------------------------------

    SELECT THE OWNER, DBA_VIEWS NOM_DE_VUE

    Hash value of plan: 1508506130

    --------------------------------------------------------------------------------------------

    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Pstart. Pstop |

    --------------------------------------------------------------------------------------------

    |   0 | SELECT STATEMENT |                  |       |       |     1 (100) |       |       |

    |   1.  PARTITION LIST ALL |                  | 10000 |  1289K |     0 (0) |     1.     2.

    |   2.   TABLE FIXED FULL | X$ COMVW$ 5885ef62 | 10000 |  1289K |     0 (0) |       |       |

    --------------------------------------------------------------------------------------------

    14 selected lines.

    You have an idea about this result?

    Thank you in advance,

    Arnaud.

    Arnaud,

    This has a fairly simple explanation.

    In 12cR1, there are common objects, and there are local objects. The definition of a common object is stored in the ROOT, and only a stub for the object is stored in the PDB. The definition of a local object is stored in the PDB.

    When DBA_VIEWS is questioned in a PDB file, so we must return to lines of views both as common as the result of the query. If views Commons are not returned, then several views that a client is used to see in the result of a query DBA_VIEWS to 11.2 and earlier versions not will be seen in paragraph 12.1. For example, ALL_TABLES, DBA_OBJECTS, etc.

    When DBA_VIEWS is questioned in a PDB file, then we extraction of lines for local opinions of PDB and common views of ROOT lines. The first has value ORIGIN_CON_ID equal to the ID of the container of the PDB to which you are connected, and they value ORIGIN_CON_ID equal to the ID of the ROOT container. Given that the recovery of these lines should be done in two different containers, we go through a fixed table X$ COMVW$ *.

    The gap that you are experiencing is because this fixed table based assessment is used only to SELECT and not for etc. SELECT, INSERT AS SELECT, CREATE TABLE AS.

    Let me know if that makes sense.

    Thank you

    Thomas

  • Print problems with the recent update to Version 10.11.5

    Print problems with the recent update to the Version of El Capitan 10.11.5.  Cannot print to my Epson and Samsung printers after update to new IOS.  Print jobs get hooked on my Mac Pro.

    Roger 510 wrote:

    Print problems with the recent update to the Version of El Capitan 10.11.5.  Cannot print to my Epson and Samsung printers after update to new IOS.  Print jobs get hooked on my Mac Pro.

    Have you checked with Epson for an updated printer driver?

  • With the 38.0.5 version, I can't erase the history or add bookmarks! Even in safe mode.

    When I do CTRL-D, nothing appears, and when I select 'Book mark this page', nothing happens.
    In addition, it will NOT erase the history.

    Have refreshed, removed, reloaded, doing everything I can. These two problems.

    You can check for problems with the database places.sqlite file in the Firefox profile folder.

  • With the 3.6.3 version I can no longer do a right-click with the mouse and check the properties of a direct url link on web pages

    Windows XP Pro, SP3. Firefox 3.6.3. Since the update to this version a few weeks ago, that I can no longer do a right-click of the mouse and check the properties of an active url link on Web pages. I've always had the option before. I want this feature back!

    This add-on restores the functionality of properties: https://addons.mozilla.org/en-US/firefox/addon/14228/

  • Problem with the removal of previous versions of the player using the Customization Wizard

    Hello

    I manage the updates to Adobe Reader and use the Customization Wizard.

    I came across a question update to 11.0.07 in I get an error indicating that the installation program is unable to complete due to the installation of earlier versions.

    I checked the option "Remove earlier versions" in the Customization Wizard.

    I use an agreement of principle to create and patch deployment MSI bae.

    My guess is that I need to add the product code somewhere in the MSI tables, but need help doing.

    Thank you!

    I figured this out and has been able to solve the problem using AdminStudio.

    1. when I created the AIP for 11.0.06, a new UpgradeCode was created.  This need to be added to the MSI under the heading "General information".

    2. the upgrade code disappeared from the UpgradeTable.  Added the code and tested it on.

    During the test, the previous version has been removed and the new version successfully installed.

  • How to duplicate an image on the main screen so that I can edit and compare the result with the original?

    12 elements how to duplicate an image on the screen (as well as the photo tray) so that I can compare any edition with the original?

    1. In the full Editor, go to Edition > Preferences > general and check "enable floating Documents in full Edit Mode".
    2. Open the image so that you can see in the project bin
    3. Right-click in the thumbnail of the image in the project bin and doubles. It will come as a xxxcopy
    4. On the icon to reorganize at the top, select 2-top. You should see the original and the duplicate in the work area
  • Get-clusters. Get-view resulting with the argument cannot be null or empty

    Recently, one of my faithful scripts stopped working - all the words of wisdom and advice are welcome.

    SCRIPT:

    $clusters = get-Cluster | Get-opinion

    foreach ($cluster in $clusters)

    {

    $1stESXinCluster = Get-VIObjectByVIView - MORef $cluster. Host [0]

    }

    RESULT:

    The argument cannot be null or empty.

    In: line tank: 5:46

    + $1stESXinCluster = Get-VIObjectByVIView - MORef < < < < $cluster. Host [0]

    It would be possible, one of the pole which is located in $cluster is without a host.

    You can add the conditional operator in the present.

    $clusters = Get-Cluster | get-view
    foreach ($cluster in $clusters)
    {
    if ($cluster.Host[0]-ne $null){
    $1stESXinCluster = Get-VIObjectByVIView -MORef $cluster.Host[0]
         }
    }
    

    Hope this helps

  • With the help of Firefox 4.0 Beta 4. When I open a link in a new window, the web address does not appear in the address bar. Why?

    When I opened a web page link in "a new window" opens the link, but the information of the web page does not appear in the address bar. It is empty. If I open the link in a new tab, ho problem exists.

    In addition, if one open a link in the tab without a location in a new tab in the same window and then go to the original tab, the address bar fills up with the web address.

    Made it from several places, so it not dependent on location.

    That behavior is likely to be the top caused by an add-on, and in your case the probable guilty is IE Tab 2, the different versions of IE Tab caused problems with Firefox 4 beta, including issues with the location bar not updated.

    You can test to see if IE Tab 2 is causing your problem by disabling the it and then see if the address in a new window bar displays the address. If it isn't this add-on causing the problem, see Troubleshooting extensions and themes and problems of hardware acceleration to resolve common Firefox problems.

    FYI, the IE Tab Plus add-on has been updated recently to improve compatibility with Firefox 4 beta, you can try this one instead. The latest version is available from http://coralietab.mozdev.org/installation.html

  • a simple form with the "submit" button: can it look better?

    Hi all

    I did not imagine that a simple form (with Textfields and ChoiceFields) could do a lot of problems:

    I would like to ask a few basic questions about it. First the code (Simplified):

       GridFieldManager formfm;    
    
            EditField surname = new EditField("", "-", 25, Field.FIELD_LEFT | Field.FIELD_VCENTER | EditField.FILTER_DEFAULT);
        EditField email = new EditField("", "-", 25, Field.FIELD_LEFT | Field.FIELD_VCENTER | EditField.FILTER_EMAIL);
    
        public FormFieldManager(){
    
            formfm = new GridFieldManager(2,0);
    
            formfm.add(new LabelField("who: ", Field.FIELD_RIGHT | Field.FIELD_VCENTER));
            String[] choicewho = new String[] { "Mr", "Mrs", "Miss" };
            ObjectChoiceField who = new ObjectChoiceField("", choicewho, 0, Field.FIELD_LEFT |Field.FIELD_VCENTER);
    
            formfm.add(who);
    
        formfm.add(new LabelField("Surname :", Field.FIELD_RIGHT | Field.FIELD_VCENTER));
        formfm.add(surname);
    
        formfm.add(new LabelField("E-Mail :", Field.FIELD_RIGHT | Field.FIELD_VCENTER));
        formfm.add(email);
    
        ButtonField sendButton = new ButtonField("Send", Field.FIELD_HCENTER|ButtonField.CONSUME_CLICK);
        formfm.add(sendButton);
        FieldChangeListener listenerSendButton = new FieldChangeListener() {
        public void fieldChanged(Field field, int context) {
    
        try {
            String data = "send=true&surname=" +surname.getText();
            data += "&email=" + email.getText();      httpPost("http://bla/sendData.php", data);
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        formfm.deleteAll();
        formfm.add(new LabelField("Grazie!"));
        }
      };
      sendButton.setChangeListener(listenerSendButton);
    

    now my questions:

    (1) don't miss something (style) for the EditFields? At the present time, it is possible to change them, but the behavior (9700 Simulator) is strange: it is 'difficult' to get from one field to the other and everything moves sometimes when editing...

    How do you define a standard form that seems 'normal' and can be completed as expected in other applications? (Swifts nothing, it is possible to access the next field with the expected key / trackpad (I have no touch screen)) and so on?

    The EditFields do not even have a border, but I guess that's the standard case on BlackBerry.

    (2) the ObjectChoiceField is also very ugly... It's too big... Is it not possible to reduce the size without much effort? (I couldn't everride it correctly). (I also tried with radio buttons, but unfortunately I can't add a RadioButtonGroup to my LayoutManager, strange)

    (3) it is perhaps a stupid question: I can't get the text selected from the ObjectChoiceField (to send it can in data).

    AM EditField, it's simple:

    editfield.getText()
    

    But how is it with my ChoiceField?

    I found getSelectedIndex() but it provides a value int not text...

    Thanks in advance for any suggestions!

    silizia

    1. you have defined fields as follows:

    EditField family name = new EditField ("vorname:", "-", 20, EditField.FILTER_DEFAULT);

    The 20 means 20 characters, so it's all the field allows you to enter.

    2. Yes, the mail filter is pretty useless.  Use the EmailAddressEditField instead

    3. you can play with the scroll, but the best thing to do is to set the focus on the first field that you want people to pull together - usually the upper part of the form.

  • Tecra 8200 freezes every few minutes with the XP Pro Retail version

    I've updated a Tecra 8200 with a retail version of Windows XP Pro SP2 (256 MB RAM) it was a new installation after reformatting the drive. I think I've loaded all Microsoft Windows updates and drivers from the site Web of Toshiba.
    The laptop freezes for about 30 seconds every few minutes, even when you try to open a session.
    Also when starting for the first time there is a constant repetitive ping of the noise, which I assume is the hanging windows startup sound. Finally, it stops and it can be used for a few minutes.

    Can someone please?

    Hello

    In my opinion, you should buy more RAM. As far as I know, this unit can manage with 512 MB max. You can use PC100 256 MB (PA3069U - 1 M 25). I'm sure the spirit more RAM there are much more likely to make it work.

    I hope that all hardware components are recognized and installed correctly. You can also try to check which processes are active and I advise you to stop. On this way, the processor has more power for other applications.

  • Instrument i/o Assistant not installed correctly. No driver file not supplied with the student of Labview version.

    I installed the student version of Labview and the installation of 99%, there was a window that came.  The image just below this sentence "Installer of year DVD drivers NOR the device" at this link: http://www.ni.com/gettingstarted/installsoftware/instrumentcontrol.htm is the window that opens.  Now the problem is that I don't have a driver cd.  I downloaded a student version: http://ftp.ni.com/evaluation/labview/ekit/other/downloader/2012LV-WinEng_downloader.exe .  It is an installation file.  Then I tried to download a file of drivers, I came here: http://joule.ni.com/nidu/cds/view/p/id/3145/lang/en and I used the exe file that stores a file on the computer.  The record is just full of stuff like .bin files ect.

    I then reinstalled everything after you have uninstalled it and return to 99% a few times, and the same window came that I listed above.  I try and tap the window the the location of the driver in all folders.  None of them work.  I even tried pointing to 488,2 records, IEEE and Visa, I downloaded and they do not work.  This message in red in the window remains, 'the specified folder does not contain the correct volume' and it gives you no idea what its looking for.  So I just said to skip that part and it finishes the installation.  I put in my access code and that seems to go ok.

    After installation, I install the drivers IEEE and Visa 488,2.  Visa seems to include the wizard of e/s to istrumentom some how, but it does not solve the problem I describe below.

    Then I go in and launch Labview and I start a project and go in view the block diagram.  I'm going by dragging in the "Instrument i/o Assistant" to connect a voltmeter of pcib-usb. When I double click on the "instrument I/O assistant" window "Measurement & Automation Explorer or the instrument i/o assistant isn't installed correctly.  Please install these on the LabVIEW driver CD.  But even once, I downloaded the driver CD seems unnecessary.  The directory of the driver folder is NI Device Drivers > Aug12 > Products > "a whole series of .msi files and .cab files ouch.

    All I need is to access the Instrument i/o Assistant so I can set it up to connect with an instrument, I can be sure my program communicates properly with an instrument.  However, this is the 3rd day in the struggle with this program.  I was too frustrated this post yesterday and I'm feeling much better today.  Any suggestions on how to get this set up correctly?

    Yes! Yes! ... sigh Yes... problem solved.  Aparently the driver download was not complete and it was not obvious until he had not downloaded part 2.  Therefore part has been downloaded drivers and it solved all my problems.  Choir of angels chimes in "Haleluah!"  OK thanks me and all wizards!  Pats me on the back.  Job well done.  o / glad I could get that off me chest.  And to think that some people paid, others to be able to listen to them talk to themselves D hehe.

  • Can I get some results with the SDK sample debugging?

    Debugging a sample project folder in VB2008 Je couldn't get no results. an InDesign plugin Add?

    There is a close the .exe plugins folder, or you create a file PlugInConfig.txt.

    See "se - started.pdf ' (e.g. page 13 version CS6).

  • Export a sql result with the right button of the mouse

    We do not have the ability to export the sql result to in Developer SQL EA 3.0.4. I have very difficult ofr me, because all day in my service allows us to export to excel or export format insert,...

    We have 2 versions of the SQL (3 and 2.1) developer only because there is no such thing as this feature in 3.0.

    Do you have a solution for Developer SQL EA 3.0?

    In the EA, it's called Unload , but do not get 3.0 production, where he's back for the export .

    Have fun
    K.

  • How can I clear the cache using a Mac with the 3.6.3 version?

    I use a Mac OS x (10.6.2). I need to clear the cache in the version of Firefox 3.6.3. Help, please. Thank you.

    This has happened

    Don't know how many times

    Is today

    Try to clear your cache:

    1. in the menu bar, click Firefox | Preferences

    2. click on Advanced Panel

    3. in the Network tab , click clear now

Maybe you are looking for

  • MacBook Pro 17 "battery

    My beloved 17 mid-2010 "Macbook Pro is no longer able to hold a charge. I desperately need a new battery, but apparently they are no longer available. Someone had a bit of luck with spare batteries and what is the best to buy? On a side note, I reall

  • Do not remote connection

    I have an Apple TV remote (aluminium) and the battery has been replaced.  I have reset the apple tv box and the blue light is on.  When I press the buttons on the remote, the blue light does not blink.  Looks like that no link between the two.  My hu

  • Replace and index space

    This is another one of those things that could be an exchange of ideas to some and one bug for the other.  If I have a table 1 d, and I use the Index function, it starts at index 0 without having to connect anything to the terminal index.  If I use a

  • I can't send, transmit, or answer my emails from the Vista Home Basic platform?

    Hello I had trouble, send, transmit or answering my emails since last week. I think I'm at risk because my Norton security has expired. It would be a cause of disruption? Any help on this is appreciated. Steve

  • Availability of drivers for Windows 7

    Hello I have an Inspiron laptop, 5559 with service tag ADMIN NOTE: maintain the label removed by privacy policy > which has 10 Windows installed. I tried to format my laptop and install Windows 7 Professional. Do the drivers for Windows 7 exist and a