Should you use Cloud Clusters Oracle hosting (oclusters)?
Managed Oracle hosting is one of the hardest things to shop for at a small scale. Oracle's own cloud is built for enterprise budgets, and almost no modern database platform offers Oracle at all. So if you have found Cloud Clusters (their Oracle product is oclusters.com), you have found one of the few hosts that will run Oracle for a few dollars a month. This is the honest review, including the one caveat that matters most.
Full disclosure: we run Layerbase Cloud, a competing database platform, and we do not host Oracle. So this is not a head to head. It is two honest answers: Cloud Clusters is a reasonable choice for a specific kind of Oracle need, and if you are choosing a database fresh, Postgres on Layerbase is the better path. We will be clear about which one is you.
Contents
- Cloud Clusters runs real Oracle, but only 11g XE
- What that means in practice
- What it costs
- When Cloud Clusters Oracle is a fair pick
- If you are choosing fresh, look at Postgres
- What Postgres on Layerbase gives you
- A note on the website itself
- Try Postgres locally first with SpinDB
- The verdict
Cloud Clusters runs real Oracle, but only 11g XE
This is genuine Oracle Database, not a compatibility layer. The important caveat is the version: oclusters offers only Oracle Database 11g Express Edition (XE). There is no 19c, 21c, or 23ai, and no Standard or Enterprise edition.
Oracle 11g XE is a free edition Oracle released around 2011. It is real Oracle and it speaks real PL/SQL, but it is old, and the Express edition carries hard resource caps by design (a limit on user data, a single CPU thread of processing, and a cap on RAM). Cloud Clusters leans on XE precisely because it is free to redistribute, which sidesteps Oracle's licensing entirely. That is a reasonable way to offer cheap Oracle, as long as you know what you are getting.
What that means in practice
- Good for: learning Oracle and PL/SQL, running an old application that targets 11g, dev and test against a real Oracle, or a small workload that fits inside XE's caps.
- Not suitable for: anything that needs a modern Oracle version, Standard or Enterprise features, or more headroom than XE allows. If your requirement is "real production Oracle, current version," neither Cloud Clusters nor any low-cost host will meet it. That is an Oracle Cloud (OCI) or licensed-host conversation, and an expensive one.
This is not a knock on Cloud Clusters so much as the reality of Oracle: the only way to offer it cheaply is the free Express edition, and Express is limited.
What it costs
Pricing follows the same flat, per-instance model as the rest of the Cloud Clusters network: fixed CPU, RAM, and SSD tiers, billed monthly, cheaper if you prepay. Entry pricing lands in the range of $4.19 to $4.99/mo depending on which of their pages you read, up to roughly $24 to $32/mo for the top tier. There is a 7-day free trial with no credit card, flat pricing with no overages, and 24/7 support. Oracle runs in an isolated Docker container on Kubernetes, single node.
When Cloud Clusters Oracle is a fair pick
If you need a real Oracle instance for development, testing, learning, or a small legacy app that targets 11g, and you do not want to install Oracle yourself (which is genuinely painful), Cloud Clusters is a reasonable, cheap option. Few hosts will hand you a running Oracle for a few dollars a month with a free trial. For that narrow but real use case, it earns the recommendation.
If you are choosing fresh, look at Postgres
Here is the question to ask first: do you need Oracle, or did you inherit it?
If you have a legacy Oracle application or PL/SQL you cannot rewrite, stay on Oracle, and Cloud Clusters is a fair home for an 11g-shaped workload.
But if you are starting something new, very few teams choose Oracle today. PostgreSQL is the database most new projects reach for, and it is also the most common destination when teams migrate off Oracle (tools like ora2pg exist precisely because that path is so well worn). Postgres is open source with no edition tiers, no per-core licensing, and no Express caps, and it is a first-class engine on modern platforms.
What Postgres on Layerbase gives you
Layerbase Cloud hosts PostgreSQL 18 (and more than 20 other engines) with things the Oracle world does not hand you cheaply:
- A real free tier. No credit card, no 7-day clock, no XE caps. It hibernates when idle and wakes on connect, so a project or staging database stays free indefinitely. The Pro plan adds its own free trial.
- Branching. Instant copies of a database for previews and tests, then discard them. Cloud Clusters does not offer this.
- A web query console. Write SQL in the browser, read results in a real data table, no local client.
- Local tooling. SpinDB, an open-source CLI that runs Postgres and 20-plus engines locally with no Docker, plus a desktop app. SpinDB runs on macOS, Windows, and Linux.
- Free auth integrations, application hosting next to your data, and dedicated bare-metal servers on the Custom plan for raw performance.
- Flat, no-overage pricing, the same predictable-bill model you would get from Cloud Clusters.
A note on the website itself
A brief, fair observation. The Cloud Clusters network has a dated feel, closer to a mid-2010s shared-hosting panel than a modern developer platform, and details are inconsistent across their sites (the Oracle site shows a 2025 copyright while others show 2026, and the company is named as both an LLC and an Inc). The Oracle site's testimonials are attributed only to masked email addresses with placeholder avatars, no names, titles, or companies, so there is no way to verify a real person or business behind them. That does not prove anything is wrong. We would just weigh the free trial over the marketing.
Try Postgres locally first with SpinDB
If you are open to Postgres, get a feel for it locally before committing. SpinDB does it with one CLI, no Docker. (What is SpinDB?)
npm i -g spindb # npm
pnpm add -g spindb # pnpmspindb create my-postgres -e postgresql --start --connectThat creates a Postgres, starts it, and drops you into a psql shell:
CREATE TABLE notes (
id SERIAL PRIMARY KEY,
body TEXT NOT NULL,
created_at TIMESTAMPTZ DEFAULT now()
);
INSERT INTO notes (body) VALUES ('first note');
SELECT * FROM notes;When you want it managed, the same engine moves to Layerbase Cloud unchanged.
The verdict
- You need real Oracle for dev, test, learning, or a small legacy 11g app: Cloud Clusters is a perfectly reasonable option. It runs genuine Oracle XE cheaply with a free trial, and almost nobody else does. Just go in knowing it is 11g Express, with the caps that implies.
- You need modern, production-grade Oracle: that is an Oracle Cloud or licensed-host conversation, not Cloud Clusters and not Layerbase.
- You are choosing a database fresh, or you are flexible: put PostgreSQL on Layerbase at the top of your list. Free tier, branching, a web console, local tooling, and no licensing or edition caps.
If you need Oracle, keep Cloud Clusters in mind. If you do not, create a free Postgres on Layerbase Cloud and see how much you get without a license, a clock, or an Express cap.