Met "logon canceled" error when drag and drop table to XSD

When I drag and drop a table to XML Schema designer, there is a dialog named "Microsoft OLE DB for Oracle" pop up. When I input correct username/password@db, I got an error saying "logon canceled".
Please help.

Are you dragging from Oracle Explorer or Server Explorer?

Similar Messages

  • Error when dragging and dropping still image into imovie

    I am trying to place some still images into iMovie but when doing so I get the following error message :
    "Import Problem
    The still image file "file name" couldn't be copied as a JPEG image. The clip has been imported, but you won't be able to apply Ken Burns effects to it."
    I really want to be able to apply the ken Burns effect. Can someone help with a fix to get around this problem.
    thanks

    Hi
    Is Your photos .jpeg photos ?
    I would download/buy GraphicConverter™ and convert the photos to .pic and
    then use them.
    Google: GraphicConverter
    Yours Bengt W

  • When drag and dropping a page to a separate folder the default name is "Untitled Extract Pages.pdf", how do I change this to other default name?

    Hi,
    When drag and dropping a page to a separate folder the default name is "Untitled Extract Pages.pdf", how do I change this to other default name?
    Thanks for any reply that can help!
    BR
    /H

    I don't think you can change it.

  • Are there any events to script a component when dragged and dropped into the parsys area?

    are there any events to script a component when dragged and dropped into the parsys area?

    The cq:listeners node of a component's cq:EditConfig has a number of events that fire with relation to the edit mode drag'n'drop stuff. You would probably want to hook one or more of the insert ones (beforeinsert, beforechildinsert, afterinsert, afterchildinsert).

  • Error message when dragging and dropping images to album

    I recently installed the Elements 12 upgrade on my MacBook Pro. My previous version was Elements 10. When I try to add new images to my existing albums by selecting, dragging and dropping them into an album the operation does not work and i get an error message "Error Applying Keyword Tag(s)"

    Thanks for your reply Andaleeb,
    When you look at the numerous discussions on the PSE forum on this Organizer window issue it's not just a problem I had (Thread 14444851) but other users who have Elements 10, 11 and 12 are experiencing similar problems. There appears to be a serious compatibility problem with OSX 10.9.2 and these versions of PSE. Although my issue was fixed by your support staff,  the fact that many other users are experiencing this issue points to the need for a universal fix applicable to all Mac users. There is a lot of frustration out there among Mac users and Adobe needs to deal with this problem.
    I am really surprised that on all the other discussion posts on this issue, there is not a single comment or response from Adobe staff! Given the lack of response from Adobe, it appears that the Adobe policy is to sit back and let the Mac users determine their own solutions.
    Please pass this post on to your management so that corrective action can be initiated.
    Thanks for your help.

  • Error 1009 when dragging and dropping

    Hello All,
    I have a problem in a large application with dragging and dropping between datagrids. I created a simple example of the issue below. Basically, when I press the button I get a pop-up with 2 datagrids. When Initially try to drag an item from the source grid to the destination grid I get a serious of errors:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    ..etc
    If I then try and drag and drop again, it works without error. Can anyone shed light on this? Code below:
    The Main App:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768">
        <fx:Script>
            <![CDATA[
                import mx.core.FlexGlobals;
                import mx.core.IFlexDisplayObject;
                import mx.managers.PopUpManager;
                import mx.managers.DragManager;
                private var popUpManager:PopUpManager;
                private var dragManager:DragManager;
                protected function button1_clickHandler(event:MouseEvent):void
                        var largePanelWindow:IFlexDisplayObject = PopUpManager.createPopUp(FlexGlobals.topLevelApplication as DisplayObject, testDrop, true);
                        var largeSimPanelInstance:testDrop = largePanelWindow as testDrop;
                        PopUpManager.centerPopUp(largeSimPanelInstance);
            ]]>
        </fx:Script>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:Button x="546" y="59" label="Button" click="button1_clickHandler(event)"/>
    </s:Application>
    The Component:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
             xmlns:s="library://ns.adobe.com/flex/spark"
             xmlns:mx="library://ns.adobe.com/flex/halo" width="400" height="300" creationComplete="creationCompleteHandler()">
        <fx:Script>
            <![CDATA[
            private function creationCompleteHandler():void
                srcGrid.dataProvider = ['cat','dog','bird'];
                destGrid.dataProvider =[];
            ]]>
        </fx:Script>
        <s:Panel x="10" y="0" width="380" height="290">
            <mx:DataGrid id="srcGrid" dragEnabled="true" dragMoveEnabled="true" x="58" y="44">
                <mx:columns>
                    <mx:DataGridColumn headerText="Column 1" dataField="col1"/>
                </mx:columns>
            </mx:DataGrid>
            <mx:DataGrid id="destGrid" dragEnabled="false" dropEnabled="true" x="226" y="44">
                <mx:columns>
                    <mx:DataGridColumn headerText="Column 1" dataField="col1"/>
                </mx:columns>
            </mx:DataGrid>
        </s:Panel>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
    </s:Group>

    I can confirm this error. I'm using Firefox, Windows Vista, Flash Player 10, SDK build 11250. There are two error boxes that appear when you try to drag an item on the first attempt and on successive attempts (but only if you drag over the destgrid, then back to the srcgrid and then back again to the destgrid). It's gotta be a bug, here are the stack traces:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
         at mx.controls.listClasses::ListBase/hideDropFeedback()[E:\dev\trunk\frameworks\projects\framework\src\mx\controls\listClasses\ListBase.as:8548]
         at mx.controls::DataGrid/hideDropFeedback()[E:\dev\trunk\frameworks\projects\framework\src\mx\controls\DataGrid.as:5670]
         at mx.controls.listClasses::ListBase/dragDropHandler()[E:\dev\trunk\frameworks\projects\framework\src\mx\controls\listClasses\ListBase.as:10428]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\core\UIComponent.as:11826]
         at mx.managers.dragClasses::DragProxy/_dispatchDragEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:355]
         at mx.managers.dragClasses::DragProxy/mouseUpHandler()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:580]
         at mx.managers.dragClasses::DragProxy/mouseLeaveHandler()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:530]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.managers::SystemManager/mouseLeaveHandler()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\SystemManager.as:3314]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\core\UIComponent.as:11826]
         at mx.managers.dragClasses::DragProxy/_dispatchDragEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:355]
         at mx.managers.dragClasses::DragProxy/dispatchDragEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:342]
         at mx.managers.dragClasses::DragProxy/mouseMoveHandler()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:509]
    and
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
         at mx.core::UIComponent/drawFocus()[E:\dev\trunk\frameworks\projects\framework\src\mx\core\UIComponent.as:9008]
         at mx.controls.dataGridClasses::DataGridBase/showDropFeedback()[E:\dev\trunk\frameworks\projects\framework\src\mx\controls\dataGridClasses\DataGridBase.as:2954]
         at mx.controls::DataGrid/showDropFeedback()[E:\dev\trunk\frameworks\projects\framework\src\mx\controls\DataGrid.as:5640]
         at mx.controls.listClasses::ListBase/dragEnterHandler()[E:\dev\trunk\frameworks\projects\framework\src\mx\controls\listClasses\ListBase.as:10337]
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\core\UIComponent.as:11826]
         at mx.managers.dragClasses::DragProxy/_dispatchDragEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:355]
         at mx.managers.dragClasses::DragProxy/dispatchDragEvent()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:342]
         at mx.managers.dragClasses::DragProxy/mouseMoveHandler()[E:\dev\trunk\frameworks\projects\framework\src\mx\managers\dragClasses\DragProxy.as:509]
    - e

  • Error occurs when dragging and dropping a Video Transition

    Hi there.
    This is my first post here, as I have only recently upgraded to Premiere Pro CS5 from a very old version.  I am running into a big problem with video transitions.  Whenever I try to drag and drop a transition onto my timeline, Premiere crashes and says "Sorry, a serious error has occurred that requires Adobe Premiere to shut down..."  Then the screen just hangs there and I need to do a Ctrl+Alt+Del to close the program.  Please note that crossfades work with no issues whatsoever, and I have not encountered any other errors.  Any ideas?
    Here are some of the specs of my system:
    CPU: Intel Core i7 950 @ 3.07 GHz
    Video Card: NVIDIA GeForce GTX 470
    OS: Windows 7 64-bit
    RAM: 12 GB
    I have 4 drives with the programs and files allocated per the suggestions in this forum.
    Thanks,
    Dave

    Here would be my shotgun approach to your issue:  Try adding effects on different footage.  If no crash, the footage may be corrupt.
    Try a new project with the same footage.  If no crash, the project may be corrupt.
    If above actions still produce a crash, trash prefs.  Prefs may be corrupt.
    You also may have bad RAM.  Run a RAM-test app.
    Still crashing?  Re-install the application.  The app may be damaged.
    Sorry I don't have a firm answer, but you may need to seek and destroy, using process of elimination.

  • Error while drag and drop in OAWD transaction

    Hi Expert,
    One of my user is trying to attach a document through Drag and Drop in OAWD transaction after he attaches a document and when he cancels on the cancel button he is getting the following error:
    Crtical error during Archiving: Archiving Directory cannot be created. The Archiving procedure will be aborted.
    Please help to resolve this issue.
    Thanks in advance.

    Hi Babu Nair, how did you solve this issue?
    Rgds,
    Nanie

  • Error in drag and drop with a Tree component

    Hello, everybody.
    I'm doing a drag and drop with two trees.
    But, when I drag from a tree to another show this error:
    "oracle.job.RowNotFoundException:JBO25020: View line of oracle.jbo.Key[4.4] key not found in ViewTreeNodeRepository13_71."
    Besides that, in my property SelectionListerner, when I have this line: "#{bindings.TreeNodeRepository.treeModel.makeCurrent}" there is a warning that says: "Reference makeCurrent not found".
    Anyone can help me?
    Thanks!

    Hi,
    +Besides that, in my property SelectionListerner, when I have this line: "#{bindings.TreeNodeRepository.treeModel.makeCurrent}" there is a warning that says: "Reference makeCurrent not found".+
    Don't worry, its a designtime warning because the EL cannot be resolved. MakeCurrent is a method on the FacesCtrl binding equivalent to ADF, which is applied at runtime and not available at design time
    +But, when I drag from a tree to another show this error: "oracle.job.RowNotFoundException:JBO25020: View line of oracle.jbo.Key[4.4] key not found in ViewTreeNodeRepository13_71."+
    In drag and drop, ADF Faces performs the drag. However, the rest of the drop handling is up to the developer. Without any more information of what yur drop handler is doing, this question cannot be answered
    Frank

  • "cgpdftops quit unexpectedly" when drag-and-drop/batch printing in Yosemite

    I have an annoying little frustration when printing certain PDF documents in Yosemite. It happens when I drag and drop documents from Finder onto an installed printer--i.e., dragging the document file onto the printer icon that has been copied to the desktop (essentially batch printing). Whenever this happens, I get a "Stopped - 'Filter' failed" error message, along with a "cgpdftops quit unexpectedly" lengthy problem report. After tinkering around for a while, I discovered that this only happens when the document is in landscape mode--if I drag and drop a document in portrait mode, it prints just fine this way. Furthermore, if I actually open the PDF document in Adobe Reader--even the landscape ones--I can print them all perfectly fine that way. It ONLY happens on LANDSCAPE documents when using the drag-and-drop print method. VERY STRANGE!
    A little background--I found this out when one of my users was attempting to do this with her newly-upgraded iMac and started receiving this message. She does a lot of batch printing because of the number of files she has to routinely deal with, and this saves her a lot of time over opening each file individually. She says she never had an issue with this when she was on Mavericks, and it only started when she upgraded to Yosemite. I ended up trying this on my own Macbook Pro running Yosemite and was able to replicate the problem on it. I've also replicated the problem on more than one printer of different brands, so I can eliminate that being the source. My user ends up sending the files to her coworker, who is running Mavericks, and is able to batch print the files successfully.
    I have been able to whittle it down to the issue simply being printing any PDF file in landscape mode to any printer from any Mac running Yosemite using the drag-and-drop/batch printing method. Numerous Google searches have gotten me nowhere with this. Some point to similar issues which throw this error message, but none specifically point to this particular issue. Certainly I can't be the only person who has tried this...
    Does anyone have any ideas?? I'm all out...

    How much storage space is left on the boot drive of the Yosemite iMac where the CUPS cgpdftops filter croaks? Are the printer drivers for the problematic printers current for Yosemite. Have you removed and reinstalled current printer drivers for the associated printers?

  • Error while drag and drop photo from Iphone to PC

    My PC OS: Window Vista 32bit
    when I connect iphone to PC. I can access iphone by Portable device->My Iphone-> Internal storage-> DCIM->100apple-> xxx.jpg
    and when I copy the pic and paste it to my PC, or drag and drop photo from Iphone to PC, it fail and show below error and force to close all explorer.
    Problem name: BEX
    Program name: explorer.exe
    problem version: 6.0.6001.18164
    Error module name: wzshlex1.dll
    Error module version: 4.1.8477.0
    blah blah
    and now I cannot delete DCIM file. while I try to delete it, a message said the device no response.
    and I found one thing, I use a "iphone photo" program to check photos in Camera Roll, it show 2 pics that cannot be show when I use explorer browse the folder.
    who can help me?

    hmm fixed by uninstall winzip
    thats interesting..

  • Visual Studio opening files when dragged and dropped in WPF app debugging session

    I'm working on a WPF app (using VS2013 CE) which is intended to manage media files (TV Shows, movies, etc) and as part of this I am enabling the user to drag and drop media files on to the running app (by adding AllowDrop="True" and PreviewDragEnter="Window_PreviewDragEnter"
    to my Window definition).
    The problem I have is that when I drag files onto the app in a debugging session Visual Studio then opens the file(s) when I stop debugging... this is seriously annoying as when I am testing with large media files (> 1GB) it just locks up VS for minutes
    at a time while it tries to open the file or files. When I run the app outside the debugger this does not happen - it's only when I'm in a VS debugging session.  The only way I can stop this happening is to kill VS completely from Task Manager then restart
    it - this is also very annoying but often I need to do this as it will freeze up for 5-10 minutes while it insists on loading the files in VS.
    I understand the app, whilst debugging, is running in the context of VS but why does VS then have to try to open the files when debugging is finished?   I have looked through the options but can't see anything to switch this off and no amount of searching
    has turned up anything - can anyone put me out of my misery with a solution to this annoying issue?

    Hello nzmike,
    Does Visual Studio behaves like the following image shows and just hangs when opening your media file?
    Do you have any other computer which installs Visual Studio? Can you reproduce this on it?
    In order to troubleshoot this issue I think we need to locate the root reason of your issue. The problem can related to the following:
    1. Your project is corrupt and VS then trys to load that file when debug finished.
    2. Your VS is corrupt and caused this problem.
    So please do something below:
    1. Try clean and rebuild your project.
    2. Switch to some other PCs and use VS and your project there, check if the problem can be reproduced.
    3. You can backup your VS setting and try some commands: devenv /resetsettings and devenv /resetuserdata
    Details about VS command:https://msdn.microsoft.com/en-us/library/xee0c8y7.aspx
    And based on th research of the above second step, if you can reproduce this issue on more than one PC, the problem is pending on your project and I need you to share a simple sample which can reproduce this issue. We will need to investigate the project
    in detail.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • NamedViewCriteria not working when drag and dropped as filtered table.

    Using JDev 11.1.2.1.0.
    I'm attempting to use NamedViewCriteria more and more because, well ... I keep reading it's the way to go. But I'm encountering an aggravating problem. I can't get them to work when I drag and drop as a filtered table onto a page. They work when I apply them in a managed bean, but simply dragging and dropping will not trigger the NamedViewCriteria to display the filtered items correctly.
    Creating a where clause manually works fine.
    Manual Where Clause & drag and drop ViewObject from data control
    (:pBpKey is null or upper(BP_KEY) like '%' || upper(:pBpKey) || '%') AND CinderBusinessPartners.BP_TYPE = 'C'NamedViewCriteria & drag and drop from ViewObject's NamedViewCriteria from data control
    ( ( (CinderBusinessPartners.BP_KEY LIKE ('%' || :pBpKey || '%') ) AND (CinderBusinessPartners.BP_TYPE = 'C' ) ) )There are three problems:
    1) The query pulls back all items. It doesn't retrieve only where BP_TYPE = 'C'.
    2) It is case sensitive. i.e. Enter in A will not pull back the customer Wal-Mart because Wal-mart contains lowercase a's.
    3) If I set the table's "Show Filter" attribute to true, the filter has the text "\*pBpKey\*" filled in by default. uhhh What?
    In the NamedViewCriteria's "UI Hints" tab, I have the "Query Automatically" checkbox selected.
    Any ideas why the NamedViewCriteria isn't "just working"?
    I'll be back with pictures after the break.
    Will

    I've rolled this into a bug post as seen here: BUG: NamedViewCriteria drag and drop as table SNAFU
    Pictures:
    Here is the NVC query
    http://www.williverstravels.com/JDev/Forums/Threads/2381120/Nvc1.jpg
    Here's that dang extra bind variable!
    http://www.williverstravels.com/JDev/Forums/Threads/2381120/Nvc3.jpg
    And just because I like awesome Paint.Net art.
    http://www.williverstravels.com/JDev/Forums/Threads/2381120/Nvc2.jpg
    Hope this helps someone down the road.
    Edited by: LovettWB on Apr 26, 2012 1:59 PM

  • Media not copying into event when drag and dropped

    When I add media files into an event by dragging and dropping the file into the project the file does not get moved/copied 'Macintosh's HD Projects' folder.
    Is there a setting somewhere I can change so dragging and dropping behaves the same way as when I use CMD+I to import a file?
    I am using the most up-to-date version of FCPX in Mavericks.

    How are you determining this? And what version are you using? Media doesn't get copied to project folders; it get copied to Original Media sub folders in event folders. Or it gets left in its original location with aliases pointing to the actual media.
    If you're using 10.1, try dragging to the single-star event icon in the Library list pane and then look inside Original Media..
    Russ

  • Scripting Error in drag and drop of the UIelements

    Hi,
    This is ashwin ,iam new to webdynpro abap ,as iam started in uidevelopement trying to drag and drop uielement into layout its is showing error while iam dragging and droping the uielement like scripting error.
    can any one help mi what that scripting error could be rectified?
    Regards,
    Ashwin

    Hi,
    Thanks fo rthe reply ,i tried on st22 its showin no error .Iam getting a popup saying error as "__ERROR HAS OCCCURED IN THE SCRIPT OF THE PAGE".
    I am using IE 7 Browser and having high internet connection, iam not understanding why am i unable to drag and drop  UIElements on the layout ?
    Regards,
    Ashwin

