Subscribe to Posts by Email

Subscriber Count

    696

Disclaimer

All information is offered in good faith and in the hope that it may be of use for educational purpose and for Database community purpose, but is not guaranteed to be correct, up to date or suitable for any particular purpose. db.geeksinsight.com accepts no liability in respect of this information or its use. This site is independent of and does not represent Oracle Corporation in any way. Oracle does not officially sponsor, approve, or endorse this site or its content and if notify any such I am happy to remove. Product and company names mentioned in this website may be the trademarks of their respective owners and published here for informational purpose only. This is my personal blog. The views expressed on these pages are mine and learnt from other blogs and bloggers and to enhance and support the DBA community and this web blog does not represent the thoughts, intentions, plans or strategies of my current employer nor the Oracle and its affiliates or any other companies. And this website does not offer or take profit for providing these content and this is purely non-profit and for educational purpose only. If you see any issues with Content and copy write issues, I am happy to remove if you notify me. Contact Geek DBA Team, via geeksinsights@gmail.com

Pages

Oracle 12.2: Lock Down Profiles

To restrict user operations at PDB levels and even more granular restriction, in 12.2 we can create Lock down profiles using “create lock down profile”.

Here are some examples

CREATE LOCKDOWN PROFILE test; ALTER LOCKDOWN PROFILE test DISABLE STATEMENT = (‘ALTER SYSTEM’); ALTER LOCKDOWN PROFILE test ENABLE STATEMENT = (‘ALTER SYSTEM’) CLAUSE= (‘flush […]

Oracle 19c: Max_Idle_Blocker_Time Parameter

DBA’s often kill the blocking sessions and from 19c (not sure which patch set) we have new parameter called MAX_IDLE_BLOCKER_TIME parameter which helps to specifies the maximum number of minutes that a blocking session can be idle. After that point, the session is automatically terminated.

A session is considered to be a blocking […]

Oracle SODA : Simple Oracle Document Access

Oracle’s Simple Oracle Document Store is an interface to manage Document Store type work loads in Oracle Database. Leveraging JSON Object Support with in Oracle Database. SchemaLess & NOSQL access but fully acid complaint. Collection Management through various implementations like Java, Rest, Python, Native SQL etc.

Store and manage JSON and XML documents in Oracle […]

Metalink Assistant for Database PSU/RU/Release reference – Nice one

Hi

I am one of you scrolling through different metalink and master notes for latest patches for Oracle databases, and now Oracle metalink made it easy or I saw it very late :). A nice Download assistant interactive which provides all links to the relevant patches etc. Watchout this small video.

Assistant: Download Reference for […]

12C – Reduce Transportable Tablespace Downtime using Cross Platform Incremental Backup

Thanks to my Colleague Jaipal to introduce me to this Metalink Note: Doc ID 2005729.1

In a 12c and higher environment, to migrate data between systems that have different endian formats, with the least amount of application down time.

The first step is to copy a full back up from the source to the destination. […]

OOW#18 – Kafka with Oracle Database

Yes, Oracle always strive to integrate latest trends in the industry to its Database. Now the new one is Kafka integration with Oracle Database through DBMS_KAFKA package. Where you can publish events and consume or load data into tables.

This feature has been discussed in CodeOne 2018 by Melli Annamalai, Senior Principal Product Manager at […]

Oracle Hands on Lab for Database Upgrades Practice

Follow this link for Oracle Hands on Lab to practice certain tasks like upgrades and patching etc which is quicker and nicer.

http://www.oracle.com/technetwork/community/developer-vm/vts-hol-2415742.html

The lab instructions contains the following activities : Source Oracle

The public image for 18c is not available until 18c official release. and it contains 18c instead of 12.2.0.1

Thanks

Suresh

[…]

AIOUG – ODevC Yatra – 11th July – Hyderabad – I am speaking

Hello,

I am speaking at ODevC Yatra about Docker : Oracle Container Registry. This tour spans 7 major cities for 9 days with great speakers around the world.

 

Dates & Registration Link for all Cities:- http://odevcyatra.in/register/

Don’t miss it and register here (early bird offer until 17-Jun-2018) :- http://odevcyatra.in/hyderabad-registration/

Sessions Agenda in Hyderabad […]

12.2.0.1 : Multi Instance Redo Apply

As we all aware , that we can have only one instance of Standby running with MRP (redo apply) running in RAC environments.

Starting 12.2.0.1, we can have multiple instances on standby side too with following command.

Generally, to start the MRP process we use,

ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION;

Now […]