Problem in the editor of opening in Oracle 11 g release 2

HII all

I have install Oracle 11 g release 2 on my 32-bit windows OS.

But I have a little problem while opening Editor

(1) whenever I type ed in sql prompt I have error

Failed to create the save the file "afiedt.buf".

How ever I tried with the editor command set

That is, define_editor = "Notepad"; the command runs successfully, but still I get the same error while typing ed

(2) my second problem is that I'm not able to select whatever it is to copy and paste the same

Click on the right button of the mouse does not work also for paste

Please suggest any solution soon...

1 > right click on the shortcut of sqlplus.

2 > you'll see ADVANCED. Click on it...

3 > there is a run as Administrator option. Tick Mark It. So, OK, Ok. Then run the SQL MORE.

Tags: Database

Similar Questions

  • Problem with the editor attribute PULLDOWN

    When we use the Editor menu attribute drop-DOWN we know the following behavior.

    We have a definition of the content with a non-binding string attribute which is an attribute of pulldown editor configured with queryassetname.

    When its use in the contributor interface following the chronology of the events:

    (1) content > new asset

    (2) assign a value in the launch menu displayed by the editor attribute of pulldown

    (3) save

    (4) modify the same assets and try to put a value empty in the attribute that is assigned pulldown attribute Editor, but it is not possible because there is no possible empty selection to leave blank the value of the attribute as it was by default.

    Thanks for any help in advance.

    Pedro

    Hi Pedro,

    There is a default created for the problem you describe: Bug 17562306 - menu DEROULANT ATTRIBUTE EDITOR not IS NOT HAVE WHITE VALUE for the OPTIONAL ATTRIBUTES.
    However this applies only when you use name QUERYASSETNAME instead of element tags to populate the attribute PullDown.

    I just did a quick test to create a new attribute to dropdown using element tags and it worked fine when I set a single value, saved and then set empty. See screenshots

    I was able to find a workaround for the active query name, it is to add value, then you can use it as a vacuum. See below:

    Add a null value line in the query of the assets of the query result.  In this way, there will be a null value to select in the drop-down menu to remove the value.

    for example SELECT name as the value of the status of Content_C WHERE<>"VO" UNION (SELECT NULL FROM DUAL) ORDER BY VALUE asc NULLS FIRST

    Of workaround seems to work for the attributes of optional or required string using this attribute of menu editor drop-DOWN with a resource request.

    Let me know you have questions.

    Best regards

    Guillermo.

  • Problem with the behavior of "open the window of your browser.

    I am very new to Dreamweaver from Golive. My problem is with the behavior of the "open new browser window". I found nothing in the archives which deals with this issue.

    I have a link to a page that is not on my site, by clicking on the link, the browser should open a new window showing the other site, while my website is and remains unchanged.

    Right now, when I click on the link not only a new window opens with this site on this topic, but the page on my site where the link is also changed to this new site.

    How can I keep my page to change and only open new browser window?

    I've tried it on several browsers and same problem exists.

    I use PS CS5 with the last update on a MacBook Pro with OS X 10.6.6 and 8 GB of RAM

    Thank you for taking the time to read this.

    Branko

    I have a link to a page that is not on my site, by clicking on the link, the browser should open a new window showing the other site, while my website is and remains unchanged.

    Right now, when I click on the link not only a new window opens with this site on this topic, but the page on my site where the link is also changed to this new site.

    It's because you have applied the behavior in a way that leaves the href attribute of the link to the page linked as well as the behavior.  You can easily fix that by changing this-

    on this subject.

    http://www.example.com/whatever.html"onclick ="MM_openBrWindow (...);" return false">

    Now, you will have a link that can still work even when javascript is turned off in the browser of the visitor.
  • ADF: Session timeout problem using the JavaScript window.open() method

    Hi all

    I have a commandImageLink on my page, with partialSubmit = true, clientComponent = true. ClientListener the link calls a JavaScript onClick, the fire with a clientAttribute that contains the URL for the managed bean.
    It works very well - the new window opens successfully. But the performance of any activity on the parent window, the session expires immediately.

    The ciLink aims to open the URL in a new window and I can not change this feature.

    I've tried (and failed)-
    1. put the ciLink within the tag < h:form > and using target = "_blank".
    2 actionListener on ciLink to JavaScript fire.

    I use JDeveloper 11.1.2.1 with weblogic 10.3.6, JSF 2.0.

    Thank you
    Yacoub

    Hi Anirban,

    Try to change the session cookie in weblogic.xml, seems to be cleaned each time that you access the external link:

    
      JSESSIONID-MYAPPLICATION
    
    

    AP

  • Problem with the difficulty of opening the old tabs settings and save files when a new session is opened

    Hello
    Since 2 weeks I have a problem: I always set my settings to restore the previous session with all my tabs and I choose that Firefox asks me where I want to save my downloaded files. Now, every time I close Firefox and I open it again, it is not taken into account and 3 tabs are opened: Firefox, Google, and thanks to install Zotero! I spare it, but every time it opens these tabs and not man. Ditto for saving the files. It goes back automatically to open the start page and save my file in the downloads. Even if I spare, it's the same.
    I've desinstalled CCleaner (I thought it might be that), but nothing changes!
    Help, please. Thank you very much!
    Martha

    Here's what I'll try:

    • Reset Firefox - that should solve the problem, but it will change the settings like where files are downloaded and what tabs open at startup back to their default values.
    • Then change your download and back session restore preferences to how you like them.

    Here's how:

    1. Go to help > troubleshooting information.
    2. Click on the button 'Reset Firefox'.
    3. Firefox will close and reset. After Firefox is finished, it will display a window with the imported information. Click Finish.
    4. Firefox opens with all the default settings applied.
    5. Open the window of options - tools > Options > general
    6. In the general Panel set Firefox to open your tabs from last time and set Firefox to ask you where to save downloads.
    7. Click OK

    That should do it. Let me know if it worked.

    Thank you

    Michael

  • Problems with the declarations of Type in Oracle 9i

    Create OR replace Type Ty is object
    (
    attr1 varchar2 (30),
    attr2 Varchar2 (30),
    attr3 Varchar2 (30),
    Manufacturer Ty function return AS a result,
    Ty (p_attr1 IN Varchar2) constructor function
    Return self as RESULT,
    Constructor Function ty (p_attr1 IN Varchar2,
    p_attr2 IN Varchar2)
    Return to SELF, RESULT,
    Constructor Function Ty (P_attr1 IN Varchar2,
    P_attr2 IN Varchar2,
    P_attr3 IN Varchar2)
    Return self as RESULT
    );
    /
    Create OR replace Type body Ty like
    Ty function constructor return self as result that
    Start
    RETURN;
    End;
    Constructor function Ty(p_attr1 IN Varchar2) return
    SELF as RESULT that
    Begin
    COTTAGES. Attr1: = p_attr1;
    RETURN;
    End;
    Constructor Function Ty (p_attr1 IN Varchar2,
    P_attr2 IN Varchar2)
    Return self as RESULT that
    Begin
    COTTAGES. Attr1: = p_attr1;
    COTTAGES. Attr2: = P_attr2;
    RETURN;
    End;
    Constructor Function Ty (P_attr1 IN Varchar2,
    P_attr2 IN Varchar2,
    P_attr3 IN Varchar2)
    Return self as RESULT that
    Start
    COTTAGES. Attr1: = P_attr1;
    COTTAGES. Attr2: = P_attr2;
    COTTAGES. Attr3: = P_attr3;
    RETURN;
    End;
    End;
    /
    Declare
    T1 Ty: = Ty();
    Ty T2: = Ty ('A');
    T3 Ty: = Ty('B','C');
    T4 Ty: = Ty('D','E','F');
    Begin
    dbms_output.put_line (t1. Attr1);
    dbms_output.put_line (t2.attr1);
    dbms_output.put_line (t3. Attr1);
    dbms_output.put_line (t4. Attr1);
    End;
    T4 Ty: = Ty('D','E','F');
    *
    ERROR on line 5:
    ORA-06550: line 5, column 12:
    PLS-00307: too many statements of "TY" corresponds to this call
    ORA-06550: line 5, column 6:
    PL/SQL: Ignored Element
    ORA-06550: line 10, column 25:
    PLS-00320: the declaration of the type of the expression is incomplete or
    Malformed
    ORA-06550: line 10, column 3:
    PL/SQL: Statement ignored

    Please help me what is the problem with me? I use Oracle 9i release 2.

    You don't need to declare a constructor for "all" attributes - you get one automatically. Remove the declaration of the complete constructor function on all 3 attributes, and you will find your block works fine dbms_outputs.

  • I have a problem with the inability to open "LINKS" received e-mail messages. KEP's message operation cancelled due to restrictions on this computer

    I was referred by the 'Help' site on my computer to a website "JUST ANSWER", however this turns out be a waste of time and from what I could find on a website thewre were 100's of other unhappy customers, some suggesting the site is a scam?

    Check your Internet Explorer. See if it has its flaws.

    Start > default programs > set your default programs > click on Internet Explorer. He said "this program has all its defaults"?
    If not, click Choose defaults for this program > put a check mark on each entry in the list > SAVE

    Now try to open the link in your email.

    t-4-2

  • Problems with the closure, by opening the Task Manager and Norton Internet Security. Help, please!

    Hello

    I have a HP Pavilion dv7 with Windows Vista Home Premium (64-bit). Until Monday, there is no problem whatsoever with my computer at all. I have not installed or uninstalled, whatever it be, changed settings, done anything differently with my computer. Suddenly it now "hangs" on the screen of closing down. I'll try to reboot or stop using the menu start, and it will stay on this screen indefinitely. Now, I have to manually turn off the computer. I spent on the Support page and studied the Performance issues, and all I get is I have Visual settings that interfere with closing... except my Visual settings have not changed in any way. In addition, I can not properly update my computer or do a system restore because the computer will shut down.

    In addition, the Task Manager will appear no more. I'll press ctrl alt del and nothing appears, just the green icon in the corner of the screen. If I try to right click, no response.

    I tried to do a full system scan in Norton Internet Security but she "leaves" scanning. It will scan correctly when I'm in safe mode, but it comes with no virus, trojan or other problem.

    So in essence, I tried everything I can think of to fix my computer nothing works. It was working perfectly before this week. I have no idea where to go. Any thoughts?

    Thanks in advance,

    G

    Hello
     
     
    Method 1.
    First check to see if there are external devices attached to the computer, if so remove and check.
     
    Method 2.
    Step A.

    Start your computer in safe mode and check if it starts.
     
    Step B.
    If it starts on the desktop in safe mode and then set your computer to the clean boot and check if it starts successfully. If it starts successfully can be a third-party application or service is causing the problem. We can use the approach 50 / 50 to narrow down the root cause of the problem.

    See the article below for instructions on how to start your computer in a clean boot state.
    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: When the diagnosis is complete, don't forget to reset your computer to normal startup. Follow step 7 in the above article.
     
     
    Method 3.
    I recommend to run the restore of the system in safe mode and check if it works very well.
    Reference:
    System Restore: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows-Vista/system-restore-frequently-asked-questions
    Note: If you use system restore when the computer is in safe mode, you can not undo the restore operation. However, you can run System Restore again and choose a different restore point if any.
     
     
    I hope this helps.
     

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • A problem with the standard edition of synonyms oracle 12 c on linux.

    Hi all

    I created a few synonyms for a user to access the tables little.

    but unfortunately he is not able to view the user tables.

    Here's the syntax I used to create synonyms AS SYSTEM USER on oracle 12 c.

    create synonym WALLACE. DEPT_LOSS_RUN for the USER. DEPT_LOSS_RUN;

    He has successfully created, but WALLACE users NOT able to access / view on it.

    All the expert advice on that.

    Thanks in advance

    See you soon

    > do I have to give select grant Wallace for all 700 tables?

    Everything is forbidden; except what is explicitly GRANTED.

    COIL NEW_GRANTS. SQL

    SELECT "CHOOSE GRANT MARKET | TABLE_NAME | "AT WALLACE;" FROM USER_TABLES;

    SPOOL OFF

    @NEW_GRANTS. SQL

  • Problem with the Accordion widget open flashing and closed when the loading of the page

    Why do my flashes of accordion, widget open and close during the loading of the page (see http://vincentballmusewebsite2013test.businesscatalyst.com/digital-illustration.html#.UVDr Ehx7JyII) tried everything to solve this, and Adobes customer service is terrible, they don't get back to you when they say they will.

    Please help me someone,

    Thank you

    We have a difficulty which will be included in the process of testing for version 5.0. Except for a few unexpected correction main side effect, it will be part of 5.0.

    Private for 5.0 beta program will probably start in a few weeks or more. To try the fix and/or to provide feedback on the new features and bugs that you encounter, you can join the program of private beta (Non-disclosure Agreement required) via the Help menu of Muse. Members of the program will be notified when Muse 5.0 Beta 1 is available.

  • the editor updates Java Oracle or Sun Microsystems?

    I use Windows Vista and get a pop up window that says something like "New update of Java".  Can I get another window which gives me the opportunity to continue or to cancel the update.

    The problem is that this window identifies the Editor (or what they call) as Sun Microsystems.  In addition, the update is jucheck.exe.  I checked on the Oracle website to see if this is a legitimate update.  Information of this site provided as jucheck.exe and also that my cancel or continue the window should look like.  Here, the editor is noted as Oracle Corporation (in bold). So I wonder if the update is legitimate, because the editor is that Sun Microsystems and Oracle not noticed.  I got nowhere to get a response on the Oracle website.  Thank you kindly.

    I have the same problem with Windows 7: a msg saying that I need to update Java Sun Microsystems... I'M DOWN... IF this Java software is required for Windows working properly so Microsoft needs to update the msg if users don't worry / spyware software malware.

  • The editor does not open after 11 items is transferred from Mac Snow Leopard OS 10.10.2 Yosemite

    I've been running Photoshop elements on a Mac with OS 10.6.8 11 (Snow Leopard). I just got a new Mac with the latest OS X (OS 10.10.2,"limited Yosemite). I transferred all my files on the new computer using the Migration Wizard.

    PES 11 seems to install properly and the organizer opens OK, except that I get a message saying "some online services are not available" and her asking if I want to continue without them. However when I try to open the editor it opens, instead I get two error messages, first "among application components are missing from the Application directory, please reinstall the application", then "a required application library failed to open and the product cannot continue. Please reinstall the application '.

    My questions are - should I just do a reinstall from the original disk? If so, should I do a complete uninstall of 11 items first? If I do a reinstall, will I lose all the changes, the version sets or something else?

    I had said that I should be able to simply transfer via the PES 11, with the original product key only. Will there be incompatibilities between 11 PES and the latest version of Yosemite?

    Thanks for any guidance,

    Nick

    You can never, never, never transfer any installed version of the EP on any platform. You should always install from scratch on a new machine. Trying to to, you have made more work for yourself. You must download and run this:

    Use the CC cleaning tool to resolve installation problems. CC, CS3 - CS6

    that won't seem to do anything, but is a necessary step to break the links within the program. Then you can go to and manually remove everything related to the PSE that you can find, not only Applications, but also your username > library > Preferences and the library at the top level of your hard drive > application support > adobe. You go to these places manually; Spotlight will not help you with this type of research.

    Then, you can reinstall your original media or from the download here:

    Download Photoshop Elements products | 10, 11, 12, 13

  • How to open the editor of PES with the Vibrance tool and clarity on this?  It only opens for Raw fi

    When I choose an external editor for a raw file I get a very nice editing page that does everything that I want especialy the Vibrance and clarity tool.  How can I get this option when opening a jpeg file? iPhoto or a folder on my desktop/HDD? (See screenshot of the page I want to open)

    Screen Shot 2012-04-25 at 12.39.29.png

    It's the raw converter. To open other formats converter, by appointment on Editor window > file > open as > Camera Raw. On a mac, it's the editor > file > open, choose your image, then choose Camera Raw in the drop-down menu format until you click Open.

  • The editor displays bad instrument

    Logic Pro X

    Strange problem happened today.

    For some reason, whenever I select a Midi track and open the editor, the false track appears. The same track Midi Drum guard opens in the editor of any track I select and open with editor.

    It is not do with an Audio track. When I opened an Audio track, the editor will open the .wav file.

    Someone got clues?

    P.S. I'm still on Yosemite

  • Open with settings is not applied to the photo to open in Photoshop Elememtns 11

    original title: Open with not working do not like exepced

    Hi - I am trying to use the option 'Open with' in order to open a photo in Photoshop elements 11.  However, I have a problem.  The program is open, but it will not automatically open the photo (I can open pictures from the program by going to file - open very well).  In an earlier version of this program, that it worked very well by using 'Open with' to open a picture.  Once I put a picture on my desk and used 'Open with' and it worked great with version 11 of the program.  However, I can't seem to get it to open from this location now or any other location using 'open with '.  I think that the problem may be that the element of the "Open with" list points to the wrong thing then I try to select "Choose default program" and select the correct program through it.  However, once that I click on this file which is supposed to be used to open the photo and click Open, the file does not appear in the open with dialog box.  It is not yet here.  The only thing he is the link wrong despite the fact that I clicked on the link at right.  The strange thing is that it works on the screen of another user on the same computer.  I don't want to migrate all of my stuff for a new user - too much work.  Any ideas?

    Hello

    Welcome to the community of Microsoft and thanks for posting the question.

    I suggest you to report the issue to another Department for assistance:

    http://forums.Adobe.com/community/photoshop_elements

    Hope this information helps. Please respond if you have more queries on Windows in the Microsoft community.

Maybe you are looking for