Maybe you are looking for

  • 7.0.98.0 Cisco 7925 CU @ 100+

    Seeing an odd issue with the Cisco handsets. The CU (Channel Utilization) is oddly high. This was not noticed prior to the upgrade from 6.x. The analyzers arent showing CU high at all (2-10%). Has anyone seen this ?

  • Data Block Corruption in sysaux01

    dear all, analyze table SYSMAN.MGMT_METRICS_RAW validate structure cascade ; ORA-01578: ORACLE data block corrupted (file # 3, block # 31263) ORA-01110: data file 3: '/u01/app/oracle/oradata/denimlhr/sysaux01.dbf' We create 'REPAIR_TEST' Table by fol

  • AP541N giving "Michael MIC integrity failure" errors in log

    Hi all... My company has an AP541N and it was working fine for about six months, but now roughly once or twice a week it just stops working and needs to be restarted. Whenever this happens, there are some log messages that look like they relate to th

  • IPod only comes to plug in screen

    After upgrading to IOS 7 iPod only comes up with the plug in screen. It will not finish booting up. How do I fix it.

  • Streaming videos on Asha 200

    I recently broght Asha 200, a good phone but facing one issue on streaming videos cant open please help me how to play streaming videos on asha 200 and how to configure manual gprs settings on asha 200.