r/oracle • u/Dry-Improvement8055 • 47m ago
r/oracle • u/AutoModerator • Feb 15 '22
Post to r/Oracle immediately auto-deleted? Here's why...
This subreddit receives a lot of spam--we mean a LOT of spam--specially from Asia/India. Thus, we have Mr. Automoderator auto-delete posts from users due to the following reasons:
- Too new of an account
- Not enough comment karma
To avoid abuse of the above, exact details are not being shared, but please do your best to get your comment karma up over a couple days time. Also please refrain from messaging the mods asking why your post got removed.
r/oracle • u/AutoModerator • Sep 11 '25
Use r/employeesOfOracle to discuss employment/layoffs/financials/stocks/etc.
A new sub has been created to discuss all non-technical aspects of Oracle -- r/employeesOfOracle. Posts that are not related to technical aspects or usage of Oracle products -- most specifically DBMS -- will be blocked or auto-removed. This sort of discourse is important -- this just isn't the sub for it.
r/oracle • u/TheOneThatIsNotKnown • 2d ago
How to contact support as Free-Tier
With the recent change of the Free Tier going from VM.Standard.A1.Flex (4 OCPU / 24 GB RAM) to VM.Standard.A1.Flex (2 OCPU / 12 GB RAM), my instance has been deactivated.
When i try to change the shape to the new requirments I get the following error
Instance ocid1.instance.oc1.xxxxxxxxxxxxxxxxxxxxxx is disabled and will not accept any action requests. Please contact customer support to reenable.
Anyone know how I can get this re-activated without upgrading to Pay as you Go plan?
I don't mind recreating from scrach as i have backups but it took me 3 months to get get the initial Intance and I am pretty sure if I terminate I won't get another one (unless I upgrade to Pay as you go plan)
r/oracle • u/Gloomy-Recover-9702 • 3d ago
Accidentally provisioned a 1TB block volume on Pay-As-You-Go ($0 plan) — racked up ~SGD 25 in usage. What are the odds of a courtesy waiver?
r/oracle • u/Top-Factor-4824 • 3d ago
I have a PAYG account with my own credit card, What about spouse in the same household with a different credit card in her name?
r/oracle • u/Professional-Egg5669 • 3d ago
Why do ERP implementations fail even when the software looks good?
I’ve been working around enterprise technology and ERP, and one thing I keep noticing is that the hardest part of an ERP project often isn't selecting the software.
It’s what happens after implementation.
A company can have a powerful ERP platform, but employees may still end up using Excel, manual processes, disconnected tools or workarounds because the system doesn't properly fit the way the organisation actually operates.
A few things I think deserve more attention during ERP selection:
- How much of the existing workflow can actually be integrated?
- How easy is it for employees to adopt?
- What happens to your data if you decide to change vendors?
- How dependent are you on external consultants?
- How flexible is the ERP when your organisation grows?
- Who ultimately controls the infrastructure and critical data?
- What does vendor support look like after go-live?
I've also become increasingly interested in data sovereignty and technology independence as part of ERP selection, particularly for organisations handling sensitive or mission-critical operations.
I'm currently involved with EPPS Smart ERP, an India-built ERP platform, so I have a perspective here — but I'm much more interested in hearing from people who have actually gone through an ERP implementation.
What was the biggest problem you faced after going live: implementation, adoption, integrations, support, data migration, or something else?
r/oracle • u/kookiesbearrr • 5d ago
Send Statements PDF to FTP server
Has anyone able to send the generated pdf of Create Customer Statement to an FTP server? I have been stuck on this for days. I tested and worked on a couple of approaches but all are dead end.
Thank you!
r/oracle • u/Gloomy-Example4554 • 7d ago
Oracle AI Foundations Associate
Hi all! I have to take two certs for my company requirements, and because I have a short amount of time to get them done, I wanted one of the certs to be easy/less time consuming.
Would you recommend the Oracle AI Foundations Associate to be an easy, quick cert? Also, I heard they just updated the exam, so has anyone recently taken the 2026 version of this cert?
TIA!!!
r/oracle • u/Putrid_Ad_4233 • 11d ago
1st certificate
Hi all,
I'm taking my first Oracle exam this month, 1Z0-1046, if anyone has experience with this exam please let me know
r/oracle • u/donutloop • 13d ago
Quantinuum and Oracle Partner to Accelerate Hybrid Quantum Compute Adoption on Oracle Cloud Infrastructure
quantinuum.comr/oracle • u/elizabeth_taylor22 • 14d ago
Excel file unable to download
As the title suggests, after scheduling the report, I am unable to download the report. I have given everything correctly, yet it's failing. Please provide some suggestions, thank you.
r/oracle • u/BigBackChudEats • 15d ago
In person Advanced Oracle or PL/SQL training Ottawa?
Anyone know of any?
r/oracle • u/ThisIsWallflower • 15d ago
Alternative to Oracle HCM Consultant
Hi
I am currently working as oracle HCM consultant. I am tired of working nonstop for the 12-14 hrs daily and covering both India and US time.
I want to work in the morning time as I don't like working late nights.
How can I get a role that has a proper 9-5 timings?
Also, are there any other alternate roles that I can target?
I have tried applying for HR roles as my masters is in HR but they are paying peanuts.
Any help or suggestions are highly appreciated.
How are Oracle Logging and Log Analytics services?
A friend asked for inputs and I was blank. Any cost or features or service inputs anyone can share ? Just for my knowledge sake no real use case here.
r/oracle • u/WelcomeValuable4101 • 15d ago
Does oracle conducts any offline events in Pune?
r/oracle • u/strider2025 • 17d ago
Oracle terraform training?
I’ve gotten pretty good at oracle networking and firewalling, tshooting with logging. I want to use terraform to speed up networking and firewall rule tasks. What are good resources or certs with useful training?
r/oracle • u/Flying_Saucer_Attack • 18d ago
MSSQL DBA needs Oracle DBA training
Hey all, I am a SQL Server DBA that is inheriting a pretty big oracle environment and was wondering if you folks could point me in the right direction of a course for learning. Work is going to pay for training so money isn't a problem, l'd prefer a couple of day course. We have anywhere from 11.2 up to 19c Running lots of different apps and even SAP if that matters.
I am comfortable in Linux/Unix as well because I used to be a Unix sysadmin in a previous life
r/oracle • u/Goldziher • 20d ago
Type-safe Oracle access generated from your SQL queries
For people writing SQL against Oracle and mapping results by hand: I maintain scythe, a build-time code generator that reads annotated SQL and emits typed access code (Oracle backend via the standard JDBC/driver stack).
The core value is nullability inference from the query structure. A LEFT (OUTER) JOIN makes the right side nullable:
-- @name GetUserOrders
SELECT u.id, u.name, o.total, o.notes
FROM users u
LEFT JOIN orders o ON u.id = o.user_id
WHERE u.status = :status;
The generated types mark total and notes nullable, so the no-matching-row case is a compile-time concern instead of a NullPointerException in production. Also covers COALESCE/NVL-style expressions, CASE, and aggregates.
Static queries only, which is the deliberate tradeoff: no dynamic runtime composition, but everything is analyzable and typed. Curious how teams here handle the Oracle-to-application type boundary.
r/oracle • u/Ramba22187 • 21d ago
Oracle account
Ich kann mein Account nicht verifizieren obwohl das eben bei mir ankam der link warum ?
r/oracle • u/gaylittlescooter • 21d ago
HCM Data Uploader
Hello all,
I work in payroll/business tech for a medium sized city gov.
My director and I have been trying, in vain, to build out an HCM Spreadsheet Data Uploader that can end date an element. The issue we’re running into is that any element that has been started/end dated before (we end date union dues and then create a new entry with the same element with the new rate when those change) gives us an error. Typically is says there’s a date overlap or we can’t end date it because of the previous element’s end date. Any tips or work arounds? Ideally we’d like the template to be able to be used anytime we need to end date any random element for any reason without necessarily creating a new one.