Skip to main content

Command Palette

Search for a command to run...

๐Ÿš€ Getting Started with Oracle Autonomous Database (Free Tier) โ€“ My First Hands-on Experience

Updated
โ€ข2 min read
๐Ÿš€ Getting Started with Oracle Autonomous Database (Free Tier) โ€“ My First Hands-on Experience

As part of my learning journey in the Oracle ecosystem, I recently explored the Oracle Cloud Free Tier and worked with Oracle Autonomous Database. In this blog, Iโ€™ll walk through my first hands-on experience, including setting up the database and running basic SQL operations.

โ˜๏ธ What is Oracle Autonomous Database?

Oracle Autonomous Database is a cloud-based database service that automates many routine tasks such as provisioning, patching, tuning, and backups. It allows developers to focus more on building applications rather than managing infrastructure.

๐ŸŽฏ Objective

The goal of this task was simple:

Create an Autonomous Database using Oracle Cloud Free Tier Perform basic SQL operations (Create, Insert, Select) Understand how Oracle database tools work in a real environment

๐Ÿ› ๏ธ Step 1: Creating the Autonomous Database

I logged into Oracle Cloud and created a new Autonomous Database instance with the following configuration:

Workload Type: Transaction Processing Deployment Type: Shared Infrastructure Plan: Always Free

Once created, the database status became Available, indicating it was ready to use.

๐Ÿ’ป Step 2: Using SQL Worksheet

After setting up the database, I accessed the Database Actions โ†’ SQL Worksheet, which provides a web-based interface to run SQL queries.

๐Ÿงช Step 3: Running SQL Queries

I performed the following operations:

  1. Create Table CREATE TABLE students ( id NUMBER, name VARCHAR2(50) );

  2. Insert Data INSERT INTO students VALUES (1, 'Mudassar');

  3. Retrieve Data SELECT * FROM students; ๐Ÿ“Š Output

The query successfully returned the inserted data:

ID NAME 1 | Mudassar

This confirms that the table was created and data was inserted correctly.

What i Learned

How to create and configure an Oracle Autonomous Database How to use SQL Worksheet for executing queries Basic SQL operations in Oracle environment The simplicity and power of Oracle Cloud Free Tier

๐Ÿš€ Conclusion

This hands-on experience gave me a solid introduction to Oracle Cloud and database management. The Autonomous Database makes it incredibly easy for beginners to get started without worrying about infrastructure setup.

3 views

More from this blog

๏ฟฝ

๐Ÿš€ Getting Started with Oracle Autonomous Database (Free Tier) โ€“ My First Hands-on Experience

15 posts