Oracle SQL Developer - Full Course

Поділитися
Вставка
  • Опубліковано 28 лип 2024
  • Learn the features that can help you work with your Oracle database better and faster
    Oracle Tutorial | Oracle SQL Tutorial For Beginners ☞ morioh.com/p/cdd5588d4e8e
    Oracle Foundations Associate Certification (PASS THE EXAM!) ☞ morioh.com/p/2e7316a54d06
    MySQL Database - Full Course from Zero to Hero
    ☞ morioh.com/p/752aa713e91d
    Oracle SQL Developer is currently the most popular tool among database developers and Oracle SQL learners, however, since it makes it so easy to start firing commands and querying a database, many people don't feel the need to investigate its features, and end up using only what is obvious, visible, and enabled by default.
    If you are one of them, this course will help you get out of that group and start using Oracle SQL Developer more smartly.
    Even if you have some time using the tool and are currently using some of its features, there's most likely something in this course that you don't know and can be helpful to you.
    Learn the features that can help you work with your Oracle database better and faster:
    Install and configure Oracle SQL Developer to run in your desired language and only with the features you need.
    Create database connections and execute commands and scripts.
    Display your results in a way that makes your work easier.
    Use code templates and snippets to accelerate your work.
    Export data in different formats and using different methods.
    Some other useful and interesting things.
    All Oracle SQL Developer features are free. Take advantage of them:
    This course was created because there appears to be a pattern among Oracle SQL courses, regardless of the platform where they are taught: “If you are able to install it and connect to a database, you are good to go".
    What's more: Experience shows that even developers who are already working with Oracle databases as part of their job, tend to not look for ways to work faster in SQL Developer, and usually only investigate features they don't currently use when it is strictly necessary for their jobs.
    The goal of this course is to fill the gap most SQL courses leave about this great tool so that it can serve as a foundation if you are planning to learn Oracle SQL, and also to help you take advantage of the tool's features if you are already working with Oracle databases as part of your job.
    Content and Overview:
    The course includes more than 20 lectures, each one starting by showing you why you need it or how it can be helpful to you, and then proceeding to demonstrate how to enable it and/or use it.
    There is usually one lecture per feature, so, if for any reason you are not interested in any of the included tips, you can simply skip it, and go directly to the one you want to learn about.
    The course content will continue to be updated over time, to make sure you always know about the most important features available to you, as new versions of Oracle SQL Developer are released.
    Learn these tips and apply them to your work, and you will not only be well prepared to learn SQL or work with it smartly, but will also enjoy being seen as an experienced and knowledgeable developer by your friends and peers.
    #oracel #sql #database
    Video source via:

