I’m new to Oracle, and I need a database…help!
Database Stuff

I’m new to Oracle, and I need a database…help!

Taking an Oracle Database class or course? Need to get up and going on Oracle Database really fast, and really easily? Here’s my advice!

Read More
REST APIs and TABLE INSERTs: the Definitive Guide for Oracle
ORDS

REST APIs and TABLE INSERTs: the Definitive Guide for Oracle

REST APIs and TABLE INSERTs, everything you need. Bonus: we’ll build a REST API to GET the data, with support for CLOB/JSON, links, and exception handling!

Read More
SQL Developer

Tnsnames.ora [DOCS] is a configuration file for SQL*Net that describes the network service names for the databases in your organization. Basically, it tells Oracle applications how to find your databases. This post is just a quick overview on how to get SQL Developer to ‘see’ this file and define a connection. There’s only a single prerequisite for having SQL Developer setup such that it can use TNSNAMES to connect: You have somewhere a tnsnames.ora file…

SQL Developer

What is Oracle SQL Developer? Well, according to this document on OTN… What is SQL Developer? Date: May 2014 Oracle SQL Developer is the Oracle Database IDE. A free graphical user interface, Oracle SQL Developer allows database users and administrators to do their database tasks in fewer clicks and keystrokes. A productivity tool, SQL Developer’s main objective is to help the end user save time and maximize the return on investment in the Oracle Database…

SQL Developer

So you just got your brand new machine at work. Party time, excellent*! Amazon.com Widgets And, your friendly neighborhood IT guy even moved over all of your softwares, including SQL Developer. But when you go to use it, none of your connections are there. Or maybe the connections are there, but the connection passwords ARE not. And really, who has the discipline to have 300 different passwords for all of the databases memorized and ready…

SQL Developer

BLOBs are cool. Optimized such that you can store files basically in the database, with the power of SQL AND no performance hit. That sounds like a pretty good deal. I get asked questions a lot about accessing BLOBs once they’re in the database. And that’s led to quite a few posts here on the subject: Viewing BLOBs as pictures Viewing BLOBs in External Editors (PDFs, spreadsheets, etc.) Including BLOBs in your PDF reports But…

SQL Developer

I said earlier today that version 4.0.2 of SQL Developer consisted on ONLY bug fixes. I should have said MOSTLY bug fixes. There was also one minor tweak, although it was a minor tweak to a major feature: Completion Insight. This is the feature that kicks in while you are typing – suggesting column or table names to help you complete your SQL statements in an editor. Watch this quick video to see it in…

SQL Developer

As of late yesterday afternoon, we have two new updates for you: Oracle SQL Developer v4.0.2 – bug fixes only Oracle SQL Developer Data Modeler v4.0.2 – bug fixes and a few tweaks You can read the release notes to see exactly what’s changed. For SQL Developer, the major things are an update to fix some issues with our Data Miner extension, and 5 or so UI bugs in SQL Developer itself. Also, if you…

Oracle SQL Developer Key Features SQL Developer

Sometimes while I’m demonstrating Oracle SQL Developer, something on the screen catches the eye of someone in the audience, and they just have to know ‘what is that?’ So I put together the image you see above with a few key features highlighted. These might be things you’ve missed because they’re not default preferences or because you’ve ‘missed’ the right-click mouse operation to activate it. Here’s the list, can you match it to the highlighted…

SQL Developer

I’ve shown you and more than a few customers how to customize your Monitor Sessions page/report. If you need a refresher, that’s here. But basically it comes down to this: Copy the report from the Database Administration section of the Reports panel Paste it to the User Defined Reports section Edit to your heart’s delight But. Some of you have noticed that when you do this, you lose the ability to kill and trace sessions…

SQL Developer

Updated 8 August 2023 This feature has been removed, instead you can use the utPLSQL extension for SQL Developer. Wait, what is utPLSQL? It’s an open source library framework for writing PL/SQL unit test cases, implemented by writing PL/SQL. So it’s less GUI than SQL Developer’s feature was, but it’s MUCH MORE flexible and powerful. Download the extension If you’re on an older copy of SQL Developer with this feature still intact… If you want…

SQL Developer

One of the more popular features in SQL Developer is the ability to generate the CREATE DDL script for any object. If you open an object editor, the SQL page shows this script. Now, what many of you don’t realize is that the way this code can be generated is configurable. The requests I am most frequently asked to demo here are: No storage parameters No schema notation Show me the grants! Actually, there’s another…