20 Tips for Oracle SQL Developer (To Save You Time)

Поделиться
HTML-код
  • Опубликовано: 17 окт 2024

Комментарии • 52

  • @salvaddd
    @salvaddd 2 года назад +11

    Im starting my first IT job as a PL/SQL developer and this video is a life saver, Thank you!!

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Glad it was helpful!

    • @deepakmandal161
      @deepakmandal161 7 месяцев назад

      I know SQL cmd,PLSQL cmd ,oracle sql,MySQL ,postgresql what other skill should have to work in PLSQL developer??

    • @deepakmandal161
      @deepakmandal161 7 месяцев назад

      What exactly you do in company ???and how??

  • @demikoo
    @demikoo 3 года назад +8

    My mind was blown several times watching this video. Thank You!!!

  • @flashflair
    @flashflair 2 года назад +1

    I wish I knew block selection years ago. So many years spent adding ',' to each line or using notepad to replace or excel to create the columns etc. Blown away

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Yeah it's very handy! I use it in several other editors.

  • @severtone263
    @severtone263 Год назад +2

    CRazy how one can use a product for many years and never fully know it. You have given me some helpful insights, thank you

  • @viliuxsas
    @viliuxsas 2 года назад +1

    Finally found about block selection which I needed them early!

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Great, yeah it's a helpful feature!

  • @raphaelneves7827
    @raphaelneves7827 2 месяца назад +1

    Thank you so mutch for this video. this tips It'll be very important for my learning.

  • @essayloopwritingservices2937
    @essayloopwritingservices2937 3 года назад

    You made me fall in love with SQL. Thanks a lot

  • @SinskariBoi3366three
    @SinskariBoi3366three Год назад

    One feature you’d like is improved backup. It has become very simple to spare your work in the tool. Before this patch we were developers were permitted to save around hundred articulations as a matter of course. But now you set aside to 500 explanations in the addition to the new feature of Oracle DB, cloud services has improved the transferring information.

  • @bubbudubbu5515
    @bubbudubbu5515 3 месяца назад

    Hi, Thanks for the awesome tips. I am trying to duplicate the connection window on the left. Is it possible? Basically, I am trying to open multiple packages and tables in parallel and currently with 1 connection window, I have to scroll to packages and tables list each time.

    • @DatabaseStar
      @DatabaseStar  3 месяца назад +1

      Hmm I'm not sure if you can actually. You can open multiple packages at once, in different tabs, but you would have to scroll the list each time.

  • @SoyJavero
    @SoyJavero Год назад +1

    VERY USEFUL VID, THANKS SR

  • @gabrielfigueiredodecarvalh8253
    @gabrielfigueiredodecarvalh8253 2 года назад

    Thanks a lot! Is there a keyboard shortcut to hide the result grid, Like the Microsoft SQL Server Management Studio's Ctrl+R?

    • @DatabaseStar
      @DatabaseStar  2 года назад +1

      Good question, I'm not sure. There's a list of keyboard shortcuts currently in SQL Developer in the Preferences window, and you can set a shortcut if it's in the list and none is applied.

    • @JeffSmiththat
      @JeffSmiththat Год назад +1

      you can do it via keyboard, but not easily, def not with a single keystroke. Limitation I hope to have fixed with our new version of SQL Dev coming later in 2023.

  • @charansamudrala8099
    @charansamudrala8099 2 года назад +1

    Very useful information, Gracias for content..

  • @vickypatekar9532
    @vickypatekar9532 3 года назад +1

    Thank You Sir for tips and Tricks 👍

  • @JL-qc5gq
    @JL-qc5gq Год назад

    How do you extract results (including the column names) from a stored procedure which output is a sys refcursor?

    • @DatabaseStar
      @DatabaseStar  Год назад

      Oh I'm not sure. I haven't worked with sys refcursors very much recently.

  • @edsonandrade05
    @edsonandrade05 2 года назад

    really good tips.
    I'm also looking for some tip to keep the code format when copying and pasting and also keeping the colors in SQL editor. I looked for it hardly but it seems to be a feature that does not exist. I heard Toad has a setup where you copy using Rich Text. In case you know anything please also share.

    • @DatabaseStar
      @DatabaseStar  2 года назад

      That would be ahelpful feature. I'm not sure how to do it unfortunately!

  • @EricMasonify
    @EricMasonify 3 года назад

    Thank you, very much appreciated 🙏

  • @goldgold4943
    @goldgold4943 Год назад

    Amazing video.. Thanks.. Pls make one for pgadmin too..

  • @hamsecaynaashe411
    @hamsecaynaashe411 2 года назад

    usefull tips thank you dear

  • @MrKhalidhamid07
    @MrKhalidhamid07 2 года назад

    very very informative thanks alot.

  • @RedShiftGalaxy
    @RedShiftGalaxy 2 года назад

    Thanks.

  • @harshadmhatre9434
    @harshadmhatre9434 Год назад

    Nice video

  • @danayoung4460
    @danayoung4460 2 года назад

    Do you have tips on exporting queries faster?

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Exporting the results of queries? Not that I know of. There may be a command to save the results of a query to a text file or CSV file in SQL but I don't know off the top of my head.

    • @JeffSmiththat
      @JeffSmiththat Год назад

      When you export the results, the application runs the query again. If you want to avoid this, return all the results from the query BEFORE you do an export.

  • @enockoloo3814
    @enockoloo3814 2 года назад

    sql developer is real pain whenever you import/export huge data especially into excel/csv format. it literally hangs and locks everything - crazy.

    • @DatabaseStar
      @DatabaseStar  2 года назад

      Yeah, I've found it can be slow when doing this. That's annoying that it locks :(

    • @JeffSmiththat
      @JeffSmiththat Год назад

      if it's a huge file, always convert it to CSV first, and then the memory footprint and CPU requirements will be a FRACTION of what they'd be otherwise.