problem with learning several geometric pattern

Hello users of Labview,.

My goal is to load different templates located in the target folder, create one or more models then, perfom some treatment (located in another file) image.
The example provide in file vision works perfectly but if I change the path, it seems impossible to create a multiple repeat. In fact, I got the following error message:

Error 1074395628 has occurred to IMAQ learn several geometric patterns

IMAQ Vision: Image model corresponding invalid geometry.

Certainly, I do not understand a part but I don't know where is my mistake.

I add to the multiple associated model, an example of template image and the image to test.

Please, can I have a help or suggestion to understand this problem.

Thanks in advance for your help,

Best regards

Hi matriax,.

Good to know it helped.

Come to your questions,

-Yes, model geometric information, or even in vision assistant also will not work.

-In my code too, it does not work. The reason is explained below.

-Yes, model created with assistatn vision should also work.

Coming to the creation of a model, there are two geometric methods correspondent-function based and based edge.

-Labview code uses geometric based function while u have created the model in edge based method.

-If you see in vision assistant, settings tab, you have the type of algorithm two options. Select the base feature and you should be able to run it and then assistant labview and vision.

For more details on geometric matching please refer to http://zone.ni.com/reference/en-XX/help/372916L-01/nivisionconcepts/geometric_matching_technique/

Hope that helps let me know if you have any other questions.

Tags: NI Software

