MongoDB : introduction to MongoDB

MongoDB is an  is a cross-platform open-source document database, and the leading NoSQL database. Written in C, C++ and Java script . MongoDB features:

Read more

MySQL Master-Master-Slave-Slave Replication

Here we are going to create a Master -> Master -> Slave -> Slave replications architecture. I am expecting here , you

Read more

convert time in seconds to HH:MM:SS format in MySQL?

You can use MySQL function SEC_TO_TIME(). Example: SELECT SEC_TO_TIME(2378); Output is: 00:39:38  

Read more

Resolved : mysql replica : Relay log read failure: Could not parse relay log event entry.

I’m not sure what the root cause may be. But to recover from this situation, you’d want to instruct MySQL

Read more

Difference between Stored Procedure and Function : SQL Server

Stored Procedures are pre-compile objects which are compiled for first time and its compiled format is saved which executes (compiled

Read more

Failed to connect to MySQL-asterisk

Files need to check are: /etc/asterisk/res_odbc.conf /etc/odbcinst.ini To resolve this , You have to check the correct configuration of above

Read more

Import large csv file using phpMyAdmin

Getting Error while upload large file from phpMyAdmin: Soution: change the memory limit in php.ini file both upload_max_filesize and post_max_size also. Then restart the httpd

Read more

MySQL Skip Duplicate Replication Errors : skip replication error

Normally MySQL replication will stop whenever there is an error running a query on the slave. This happens in order for us

Read more

Managing Views in MySQL : Showing mysql view definition

Summary: in this tutorial, you will learn how to manage views in MySQL including displaying, modifying and removing views. Show view definition

Read more