КОМЕНТАРІ • 92

  • @awakened514
    @awakened514 2 роки тому +4

    @53:12 Useful Shortcuts 2
    ctrl+shift+' hotkey for toggling between UPPER, LOWER, and INITCAP on highlighted text in worksheet
    ctrl + / hotkey for commenting in or out your line or highlighted lines of code in worksheet
    alt + pagedown and alt+pageup hotkeys for moving between worksheet and results grid (very helpful for when copying and pasting results while running queries)

  • @awakened514
    @awakened514 2 роки тому +6

    @55:52 Using HTML
    If you concatenate html tags into your select list so that they surround an expression, the output will actually provide an html output. Alternatively, you can just use the opening tags and leave out the closing tags in your concatenation and you will get the same result. This includes img tags with a src.
    An example: SELECT ''||table_name name,
    FROM cat;
    An interesting use case is that you can place html code into the 'Display Null Value as' bar located at Tools>Preferences then click Database and then click Advanced. This can allow you to display an html image for example when a NULL is present in your data.

  • @awakened514
    @awakened514 2 роки тому +6

    @16:54 Using the Linegutter
    You can see your line and column at the bottom right of your SQL Developer window.
    Right click in your worksheet to the left of the dotted lines to turn on line gutter (toggle line numbers)
    Instead of trying to highlight a query with your mouse on the query text, start your click and drag at the line number in which your query begins and drag to highlight.
    If you go to Tools

  • @girishdadi12
    @girishdadi12 4 роки тому +2

    Simply Awesome, these are really helpful, thank you :)

  • @awakened514
    @awakened514 2 роки тому +2

    @8:53 Creating database connections
    Connection color important to consider
    1521 is default port of the Oracle listener
    xe is default instance name of express edition
    test before save

  • @awakened514
    @awakened514 2 роки тому +3

    @29:32 Exporting Data
    Simply highlighting the data and then using ctrl+c and pasting somewhere with ctrl+v does not give you the column header.
    Instead, if you use ctrl+shift+c, you will also copy the column headers.
    You can also right click on any selection of data and then click 'Export" and this will bring up the export wizard.
    You can then export as your data as insert, html, or pdf. HTML and INSERT are two examples that can be particularly useful in some use cases.
    Also, you can insert a /* csv */, /* html */, /* insert */ and other comments immediately before your column list in the SELECT list and then run a script in order to output in the format of your comment's keyword. You can use any keyword from the export wizard except pdf and excel.
    If you use a spool command followed by a file path immediately before a SELECT statement as per the paragraph immediately above this one, you can export this as a file on a machine.
    Finally, you can export a table by right-clicking it in the connections window and clicking export.

  • @awakened514
    @awakened514 2 роки тому +3

    @1:02:51 Displaying Gauges
    Here is a hard-coded example (you can also do this dynamically since there is string involved):
    SELECT column_name1, 'SQL:GAUGE:::::', column_name2;
    In the above example, the min is the minimum value you want your gauge (a bar graph) to display and max is the maximum value. Low and High Threshold control where the bar graph will be colored to represent ranges of values in the low and high range and, if you leave an interval between the low and high threshold, there will be a third area colored in between the low and high threshold.
    values_the_gauge_needs is the expression you will use to feed the gauge values to display. For example:
    SELECT last_name, 'SQL:GAUGE:1:25000:2500:15000:' || salary, column_name2;

  • @awakened514
    @awakened514 2 роки тому +2

    @19:05 Formatting Code
    ctrl+f7 hotkey to auto format all of your code in your worksheet (or highlight specific query(-ies) first before using the hotkey to only format a select amount of code)
    You may not like the autoformat above so you can change the output of ctrl+F7 by doing the following:
    Tools>Preference:
    Click Database (or possibly Code Editor and, if so, then click 'Format' and then 'Advanced Format')
    Then click SQL Formatter and then Oracle Formatter.

  • @awakened514
    @awakened514 2 роки тому +2

    @46:30 Navigation Filtering and Zebra Pattern
    Tools

  • @awakened514
    @awakened514 2 роки тому +4

    @48:40 Useful Shortcuts
    1. Hotkey for SQL History is F8 or View>SQL History
    From here you can move previous queries into your worksheet or remove them.
    2. ctrl+space hotkey to fill in queries as you type them for table or column names.
    3. ctrl+g hotkey to jump to a specific line in your worksheet
    4. shift+f4 on object name in worksheet to give a floating window with even more information than the DESCRIBE command.
    Using this hotkey on a stored procedure or function will give you its code in a new tab.
    5. shift+f5 hotkey for moving to the next tab to your left.
    shift+alt+f5 hotkey for moving to the next tab to your right
    6. ctrl+tab+tab (hold ctrl and press tab twice while continuously holding ctrl) will take you to your last tab.
    If you continue to hold ctrl after you have pressed tab twice you will get a list of all of your tabs so you can toggle through them with tab.

  • @shobanbabu3692
    @shobanbabu3692 3 роки тому +2

    Great, This is what i expected. Thanks 👌

  • @josemicorrea4021
    @josemicorrea4021 3 роки тому

    Awesome, amazing... Thank's a lot for share this!

  • @sriguduru1
    @sriguduru1 2 роки тому +1

    Well explained! Thank you!

  • @DWEthiopia
    @DWEthiopia 2 роки тому +15

    Why does everyone skip the part of creating the local database?

  • @nitinkolte6657
    @nitinkolte6657 5 років тому

    very useful info. Thanks!!!

  • @SachinKumar-ct7tj
    @SachinKumar-ct7tj 2 роки тому +3

    This is the best Oracle SQL tutorial 👍

  • @SteveAMcPherson
    @SteveAMcPherson 2 роки тому

    This info was really helpful. Thanks!

  • @williamgarzon7031
    @williamgarzon7031 5 років тому

    Useful information, thanks.

  • @bellmorada
    @bellmorada Рік тому

    Thank you for all these tips! Awesome!

  • @dilludillsYT
    @dilludillsYT 4 роки тому +1

    Thank you. My respects to you Sir.

  • @murathp07
    @murathp07 3 роки тому

    Wonderful set of tips and tricks, but I have a question about SQL Editor Code Templates in Version 19.2.1.247 of SQL developer. Even though I tried to do a ssfw and parameterized it, it is not working the same way as you have shown us in this video with older version. I am unable to jump between parameters via Tab and I need to use my mouse to actually point over each parameter and manually fill it... Do you know what might have changed with the newer version of the SQL developer...? Thanks.

  • @astrolite.
    @astrolite. Рік тому +1

    The energy you have is contageous! I was excited when you were

  • @xxllyyss
    @xxllyyss 4 роки тому +3

    excellent tutorial.. why so less view? highly recommend!!!! thank you sir. God Job!!!!!

  • @vicolodo1
    @vicolodo1 3 роки тому +1

    high recommend!!! Thank you!

  • @raghud541
    @raghud541 2 роки тому

    Thank you so much, it was very useful.

  • @prakashchakravarthyg
    @prakashchakravarthyg 2 роки тому +2

    Excellent delivery of shortcuts

  • @danayoung4460
    @danayoung4460 Рік тому

    Great lecture, thank you so much for your work! I have a question, when I use oracle sql at work, why tables showing filtered and not showing? How to make them appear?

  • @mohd.golamhossain6536
    @mohd.golamhossain6536 Рік тому

    Sir, your presentation and selected topics for the video is really really great. Hats off. Thank you for the video.

  • @juno7893
    @juno7893 3 роки тому

    Wow! 👏🏻👏🏻👏🏻 Great video sir.

  • @vigneshiyer5723
    @vigneshiyer5723 3 роки тому

    ❤️❤️ Awesome explanation.

  • @aydinbaysoz
    @aydinbaysoz Рік тому +6

    Hello,
    I can not cennect to database. Where did you create username and passwrd? Thank you!

  • @samreenshaikh6712
    @samreenshaikh6712 3 роки тому

    Great👍...thanks for sharing this information

  • @alfredsfutterkiste7534
    @alfredsfutterkiste7534 3 роки тому

    Awesome mate. just awesome.

  • @awakened514
    @awakened514 2 роки тому +2

    @14:30 Executing Commands and Scripts
    ctrl+enter hotkey for 'run statement'
    A script is when you want to run two or more statements consecutively in one shot instead of individually.
    F5 hotkey for 'run script'
    You can reference an external script (one that is not present within your worksheet) by using:
    @[then path to the file present on your maching].sql

  • @venukuchipudi9861
    @venukuchipudi9861 4 роки тому

    Very good explanation

  • @christianvegamontalvoSTREAM
    @christianvegamontalvoSTREAM 3 роки тому +2

    AMAZING TUTORAL!!!

  • @zeroxcrusher
    @zeroxcrusher Рік тому

    You can also use F9 to execute statements instead of ctr + enter

  • @pravinkumar-ug8bg
    @pravinkumar-ug8bg 3 роки тому +1

    Thank you very much

  • @pavanghai
    @pavanghai 3 роки тому +1

    I like this video, thanks a ton for taking effort. Is it possible for new video using toad for oracle?

  • @saidaouyous861
    @saidaouyous861 7 місяців тому

    what an amazing course thanks man 👏

  • @alladivamshikrishna228
    @alladivamshikrishna228 4 роки тому

    HI. CTRL+SPACE IS NOT WORKING WHEN WE ARE USING TEMPLATES.

  • @muneerhasan5822
    @muneerhasan5822 Рік тому

    Thanks , it's very useful

  • @IndianYakker
    @IndianYakker 3 роки тому

    Thanks a ton

  • @markharsh1204
    @markharsh1204 2 роки тому

    Excellent!

  • @fatemehghasemi8901
    @fatemehghasemi8901 Рік тому +1

    Great video!

  • @vicolodo1
    @vicolodo1 3 роки тому

    hello, very good teacher....does exist an oracle sql course from same teacher?

  • @ayoubanbara2021
    @ayoubanbara2021 3 роки тому

    Thank you

  • @jsp2518
    @jsp2518 2 роки тому +1

    I have been using this video each time I wanna setup SQL since 2019 lmao

  • @imranknight6659
    @imranknight6659 Рік тому +1

    I keep getting error. The network adapter could not establish the connection.

  • @anwar6971
    @anwar6971 2 роки тому +1

    Good explanation

  • @alexandredossantossilva166
    @alexandredossantossilva166 4 місяці тому

    Thanks by the tips!

  • @bhoopathyp2339
    @bhoopathyp2339 2 роки тому

    I couldnt able to use spool and /*CSV*/* from Sql developer.
    Do i need to change any settings?

  • @jagritisarkar2362
    @jagritisarkar2362 Рік тому +1

    How do I connect to an existing connection? I am failing to do so.

  • @alexeymatveev9031
    @alexeymatveev9031 Рік тому

    great video thanks

  • @joshuaperez8692
    @joshuaperez8692 2 роки тому

    why when i press CTRL + SPACE. II still reamis ? my query goes wrong because that.
    regards,

  • @zhengpeishannam2906
    @zhengpeishannam2906 3 роки тому

    非常好!

  • @sahayavinodh
    @sahayavinodh Рік тому

    Is a way to write a script for Data Pump Export in Oracle SQL developer?

  • @TheAnchor2626
    @TheAnchor2626 8 днів тому

    Thank You.

  • @ahmed512
    @ahmed512 Рік тому +1

    Hello, i'm using a MacOS but never manage to make Oracle SQL Dev. tool working on it... i always get an error message when trying to add a DB. Like this: "The Network Adapter could not establish the connection"

  • @user-lh6xe3zi1t
    @user-lh6xe3zi1t 11 місяців тому

    How can I increase the buttons and the code line???

  • @bentatlim
    @bentatlim 2 роки тому

    Hello, how can i just run a simple SQL Statement like " select getdate() "? The system show me a error "FROM is missing" . But Why

  • @awakened514
    @awakened514 2 роки тому +2

    @11:39 Disabling Unneeded Features
    Unneeded features affect application performance. Furthermore, it can affect security.
    Tools>Features
    Starting with Database, consider disabling the following:
    Data Miner
    Oracle OLAP
    APEX listener Admin.
    Change Management
    Database Cart
    RESTful Services Admin.
    Spatial
    Unit Test
    XML Schema
    Within Database Migrations, consider disabling the following:
    Everything (if you don't work with migrations)
    Within Version Control, consider disabling the following:
    Everything (but Data Modeler depends on Subversion so may not be able to disable it)
    Apply Changes
    Tools menu will be shorter

  • @minpandey5188
    @minpandey5188 3 роки тому

    cool. It is awesome.

  • @kingstonXavier-pn2gx
    @kingstonXavier-pn2gx 2 місяці тому

    I had sql developer tool working like a charm for years. Recently I got a new laptop and got sql developer installed and now it became too slow and it takes almost 30 minutes to run a simple select query. Do you see any configuration change could fix this issue?

  • @coolcha
    @coolcha 4 місяці тому

    Are connections actually separate databases - i.e. if I make a table in one connection, it doesn't seem to show up in another connection?

  • @sidnayak4395
    @sidnayak4395 Рік тому +1

    Hi,
    How did you find out the Username and Password to connect to local host?

  • @optimistic_guy313
    @optimistic_guy313 2 роки тому +1

    Hello Sir, I can't connect to the database like you showed. What is the password you entered? I entered the password of my oracle acc. Still unable to connect t9 database. Any other way to connect to local database?

  • @beteewketeducation5099
    @beteewketeducation5099 2 роки тому +1

    how to fix
    ORA-01017 invalid username/password; logon denied problem

  • @imranashrafofficial.
    @imranashrafofficial. 4 місяці тому

    Can anyone tell me which password should I use? I am beginner have no idea... I try but error came!

  • @bhavyar2986
    @bhavyar2986 Рік тому

    Is PL/SQL alternate to Oracle SQL Developer?

  • @anwar6971
    @anwar6971 2 роки тому

    Having problem with my databases using other databases fields

  • @pjmclenon
    @pjmclenon 2 роки тому

    hello my username and password work on the cli but not on sql developer plz answer ok

  • @mutharakeshvarma1811
    @mutharakeshvarma1811 9 місяців тому

    For creating "sys" connection what is the password

  • @francismwamba5759
    @francismwamba5759 Місяць тому

    how can i solve this error ? Status : Failure -Test failed: IO Error: The Network Adapter could not establish the connection (CONNECTION_ID=GjNCEiZvSz67JdYsugt2/Q==)

  • @onlinesaidasa9105
    @onlinesaidasa9105 2 роки тому

    Namaste
    Oracle is offering free OCI database certifications till 28-Feb-2022

  • @manishamurmu6328
    @manishamurmu6328 2 роки тому +3

    Where can we get username and password.Do we have to put randomly any username and password or we have to create it from somewhere!Please sir help me out

    • @MrKirillD
      @MrKirillD 2 роки тому

      I need that information too.

    • @toonkinga284
      @toonkinga284 2 роки тому

      I m not sure but I think it's the password, you put when you download/install oracle *database*

    • @vaibhav.v6403
      @vaibhav.v6403 2 роки тому

      @@toonkinga284 I have used it but it dosent work

  • @rajulgupta3614
    @rajulgupta3614 Рік тому

    What is the password how we can get the password of any connection no one is showing the full method to create a connection

  • @pavansharma7944
    @pavansharma7944 2 роки тому

    This is a my SQL course or oracle SQL 19 c

  • @awakened514
    @awakened514 2 роки тому +1

    @24:15 Displaying NULLs in a special way
    Tools>Preferences
    Then click 'Database' and then 'Advanced'
    Choose a color from the drop down 'Display Null Using Background Color'

  • @SiddharthRay1
    @SiddharthRay1 Рік тому

    what is password for sys? our machine password?

  • @awakened514
    @awakened514 2 роки тому +1

    @42:00 Generating Relational Diagrams
    First of all, you can see the details of a table by finding it in the connections window and clicking on it.
    Alternatively, a hotkey for this is to hold down ctrl while clicking on the table's name within the worksheet window.
    Within this details window there are a number of tabs that are helpful.
    Clicking on the 'model' tab will provide a relational diagram of the given table and right clicking on one of the tables in this diagram will provide the option to 'show parent and child tables' which brings other tables that depend on that table into the diagram.
    Another way to make a relational diagram is to click ViewImport>Data Dictionary and then clicking the connection you want and the objects you want to include.
    Finally you can click File>Data Modeler>Print Diagram in order to create a file with your diagram for printing.

  • @sooieese
    @sooieese 10 місяців тому

    11:36

  • @ferreira926
    @ferreira926 9 місяців тому

    Thanks for the tips, its helps a lot!
    I commented because I can't gave you 2 likes....lol

  • @BADGRAPHIX
    @BADGRAPHIX 2 роки тому

    Real video begins @8:53

  • @GCP899
    @GCP899 2 роки тому

    select /*html*/* from all_users; not working