HSQLDB – Installation
HSQLDB is a relational database management system implemented in pure Java. You can easily embed this database into your application using JDBC. Or you can use the operations separately. Prerequisites…
HSQLDB is a relational database management system implemented in pure Java. You can easily embed this database into your application using JDBC. Or you can use the operations separately. Prerequisites…
HyperSQL Database (HSQLDB) is a modern relational database manager that conforms closely to the SQL:2011 standard and JDBC 4 specifications. It supports all core features and RDBMS. HSQLDB is used…
HyperSQL Database is a modern relational database manager that conforms closely to the SQL:2011 standard and JDBC 4 specifications. It supports all core features and RDBMS. HSQLDB is used for…
MongoDB does not have out-of-the-box auto-increment functionality, like SQL databases. By default, it uses the 12-byte ObjectId for the _id field as the primary key to uniquely identify the documents. However, there…
Capped collections are fixed-size circular collections that follow the insertion order to support high performance for creating, read, and delete operations. By circular, it means that when the fixed size allocated…
GridFS is the MongoDB specification for storing and retrieving large files such as images, audio files, video files, etc. It is kind of a file system to store files but its…
RockMongo is a MongoDB administration tool using which you can manage your server, databases, collections, documents, indexes, and a lot more. It provides a very user-friendly way of reading, writing,…
Regular Expressions are frequently used in all languages to search for a pattern or word in any string. MongoDB also provides the functionality of regular expression for string pattern matching…
Starting from version 2.4, MongoDB started supporting text indexes to search inside string content. The Text Search uses stemming techniques to look for specified words in the string fields by dropping stemming…
As per the MongoDB documentation, Map-reduce is a data processing paradigm for condensing large volumes of data into useful aggregated results. MongoDB uses mapReduce command for map-reduce operations. MapReduce is generally used for processing…