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 18c: Optimizer_ignore_hints

If and if anytime you need to test it ignore hints or you have legacy codes, you can set ignore hint parameters. Before to 18c this is parameter is a hidden parameter “_Optimizer_ignore_hints” and been obsoleted. This can be set at system/session level.

alter system set optimizer_ignore_hints=TRUE

In addition, there is another parameter […]

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 […]

18c Database: Shadow Lost write protection

From 18c Onwards, we can enable Lost write protection for data blocks which occurs when an I/O subsystem acknowledges the completion of the block write even though the write did not occur or when a former image of the block overwrites the current image.

We can enable the Shadow Lost Write protection at Database, Tablespace, […]

Oracle Autonomous Datawarehouse : Loading Data from Oracle Objects Stores or AWS S3

Oracle Autonomous Datawarehouse offers loading the data from object stores like Oracle Object Store and AWS S3 or Azure Blob Store.

For this, a new package has been introduced called DBMS_CLOUD and you can load/unload the data and also manage the files with the package. This facilitates easy management of objects in the objects store […]

APACOUC.org – 2018 Webinar Tour – 18c New Features for DBA’s – 27th July

Hi

Join in to my free webinar for APACOUC.org webinar tour tomorrow i.e 27th July and I am presenting 18c New Features for DBA’s.

Timing: July 27th – 12.30PM (IST) , 17.00PM (AEST) Registration link : https://events.genndi.com/register/818182175026319207/2e96be318e

And also next wave of presentations announced, please check here.

http://www.apacouc.org/2017-webinar-tour.html

See you all there.

-Suresh

[…]

Oracle 18c Database – Docker available

Hello

We have official docker files available to build the Oracle 18c Database in docker. Please go to this link.

https://github.com/oracle/docker-images/tree/master/OracleDatabase/SingleInstance/dockerfiles

To build this

Install docker in your windows and switch to Linux Download the 18c database zip file to the docker directory and copy to c:\users\docker\18.3.0\dockerfiles\ Download the docker files from GitHub (above link) […]

Oracle 18c Released and available for download

Oracle 18c database Officially released for on premise customers. Not sure why 18.3 🙂

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

[…]

18c Database : Desupport of UTL_FILE_DIR Parameter

Starting 18c, UTL_FILE_DIR Parameter is no longer supported and errors out if called. Instead we have to directly call the file object using utl_file. This is due to increase the security of the database, since UTL_FILE will use the DIRECTORY object as location where in the UTL_FILE_DIR is the direct path to the OS directory […]

18c Database : SQLPLUS New Options

The following three options introduced in 18c are very useful for DBA’s.

I am sure how many of you find hard to limit the rows in Oracle and also finding sql_id for the statement executed. Now that has been solved.

SET FEEDBACK ON SQL_ID

You can find the sql_id for the executed statement in the […]