Start from treeview ( left ), use of only 1 tab

Hello,
it's possible to setup, clicking on the left site tree view the output create his own tab ?
It's very annoying viewing a table, procedure or function and then clicking on an other object
and it's gone overwriting by this.
Karlheinz

Sure; hit the red pin in the tab's mini-toolbar to Freeze View.
To set automatically: Preferences - Database - ObjectViewer - Automatically Freeze.
Have fun,
K.

Similar Messages

  • Count rows from multiple tables using SQL only

    Hi, I know this has probably been answered before, but I couldn't find the answer anywhere. Please help.
    I'd like count(*) [rows] for all tables in database using SQL only - no PL/SQL
    The result should be something like:
    Table RowCount
    DBA_TABLES 1000
    DBA_USERS 50
    etc.
    Thanks!

    offcource write this script:
    create or replace procedure count_tables (ip_schema VARCHAR2)
    is
    lv_owner VARCHAR2(100);
    lv_table_name VARCHAR2(100);
    lv_sql_statement VARCHAR2(2000);
    lv_count_table NUMBER;
    CURSOR c1 IS
    SELECT owner, table_name
    FROM all_tables
    WHERE owner = ip_schema
    ORDER BY table_name;
    begin
    dbms_output.put_line ('+--------------------------------------------------------------------+');
    dbms_output.put_line ('¦ | | ¦');
    dbms_output.put_line ('¦ Schema Name | Table Name | Number of Rows ¦');
    dbms_output.put_line ('¦ | | ¦');
    dbms_output.put_line ('¦------------------------------------------------------------------¦');
    OPEN c1;
    LOOP
    FETCH c1 INTO lv_owner , lv_table_name;
    EXIT WHEN c1%NOTFOUND;
    lv_sql_statement := 'SELECT count(*) FROM ' || lv_owner || '.' || lv_table_name;
    EXECUTE IMMEDIATE lv_sql_statement INTO lv_count_table;
    IF lv_count_table > 0 THEN
    dbms_output.put_line ('| '||rpad(lv_owner, 14, ' ')||'| '|| rpad(lv_table_name, 32, ' ')||'| '|| rpad(lv_count_table, 16, ' ')||' |');
    -- dbms_output.put_line ('|---------------|---------------------------------|------------------|');
    END IF;
    END LOOP;
    CLOSE c1;
    dbms_output.put_line ('+--------------------------------------------------------------------+');
    exception
    WHEN OTHERS THEN
    dbms_output.put_line ('owner: '||lv_owner||' - table: '||lv_table_name||' - '||sqlerrm);
    end count_tables;
    set serveroutput on size 1000000
    exec count_tables
    drop procedure count_tables;

  • SQLplus doesn't start from batch when using host comand

    Hello.
    We have a form to export some data from old (7) database. For that we use batch file that runs sql script.
    There is button in form. The code on trigger looks like:
    declare
         HostString Varchar2(50);
    Begin
         HostString := 'C:\Path\File.bat';
         Host(HostString);
    end;
    That batch file calls another batch file:
    c:
    cd c:\Path
    call NewFile.bat >> Data.log
    And in NewFile batch we call sql script like:
    c:
    cd "c:\Path"
    set ORACLE_HOME=c:\Oracle\Path
    C:\Oracle\Path\BIN\SQLPLUS.EXE user/pass@db @C:\Path\Script.sql
    @echo End
    exit
    In that script the code looks like:
    spool c:\Path\File.txt
    desc table;
    spool off;
    exit
    If we run first batch in cmd everything works. When we use forms, form is working forever, freezes.
    And Data.log file looks like:
    (14:53:48,14) >c:
    (14:53:48,14) >cd "c:\Path"
    (14:53:48,14) >set ORACLE_HOME=c:\Oracle\Path
    (14:53:48,14) >C:\Oracle\Path\BIN\SQLPLUS.EXE user/pass@db @C:\Path\Script.sql
    Here it freezes, log file is locked.
    We are using forms 10 on AS 10. But we must use SQLPlus 8 to connect to old database (7) in that case.
    Maybe this is the problem?
    Any idea why this doesn't work from forms, but works when run manually from cmd?
    Thanks.
    Message was edited by:
    DejanH

    U didnt mention version of forms and whether running in client server or web.
    Incase of web note that host will execute on application server and hence u need to use webutil_host.
    If u are on forms 6i/client server forms try invoking calc using host. If it works fine then u may have to use the code host('cmd /start c:\orant\bin\sqlplus.exe')
    Best Regards
    Rajesh ALex

  • Is there any way to control my laptop powerpoint presentation from my iphone using bluetooth only?

    I occasionally host pub quizzes. I usually link my laptop to a projector and use powerpoint to display questions and play music clips etc. This means that I need to sit underneath the projector in order to click the laptop keyboard.
    Is there any way to do this using my iPhone (4S) as a remote control for the laptop WITHOUT having a home network or router available at the location?
    Thanks

    Hi Paul,
    Thanks for visiting Apple Support Communities.
    The closest way I know of accomplishing a task like this is by using the Keynote application on a Mac and Keynote Remote on an iOS device, which works over bluetooth. See this article for more information:
    Using Keynote Remote
    http://support.apple.com/kb/ht3325
    Cheers,
    Jeremy

  • Left-click working only on tab, not on minimize or in my case in Bugzilla listbox.

    Any list box that I try to left-click is not working. I have to use the keyboard to select.
    This problem is happening right now with the "This happened" list box.

    You can try a clean reinstall of the Firefox program in case some files are corrupted or didn't get updated properly.
    Do a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 10.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall the current version or you lose your bookmarks and other data because all profile folders will be removed.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup

  • WS-ReliableMessaging when starting from WSDL

    I'm trying to enable WS-ReliableMessaging for a service for which I started
    from the WSDL. I used to start from the JWS file and so I just added the
    @Policy annotation to enable WS-RM, but now I'm starting from the WSDL
    (using the wsdlc ant task to generate the JWS and interface JWS) and I can
    no longer enable WS-RM. I cannot add a @Policy annotation because then it
    won't compile (because of the interface). I've also tried adding other WS-RM
    (optional) annotations and even embedded the policy directly into the WSDL,
    but no luck.
    Does anyone know how to enable WS-RM when starting from a WSDL under
    WebLogic?
    Thanks.
    Toon

    Hi dvohra21,
    The 3rd party has advice me tha the wsdl is not available on the specified ip:port on which the web service is running. If I make a call to the web service named "fvdbscan" as per your question, i.e., if i put the in a web browser http://192.168.1.4:1063/fvdbscan?wsdl , i get the following:
    <SOAP-ENV:Envelope>
      <SOAP-ENV:Body>
        <SOAP-ENV:Fault>
          <faultcode>SOAP-ENV:Client</faultcode>
          <faultstring>HTTP GET method not implemented</faultstring>
        </SOAP-ENV:Fault>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Further more, as you can see in the atteched image, the "JDeveloper Test Web Service" i.e., the HTTP Analyser, option works fine when a call a funtion in the web servicce.
    However, when I run the client, ( which as you can see has zero code expect for that generated by the JDeveloper wizard), it throws an excception, as showned below.
    Here you can see the WebServiceClient generated by the JDeveloper wizard and you can see the urn it has created which is not valid.
    Thank you for your attention.

  • Configure VRF on 6500 using OSPF only

    Is it possible to create a VRF using only OSPF as the routing protocol on a private network?  I've only been successful using BGP and redistributing OSPF.  I've inherited a network that had BGP configured for Public routes, but has since been dismantled, yet BGP is still being used to redistribute OSPF routes on our private network.  I would like to move away from BGP and use OSPF only.  Thus the reason for my initial question.
    Regards,
    Chris

    I have read the article you linked above and performed some testing.  I have done some further research, and must clarify that the VRF I configured is not utilizing an ISP link.  This VRF is all internal on CE routers, no PE routers, so all my connections for the VRF are internal CE-CE. 
    I still cannot get the VRF to populate the routing table with the OSPF routes on interfaces I have configured for the VRF.  If i configure BGP to redistribute the routes, then the routing table populates fine.  However I do not want to use BGP.
    Please advise.

  • I keep multiple windows opened and minimized. Sometimes when I click on the task bar to Restore, it apparently "disappears" out of view past the upper left corner. From then on, it can only be seen by using Maximize. What can be done to move it back?

    I keep multiple windows opened and minimized. Sometimes when I click on the task bar to restore one, it apparently "disappears" out of view beyond the upper left corner of the screen. From then on, it can only be seen by using Maximize in the task bar. When Restore/Move/Size are clicked, the pointer just goes to the upper left corner of the screen with all combinations of clicking/dragging having no success. What causes this, and what can be done to move it back?

    If a window disappear then using the system menu can make it reappear or make it possible to move that window in view. I don't know what causes it to make the window disappear in your case if it does work correctly if you start Firefox.
    You can check the browser.link.open_newwindow prefs on the about:config page if you want to open all links in tabs in the current window.
    * http://kb.mozillazine.org/browser.link.open_newwindow (3)
    * http://kb.mozillazine.org/browser.link.open_newwindow.restriction (0)

  • I have coloured vertical lines about a quarter of the way from the left of the picture when using my apple tv 2. Anyone got any idea what is causing it. Have done a reset but still same. ATV2 is only a month old.

    I have coloured vertical lines about a quarter of the way from the left of the picture when using my apple tv 2. Anyone got any idea what is causing it. Have done a reset but still same. ATV2 is only a month old.

    Just to make sure, try a different set of cables. If the problem persists, have the unit replaced by Apple.

  • Built-In Microphone records audio only from the Left speaker

    I'm not sure if my settings are correctly set up, but whenever I record through Logic, it only picks up sound from the Left Speaker of my MacBook Pro.
    When I try to make noise through the Right Speaker, Logic's sound levels do not respond.
    Any ideas why this is happening? I don't plan on using the built-in Microphone for much longer, but it's all I currently have at this point. Thanks!

    James,
    Again, thanks for the response! I guess what Tokuda said about the mono Mic in the left speaker settles that. I was just confused, because when I used Sound Forge on my Windows partition, it would always pick up sound from both speakers (I think?). I could be wrong on that one too though.
    As for goals, my long term goal is to produce Club/Dance music & some serious Vocal work with Logic. Only thing is I have no basis or ground knowledge of music. For instance, I don't even know how to play the piano, or read music for that matter. Sad, I know...but it is a work in progress. And the only Microphone I use is built-in and my voice overs always sound so bland & one-dimensional. No dynamics or great effects to them, like Tpayne, BSpears, or Madonna vocals. Not sure where I should start, maybe take some basic music theory courses at the local community college, grab an internship at a radio station, & then further my education @ SAE, or Berklee College of Music to learn more advanced editing techniques.
    In the meantime, I have been producing Cheer, Dance, & Aerobic music for the past 5 years. It first started as a hobby, and then transformed into its own little business, and now I do hundreds of mixes for Cheerleaders & All Star programs all over the place! It came so natural to me though...Laying beats over songs, then adding my own creative touch to make it my own. I've been using Acid, which is GREAT for what I do, but isn't going to get me much further than that. That being said, I finally made the decision to move up to Logic, not only to broaden my musical horizons, but to hopefully continue making Cheer music with it as well.
    Since Acid is PC only, I still do work on my desktop PC and have been slowly weaning myself from it. The Logic learning curve is extremely difficult (for me at least) and it's taken a lot of getting used to some things like NOT being able to cross-fade my loops. Very, very annoying. Nonetheless, I know I have to make the switch to Mac if I'm really serious about making it anywhere in this biz.
    Anyway, I can totally email you one of my mixes (if you're interested). I would post a link here, but I gather most of the musicians on here wouldn't really appreciate it as much as I do, haha. Oh and by the way, thanks for taking the time to listen & help me out here. It means a lot man!

  • Is there any way to create a time machine backup to an external hard drive with content already on it?  I have a hard drive that i have used for pictures but when i try to run a backup it says i need to start from a blank drive. Can i get around it?

    Is there any way to create a time machine backup to an external hard drive with content already on it?  I have a hard drive that i have used for pictures but when i try to run a backup it says i need to start from a blank drive. Can i get around it?

    It would be much better if you had separate drives for the pictures and Time Machine backups.....but, if you want to use the same drive for both purposes, temporarily move the folder with the pictures to another location for safe storage.
    Run the Time Machine backup on the hard drive and verify that everything is working correctly. Time Machine will format the disk for you in Mac OS Extended (Journaled) as part of the backup process.
    Then move the folder with the pictures back to the hard drive with the Time Machine backups.
    When you have tested to make sure that everything is working again, then and only then should you delete the folder with pictures from the temporary storage area.
    Again....it would be much better to keep Time Machine backups on a drive just for that purpose, and other data on another drive for that purpose. This is clearly one of those times when the fact that you can do something does not mean to imply that you should do it.

  • TS2570 Question re: "Start from your Mac OS X Install disc; use Disk Utility"

    I've worked my way through the step-by-step trouble shooting in the TS2570 article up to "Start from your Mac OS X Install disc; use Disk Utility". So far, every step results in the same outcome - my formerly trusty 2007 Intel duo core iMac (24") will not start up, freezing on a grey screen with a blinking question mark on a folder. I don't completely understand this next step. I have both a Leopard and a Snow Leopard disc. I'm not positive whether these were for the iMac, or my old Macbook Pro. I assume this makes a difference.

    Question (?) Mark, Blinking Folder, or Gray Screen at Startup
    These are related but not identical issues. Their causes are outlined in Intel-based Mac- Startup sequence and error codes, symbols. Solutions may be found in:
    A flashing question mark appears when you start your Mac
    A flashing question mark or globe appears when you start your Mac
    Mac OS X- Gray screen appears during startup
    In most cases the problems may be caused by one or more of these:
    a. Problem with the computer's PRAM - See Resetting your Mac's PRAM and NVRAM.
    b. Boot drive's directory has been corrupted - Repair with Disk Utility.
    c. Critical system files are damaged or deleted - Reinstall OS X.
    d. The disk drive is physically non-functional - Replace the hard drive.
    Note that the information I have provided is what Apple recommends, If other users suggest different solutions than found here, then be sure what they recommend does not impact on your warranty, if any, or ability to get continuing Apple service.
    Please don't start removing drives or changing cables unless you know what you are doing and have exhausted other non-invasive alternatives outlined here. If you perform any work yourself that is unapproved by Apple, then you will void any warranty you may have and lose all further Apple Support.
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    The main difference if you are using Lion or Mountain Lion is that you must first boot from the Recovery HD. Simply boot from the Recovery HD to perform the above.
    Reinstall Snow Leopard Without Erasing The drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing The Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • Verizon is using the Elipsis tablets to steal data from their customers.  The only way to stop data from registering as cellular data is to pull the SIM card.  This occurs with wifi enabled and cellular,dara disabled.  If,you take your tablet to a Verizon

    Verizon is using the Elipsis tablets to steal data from their customers.  The only way to stop data from registering as cellular data is to pull the SIM card.  This occurs with wifi enabled and cellular,dara disabled.  If,you take your tablet to a Verizonstore they will upgrade your data plan to cover the overage and credit the upgrade.  You will then have to remember to downgrade your plan or continue to pay for more data.  Verizon, how would you feel if I walked into one of your stores and started filling my pockets with merchandise?  If cought can I just give the product back and say "oops, sorry"

    Today, my FCC complaint hit the same person working on the BBB complaint.  Jimmie has been very nice and seems willing to work with this problem.  We have been able to come to an agreement.  I paid the purchase price for the phone and he returned my upgrade and unlimited data plan.  This is what would have occurred if Verizon had given me correct information to begin with.  I am happy with this result.  He also brought quite a few instances concerning the handling of my transfer and upgrade that did not follow proper procedure.  I am also confident that I would not have resolved this without complaining to BBB and or FCC.  Verizon had no interest in solving the problem nor did they show any propensity to keeping a 20 year client.  Even though this last CSR was very polite and helpful, his sole job is to respond to formal Federal and State complaints.  He is required by law to address every complaint and report the reporting agency the agreed upon results - good or bad.  Again, I suggest - If you are not getting the proper customer service, complain to someone outside of Verizon.  Jimmie had not received any complaints registered with Verizon directly and I still have not had any contact with any other management representative that I was told would call.

  • How to achieve Vertical Text,start From left to right?

    How to achieve Vertical Text,start From left to right?
    Maybe  it does not make sense for English,but it is Quite useful for Chinese

    @喜狼_edny – hm. Possible, but the result is somehow unsatisfactory.
    See for yourself.
    We could start with some text right aligned in a table with just one single cell:
    We could rotate the cell to 270° like that:
    Code:
    var myCell = app.selection[0].tables[0].cells[0];
    myCell.rotationAngle = 270;
    And now we need the text direction from right to left and all characters rotated to 180°:
    Code:
    var myCell = app.selection[0].tables[0].cells[0];
    myCell.rotationAngle = 270;
    myProperties = {
        composer : "$ID/HL Composer Optyca",
        characterDirection : CharacterDirectionOptions.RIGHT_TO_LEFT_DIRECTION,
        paragraphDirection : ParagraphDirectionOptions.RIGHT_TO_LEFT_DIRECTION,
        characterRotation : 180
    myCell.texts[0].properties = myProperties;
    Result:
    Ugh! Not exactly the result we expected…
    (Tested with InDesign CS5.5 on OSX 10.6.8)
    It's the characterRotation that is not working as expected.
    Uwe
    Message was edited by: Laubender

  • In Flash the sound does not play only started from the beginning. Can anyone please help?

    In Flash, the sound only plays if the file is started from the beginning. The sound doesn't play if starting from anywhere other than the beginning.
    This is very frustrating when trying to sync the animation with the sound as it's not possible to scroll back and forward with the sound playing. The only way the sound works is if it is started from the beginning.
    If anyone can help that would be fantastic.
    Thanks

    Hi Jeromie,
    Many thanks for your help. Here is some additional information, which may shed light on the problem.
    I am using Flash Professional CC  2014.0 release,  Build 14.0.0.110
    The computer I'm using is then iMac running OSX version 10.9.3 Build 13D65 2.7 GHz Intel Core i5
    I am using Flash, not a web-based editor that leverages Flash Player.
    "a direct link to the project or tool would be useful in allowing us to attempt to reproduce the problem" -  Not sure how to do this, how can I add the project to the forum?
    Many thanks once again for your help, let me know if you need more information.
    Cheers
    Michael

Maybe you are looking for