Similar Questions

  • I'm having a problem with the mixture of patterns and 3d objects

    Hello

    I'm new on sequelae and would appreciate any answer to the problem I have.

    I do a few different online tutorials to try and learn different techniques.

    I'm running into a recurring problem that I can't fix. A lot of these tutorials I do have me change to 3D layers. The problem I have is once I turn a layer in 3D, I am unable to assign a blending mode for the layer. In many of these tutorials, the author uses 'screen '.

    I use CC.

    Any help would be great. I guess its something simple, I'm more looking, but I tried Googling that problem and I can't seem to find a solution.

    Once again, any help would be great!

    Thank you!

    Patrick

    Make sure you have the composition advanced set of Classic 3D rendering parameters and made not traced to the RADIUS.

  • Problem with joining several tables

    Hello PL/SQL gurus and experts.

    I use Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64-bit Production version
    I followed two tables

    Student-
    drop table TT3;
    create table TT3(FeesCntlr,CommCntlr,LatePayCntlr,Name,Age) as select
    1,11,21,'Mike',25 from dual union all select
    2,12,22,'Clark',26 from dual union all select
    1,11,21,'Mike',27 from dual union all select
    4,17,27,'Ussan',28 from dual union all select
    5,13,21,'Linda',29 from dual union all select
    6,14,24,'Obrek',35 from dual union all select
    7,15,25,'Batty',45 from dual union all select
    8,16,26,'Nicky',38 from dual union all select
    1,11,21,'Mike',25 from dual union all select
    2,12,22,'Clark',26 from dual union all select
    1,11,21,'Mike',27 from dual union all select
    4,17,27,'Ussan',28 from dual union all select
    5,13,21,'Linda',29 from dual union all select
    6,14,24,'Obrek',35 from dual union all select
    7,15,25,'Batty',45 from dual union all select
    8,16,26,'Nicky',38 from dual ;
    Fees-
    drop table TT4;
    create table TT4(FeesCntlr,CommCntlr,LatePayCntlr,Fees,Commission,Latepayment) as select
    1,11,21,25000,4456,223 from dual union all select
    2,12,22,356000,3321,0 from dual union all select
    1,11,21,456000,223,33 from dual union all select
    4,17,27,32890,0,0 from dual union all select
    5,13,21,0,778,223 from dual union all select
    6,14,24,332567,222,0 from dual union all select
    7,15,25,228990,22,0 from dual union all select
    8,16,26,0,0,2234 from dual union all select
    1,11,21,22345,0,0 from dual union all select
    2,12,22,2222789,2,33 from dual union all select
    1,11,21,334567,0,0 from dual union all select
    4,17,27,9987250,2,33 from dual union all select
    5,13,21,2227890,0,0 from dual union all select
    6,14,24,2278231,0,3345 from dual union all select
    7,15,25,223456,2,0 from dual union all select
    8,16,26,223890,0,0 from dual ;
    I am looking forward to the fees, commissions and surcharges output for each student and by using the following SQL code.
    select t3.Name,t3.age,t4.Fees
    from tt3 t3, tt4 t4
    where t3.FeesCntlr=t4.FeesCntlr
    union
    select t3.Name,t3.age,t4.Commission
    from tt3 t3, tt4 t4
    where t3.CommCntlr=t4.CommCntlr
    union
    select t3.Name,t3.age,t4.Latepayment
    from tt3 t3, tt4 t4
    where t3.LatePayCntlr=t4.LatePayCntlr
    but it gives me not the correct result and showing a lot of entries and display only the "Expenses" column then only I'm looking for the output to be -
    Name     Age     Fees          Commission     Laypayment
    Mike     25     837912          4679          256
    Clark     26     2578789          3323          33
    Ussan     36     10020140     2          33
    Linda     38     2227890          778          223
    Obrek     38     2610798          222          3345
    Batty     32     452446          24          0
    Nicky     23     223890          0          2234
    Kindly help me with this. Thank you in advance for your time and effort.

    Hello

    I see your table TT3 has duplicated lines. A reason for this?

    Rather than run a separate, I created it without duplicated lines:

    create table TT3(FeesCntlr,CommCntlr,LatePayCntlr,Name,Age) as select
    1,11,21,'Mike',25 from dual union all select
    2,12,22,'Clark',26 from dual union all select
    4,17,27,'Ussan',28 from dual union all select
    5,13,21,'Linda',29 from dual union all select
    6,14,24,'Obrek',35 from dual union all select
    7,15,25,'Batty',45 from dual union all select
    8,16,26,'Nicky',38 from dual;
    
    create table TT4(FeesCntlr,CommCntlr,LatePayCntlr,Fees,Commission,Latepayment) as select
    1,11,21,25000,4456,223 from dual union all select
    2,12,22,356000,3321,0 from dual union all select
    1,11,21,456000,223,33 from dual union all select
    4,17,27,32890,0,0 from dual union all select
    5,13,21,0,778,223 from dual union all select
    6,14,24,332567,222,0 from dual union all select
    7,15,25,228990,22,0 from dual union all select
    8,16,26,0,0,2234 from dual union all select
    1,11,21,22345,0,0 from dual union all select
    2,12,22,2222789,2,33 from dual union all select
    1,11,21,334567,0,0 from dual union all select
    4,17,27,9987250,2,33 from dual union all select
    5,13,21,2227890,0,0 from dual union all select
    6,14,24,2278231,0,3345 from dual union all select
    7,15,25,223456,2,0 from dual union all select
    8,16,26,223890,0,0 from dual ;
    
      SELECT t3.name, t3.age, SUM (t4.fees) fees, SUM (t4.commission) commission
           , SUM (t4.latepayment) latepayment
        FROM tt3 t3, tt4 t4
       WHERE     t3.feescntlr = t4.feescntlr
             AND t3.commcntlr = t4.commcntlr
             AND t3.latepaycntlr = t4.latepaycntlr
    GROUP BY t3.name, t3.age;
    
    Output:
    NAME         AGE       FEES COMMISSION LATEPAYMENT
    ----- ---------- ---------- ---------- -----------
    Mike          25     837912       4679         256
    Ussan         28   10020140          2          33
    Linda         29    2227890        778         223
    Clark         26    2578789       3323          33
    Obrek         35    2610798        222        3345
    Nicky         38     223890          0        2234
    Batty         45     452446         24           0
    

    Kind regards.
    Al

    Published by: Alberto Faenza on November 6, 2012 12:40

  • Problem with "make several images at the same time"

    When I try to activate "Made simultaneous multiple images" in Edition > Preferences > memory and multitasking, I have problems when I go.  I click on "View" and for about one second long video the video shows very well, but suddenly changes to the default screen that indicates when a file is missing.  Any ideas why this could be?

    2 GB of Ram

    It is not enough RAM to use effectively simultaneous multiple images rendering.

    The bare minimum is 1 GB per background process, and that doesn't count all the RAM that use other things such as your operating system and other applications.

    So, I think the simple answer is that you should not try to use made simultaneous multiple images on this computer, unless you can put more RAM in it.

  • problem with ioining several anchor points

    How can I more simple join a cloud of anchors to a path?

    I tried a few options of access road and joins, but none has managed to reach individual anchor points...

    Please help!

    See you soon

    These are all segments of open path?

    In this case try the 'Join reasonably' script of mustapha page: Scripts for Adobe Illustrator CS

    But you must select the same paths before applying the script via Select > same or the magic wand tool

  • Several problems with Adobe Creative cloud app.

    I have several problems with the Adobe Creative Cloud application.

    1 CC Photoshop or prelude CC cross the bar of the 47% during installation. They constantly give me messages "Installation failed". When I click on "Learn more", I like that:

    "Installation failed."

    Errors during Installation. (7)

    More information"

    So, naturally, I click on more information to get the lifting against me following (which no do I understand):

    Exit Code: 7 Please see specific errors below for troubleshooting. For example,  ERROR:   -------------------------------------- Summary --------------------------------------  - 0 fatal error(s), 2 error(s)    ERROR: 12/01/13 13:16:06:425 | [INFO] |  | OOBE | DE |  |  |  | 6076 | ---------- CustomHook_Helperx64 ---- Start ----------  12/01/13 13:16:06:426 | [ERROR] |  | OOBE | DE |  |  |  | 6076 | Cannot load function name 'CSInstallerCustomHookProc' from library C:\Program Files (x86)\Common Files\Adobe\Installers\uninstall\{5F816B76-62F3-41C9-B651-27F49F25F50B}.data. Error 0    ERROR: System check returned with error : -4  ------------------------------------------------------------------------------------- 

    2. I installed 5 Lightroom, then uninstalled. When I went back to re - install, the application Adobe Creative cloud wouldn't let me. He says that my 5 Lightroom is "up-to-date" and that it is in my article 'Your applications', not in the section 'find new applications '. I rechecked my programs and features in Control Panel, and it isn't here. I cleaned my registry and it is still there. I deleted the file "opm.db" in my OOBE folder and restarted CC - still nothing.

    I must say, guys. I'm not very happy with the time I spent just trying to install programs on my PC. While the plan is for it to be intuitive at a certain time, it is not very functional at the moment. No matter how much help you can provide me would be amazing - if you can provide it sooner than later, I'd be on the moon.

    Thank you.

    Hope this will help others record the amount of time this error I spent troubleshooting.  When you install Adobe InCopy CC, CC of Adobe InDesign, Adobe Photoshop CC, CC prelude Adobe and Adobe first Pro CC on a laptop Windows Pro 8.1, I an error similar to the one below.  Other installations of Adobe Acrobat XI Pro, Adobe affect effects CC, Adobe Audition CC, Adobe Bridge CC, CC of Adobe Illustrator, Adobe Lightroom 5 and Adobe SpeedGrade CC installed without error.  I ran across this test with a clean operating system, new construction to help isolate the problem.

    23/12/13 16:33:04:372 | [INFO] |  | OOBE. OF |  |  |  | 912 | 23/12/13 16:33:03:368 | [ERROR] |  | OOBE. OF |  |  |  | 6316 | Cannot load the name "CSInstallerCustomHookProc" C:\Program Files (x 86) library function \Common Files\Adobe\Installers\uninstall\{5F816B76-62F3-41C9-B651-27F49F25F50B}.data. Error 0

    I ran a minimum load of the operating system by stopping all non Microsoft services by running MSCONFIG. EXE and disabling and disabling all startup in the Task Manager, Startup tab items.  After restarting the laptop, I was then able to install CC of Adobe Photoshop and Adobe first Pro CC.  However, Adobe InCopy CC, CC of Adobe InDesign and Adobe prelude always failed CC.  I needed to start safe mode and disable BitDefender Virus Shield and BitDefender Desktop Update Service and then restart mode Normal (services were always disabled). I continued and completed the installations of Adobe InCopy CC, CC of Adobe InDesign and Adobe prelude CC.

    It seems that BitDefender is the process to load this function as a virus Trojan markup and stop installation.

  • Problems with El Capitan 10.11.6 crashing several times?

    Hey all,.

    Last night I updated from El Capitan 10.11.4 to 10.11.6 and since then I had big problems with my computer reboot several times in a row and beachballing. I have a MacBook Pro mid-2012 with left storage. I play WOW here and it starts me and restarts then, but I had this problem with the navigation as well with Chrome. Sometimes when it restarts it superimposes a bunch of script code on the gray screen with the Apple on it; some of these so-called «< panic report >»

    Someone had this problem with the recent update and there is something that seems to help?

    Help with kernel panic > OS X: when your computer restarts spontaneously or poster "your computer restarted because of a problem." - Apple suppl...

  • Several problems with my Satellite A200-1QZ

    Hello

    I'm sorry to open a new thread, but I already looked around for awhile and has failed to find the answers I need.

    Since I have several different problems, some of which are probably unique, I thought I might as well start a new thread.

    So lets start with the less important bits and get more important issues to light:

    1)

    I have some problems with my FN keys. While it seems that I can use some of them (FN + ESC, F1, F3, F6, F7, F10, F11, F12) there are also some that I can't use FN + F2, F4, F5, F8, F9, basically.

    How is it that some work and some do not, and what I need to do to get them all to work again?

    2)

    There are times, when the my screen goes black suddenly while I work, play or surf.
    This does not appear to be linked to specific programs or something, it happens completely at random.
    Sometimes it doesn't happen for weeks, sometimes, it happens two times a day.

    Normally this does not really pose problems, since all I had to do was turn the idle mode (power-led flashes orange), log in again and everything worked fine.
    But unfortunately 3 problem, so it no longer works.

    3)

    When I click on the power button - or even chose standby mode via the menu stop - the laptop won't "idle" mode, but the screen goes all black.
    As soon as I move the mouse or do something else, I wonder you connect again, so instead of the idle mode the laptop seems to go in sleeping mode.

    The main problem is that this sleep mode is not sufficient to treat the problem 2, so ultimately, my screen goes black and all I can do is to close completely by holding the button power for 5 seconds.

    Sorry for my English is not my mother tongue. Thanks for all the help in advance.

    Greetings

    Hello and welcome to this forum of technical support.

    I'm not an expert but will try to help you.

    # I put t know what operating system you use, but try to please install or reinstall Toshiba Value added Package.
    # Huh... never heard of something like this and this in standby mode is the solution to this. It means books works as usual but the display is suddenly black?
    # It is not easy to say what the problem is here. You can use Hibernate mode properly?

    By the way: are all hardware components installed correctly (Device Manager)?

  • Well, after spending several hours of research and not coming up with solutions, I'm finally back to get "out there". My problems with iMovie 09-1 - import a picture in iPhoto 9.6.1 in an existing project in very small. All the appe

    Well, after spending several hours of research and not coming up with solutions, I'm finally back to get "out there". My problems with iMovie 09-

    1. import a picture in iPhoto 9.6.1 in an existing project in very small. Everything seems OK, picture looks that it imported, 4S etc but in fact there nothing there except a black screen, long 4 seconds. I tried all the suggestions in a dozen of discussions but nothing works.

    2 - by sliding the cursor (pointer) on clips in the project or the event of the flip backwards and return to normal once the cursor is removed. Clips of transfer of events to the project smoothly and are right side up.

    What can be done on the transfer of photos and clips reversal?

    Are you running at El Capitan?   He does not play well with versions of iMovie earlier than version 10.

    (Even in 10.1 some pictures with some computers may show a black in the viewer screen, although in this case there are solutions.)

    Geoff.

  • SEVERAL problems with the new X 34

    So, I have been active during the overclock.net forums concerning the many problems I am having with my X 34.

    Long story short, I'm back this thing to Newegg and waiting for another delivery. But I thought I'd come at least here because it has high liklihood to return to anyone who cares to Acer. I called their tech support to let them know about the issues, but when the old Indian robot for 2 years at the other end kept referring to as resolution of refresh rate, I decided that I couldn't take more.

    So I took delivery of the monitor yesterday and he initially worked well... but the longer he stayed, the more problems, he has developed.

    My system is one I built a year or two ago and works perfectly with my Dell 3008WFP. Video card is a brand new MSI 980 Ti Lightning. Operating system is Windows 10 x 64. Is a Corsair 750W POWER supply. 16 GB of DDR3 RAM.

    I even made a COMPLETELY new install of Windows 10 on this computer to try to resolve these problems. Did not work. I have disconnected/reconnected everything inside my computer, including RAM and GPU. Did not work.

    And Yes, G-sync is enabled in the NVCP. And Yes, I manually set the refresh rate in the NVCP in correlation with the manual settings on the monitor.

    Problem no. 1: Menu recording does not settings

    -Don't know what the problem is here. But for about 3 hours last night, my monitor would not save settings for serger refresh rate. I would go on the menu... allow the serger... Set it to 100 Hz... Select "Apply and restart. Then (here's the interesting thing I think in hindsight), the screen would flash many colors several times and restart. I assumed that flashing color was normal... but it was never the Predator Logo when it has been reset. The office is finally pointing upwards and I could choose 100 Hz in my NVCP... but when you returned from the settings menu, Overclock was Off back with the default refresh rate. I have nothing would fix it with the reset of the monitor and unplug. Later... I have unplugeed the monitor for 30 minutes and when I plugged it back in, it would save my overclock settings now. It is interesting, but now, when I selected "Apply and reset", he would show the Predator logo when restarting... this logo did not appear before.

    Problem #2: Flashing screen

    -See a video of this question HERE

    -This developed before my eyes. After the initial installation of the monitor, it worked fine. Without no flicker, no problems. But as I was sitting at the dinner table last night, I started to see the monitor flashing intermittently in the other room. I look at the screen, he flickered about 4 or 5 times per minute. For the next hour, he progressed to 30 - 40 times per minute. And subsequently developed in constant blinking. BUT this flicker only happens when I go to the Office at 100 Hz. It happens sometimes in games, but not constant.

    I first thought that I had a bad cable of DP since I used one from Amazon, if I swapped it for the Acer cable included. Nope... same problem. I even inserted my previous EVGA 780 TI... but the flicker that happens too.

    Then, I thought it was a driver problem, I did a clean install of the nVdiia previous drivers. Nope. Then a cleaning installed latest drivers from nVidia WHQL. Nope.

    Then I saw here that you can download the drivers for the monitor directly from Acer. So, I did a guy like an unsigned driver installation. Nope.

    After all this, the problem persists.

    Strange thing about this one is that there was when I first got the monitor but got progressively worse since I got it.

    Another weird thing is that if I have a window open, then it isn't twinkle... reduce the window, and he comes back. It's actually what made me think, it was a driver issue, but as you can see above, I think that I have ruled that that fully.

    Also, if I set my refresh rate to 95Hz or below, the problem occurs. (This is actually how I currently work).

    -UPDATE: the issue has actually started just after executing i1Profiler to calibrate the screen several times back to back. I can't imagine how, but could the rapid exchange of multiple colors full screen damaged electronics somehow? Or is it just a weird coincidence?

    -UPDATED #2: it was suggested that ADC can cause the problem as it caused problems with the previous Acer monitors. So I completely deleted i1Profiler and reset my default .icc profile. I also think that I figured out how to do a monitor factory reset - if you hold the buttons first and fifth, restarting the screen and all the default settings. in any case, does too and the blinking persists...

    #3 problem: Backlight horrible bleeding

    I have to type anything here? Leave some pictures to speak for themselves...

    Trouble #4: Parts of the screen does not not on

    It has been described elsewhere, so I won't detail it here. But yes, I have the same problem. Here is a representative of my monitor picture when the issue arose.

    Overall, I am extremely disappointed, although I can't say I'm surprised. I mean, we deal with Acer here guys... Not exactly known for the high-end products. You can put the red lipstick on a pig...

    So is there more any idea or suggestion out there?

    Until then... I'll wait for my new X 34 excerpt here from Newegg to see if I won the lottery of Acer he...

    I created this post to be a "accepted solution" to this thread with the purpose to help other users who need to find the answers. This should help to find this information faster than to have to go almost 800 posts to find pieces of information.

    Wake up from sleep (backlight) - initial response and follow-up

    Problems with Overclocking at 100 hz - original response

    Coil - Whine Original response

    Color banding - users in Australia reported the problem. The teams in the region to THE have been notified and a firmware is available.

    -Scanning lines Original response

    Thank you
    Cory

  • problem with the connectivity of customers after mixing several models with WLC 5508 Setup WLAN ap

    Hello

    I have 2 5508 wlc and AP 1130 and 1200 in my test harness.

    Currently, WLAN set is in place and works very well but the customer become a frequent problem with the power of the weak signal same AP is installed very near the place of the customer.

    I have my doubts, if I have a question because I use several models of AP in my set-up?

    How to rectify the same question?

    Some time customer gets limited connectivity, means that they usually get IP also.

    What are all the parameters to check in WLC?

    (1) very difficult for a person on a forum to respond. Check if your AAA server was indeed seen as inactive at the same time for other devices.

    If this is not the case, check the network connectivity between the 2. Maybe packets are lost between wlc and aaa server...

    (2) as I mentioned, it may have nothing to do with clent near or far from the AP. What happens if your DHCP server is not responding to the client? What happens if the dhcp request never reaches the level of the DHCP server for some reason any?

    You must investigate all along path to find out why the customer is not getting an ip address.

    Troubleshooting involves trace of sniffer, debug, client, etc...

  • I have a problem with IBM Lotus Symphony - the program crashing several times every 5 seconds

    Original thread - I have a problem with IBM Lotus Symphony.  I am trying to edit a document, and I can't get any task done without the program crashing several times every 5 seconds.  What can I do to fix this?

    The program crashes every 5 seconds.  I started having this problem last night, but I didn't even know that first of all, there was a problem until today.

    Hello
     

    You receive an error message/code when you edit a document in IBM Lotus Symphony?
     

    I suggest to put the computer in a clean boot state and then try to open the program and check if it helps.
    Note: when you perform a clean boot, you may temporarily lose some functionality. When you start the computer as usual, the function returns. However, you may receive the error message, or you can experience the original behavior.
    How to solve the problem by running the clean boot in Windows 7:
    http://support.Microsoft.com/kb/929135
    Note: once you have completed troubleshooting, perform the steps in the step 7: to reset the computer as usual.
    If the problem persists please contact the IBM Lotus Symphony support for assistance. See the link below.
    http://www-03.IBM.com/software/Lotus/Symphony/ForumnsHome.nsf/home
     
    It will be useful.
  • I used Paperport 9SE for several years without any problems with XP. Now, because of a forced computer upgrade, I have Windows & OS. Now I find that I can't "save under" or "send to" Word.

    I used Paperport 9SE for several years without any problems with XP.  Now, because of a forced computer upgrade, I have Windows & OS.  Now I find that I can't "save under" or "Send scanned documents to ' MSWord' as suggestions?

    Hello

    Is Microsoft Office (Word) installed on the new Windows 7 operating system?

    If this isn't the case, install Microsoft Office must fix.

    If Microsoft Office is installed, try Microsoft Office. Follow these steps.

    a. click Start.

    b. click on Control Panel, programs and features.

    c. find Microsoft Office.

    d. right-click on Microsoft Office and select Repair.

    Now, check the question.

  • Several problems with Windows 8 - Upgrade-unable to download full

    Original title: several problems with Windows 8

    Last Sunday, after downloading Ab2word, my tiles shortcuts stop working. I have uninstalled the program, but nothing improved. I made an update of Dell and got the shortcuts work again (curiously I could always connect via the desktop). now, I get a message saying that Windows is disabled and to enable him, by putting in... but he says that it is impossible to activate. Then I tried the upgrade to 8.1 by the store and got a message saying that I was unable to complete the download. Now my shortcuts tiled work, but they open the sites registered by the office, not as a full screen. I tried to restore to the factory and now get the message that the system is unable to restore. I ran a dell diagnostic and it showed nothing. I did a full security scan and he came clean. I'm rapidly reaching crisis. When you try to seek help on the Web site, Windows 8 is not listed... It is 7 to 8. 1. any suggestions? This computer is less than 2 years old and I'm ready to take a hammer to it.

    Hello David,.

    Please write to us and offering the opportunity to help Microsoft Community.

    What exactly do you mean when you say "Windows is disabled and enable it via the setting..."?

    You receive the "Cannot download" error during upgrade to Windows 8.1, I'll follow the steps by David Williams Dixon in the Blog below.

    Something happened and the 8.1 Windows installation may not be completed. (And now you are bored)

    We know if the steps help you in upgrading the computer to Windows 8.1.

  • Several problems with ODT 12.1.0.1.2

    I've noticed several problems with ODT 12.1.0.1.2


    1 opening problem on the XE database packages (10.2).
    Problem occurs in Visual Studio 2010 and 2012.

    In Server Explorer, I created the data using ODP.NET connection, unmanaged pilot. in the 10.2 XE database

    When the connection is open tree of object type is displayed.

    Try opening the packages tree does not work ORA-00904: #SELTAB ".". OBJECT_TYPE': invalid identifier

    Same problem occurs using unmanaged driver.

    This does not happen to the standard database connection.

    2. the problem of schema comparison
    It does not work if XE (10.2) database is involved as a source or target.

    It fails with ORA-00904: "AP". "' OBJECT_TYPE ': invalid identifier

    3 connection editor

    There is an annoying problem with the connection editor.

    When I try to change the connection and the connection type is TNS then Data source name combobox selects the first entry of TNS (in alphabetical order) and not one that was used when the connection is created or changed.

    akabook wrote:

    I've noticed several problems with ODT 12.1.0.1.2


    1 opening problem on the XE database packages (10.2).
    Problem occurs in Visual Studio 2010 and 2012.

    In Server Explorer, I created the data using ODP.NET connection, unmanaged pilot. in the 10.2 XE database

    When the connection is open tree of object type is displayed.

    Try opening fails tree packages with ORA-00904: #SELTAB ".". OBJECT_TYPE': invalid identifier

    Same problem occurs using unmanaged driver.

    This does not happen to the standard database connection.

    2. the problem of schema comparison
    It does not work if XE (10.2) database is involved as a source or target.

    It fails with ORA-00904: "AP". "' OBJECT_TYPE ': invalid identifier

    3 connection editor

    There is an annoying problem with the connection editor.

    When I try to change the connection and the connection type is TNS then Data source name combobox selects the first entry of TNS (in alphabetical order) and not one that was used when the connection is created or changed.

    Thanks for the comments.

    (1) ODT requires database 10.2.0.3 or later since the view ALL_PROCEDURES added the OBJECT_TYPE column after this version. Now, everyone with the exception of 10.2 XE has updated past this point (XE cannot be corrected). So that means 10.2 XE cannot be used with ODT, if you want to view the proceedings. There is a 11.2 XE you can use:

    http://www.Oracle.com/technetwork/database/database-technologies/Express-Edition/downloads/index.html

    (2) same question

    (3) thanks for this note. I will alert you of the development team.

Maybe you are looking for