Minimalistic Oracle

Minimalistic Oracle contains a collection of practical examples from my encounters with Oracle technologies. When relevant, I also write about other technologies, like Linux or PostgreSQL. Many of the posts starts with "how to" since they derive directly from my own personal experience. My goal is to provide simple examples, so that they can be easily adapted to other situations.

Friday, November 29, 2013

How to create a sequence and a trigger that will emulate "autonumber" in other RDBMS systems

›
If you have been working with other RDBMS systems, such as SQL Server from Microsoft, you may be used to a datatype called AUTONUMBER, which...
Wednesday, November 27, 2013

How does the 11gR2 feature "deferred segment creation" work?

›
Starting from 11gR2 onwards, Oracle introduced a feature called deferred segment creation . This means that Oracle will not need to create a...

What is the difference between automatic segment space management and manual segment space management?

›
In a locally managed tablespace, there are two methods that Oracle Database can use to manage segment space: automatic and manual. Manual ...

How to identify processes that are consuming lots of CPU power

›
Here is one way to identify processes that are consuming lots of CPU on your sever that I have used successfully in the past. First, use t...

How to find size, free space, used space, allocated space for the tablespaces in your database

›
SELECT F.FILE_ID, F.FILE_NAME, ROUND(F.BYTES/1024/1024) "Allocated(MB)", NVL(TO_CHAR(ROUND(F.BYTE...

How to compare the content of memory parameter and spfile parameters

›
### Compare static (pfile) and dynamic (spfile) parameter setting: set pages 100 set lines 400 col init_value format a36 col spfile_value f...

How to clean away control character from a text file

›
I found this little example on the internet and saved it as a shorthand - it has come in handy many times. Unfortunately I have forgotten th...
‹
›
Home
View web version

About Me

My photo
Name: Vegard Kåsa
My career as an Oracle DBA startet in 2001, when I acceptet a request to take on the responsibility as my current employer's DBA. From that point and onwards, managing Oracle databases has kept me busy and engaged. I enjoy my work, and particulary appreciate the constant learning and devlopment that comes with the job. From 2014, I am self-employed through my company Oric Consulting AS (Norway), and from 2024 Oric Consulting AB (Sweden) I currently live in Göteborg, Sweden, with my family.
View my complete profile
Powered by Blogger.