Mongo DB Test

Installing MongoDB on Windows. Download MongoDB from its download page, and install it. I chose to install in C:\opt\MongoDB\Server\3.2. Create a folder for database and a folder for logs. Then create a mongod.cfg to represent this data. In my case, I put all under a new C:\data\ directory. And this is the Read more…

PL/SQL Snippets

PL / SQL Some PL/SQL snippets of code backup and recovery of a table interactive input with & find keys referencing your table group and count list column names list available tables in a schema Backup and recovery of a table Create a backup copy of your table Restore the Read more…

myBatis Java

This article introduces mybatis java (iBatis 3 for java) and summarizes its configuration and usage. The article also give suggestions on its usage. Introduction The iBATIS Data Mapper (born in 2002) is a framework that  introduces SQL Mapping approach to persistence layer development. The iBATIS name and code was donated to the Apache Software Foundation; that hosted Read more…