Program to Implement Merge Sort #include <iostream> using namespace std; void Merge(int *arr, int first, int last, int mid) {
Continue readingJava – Program to find the number of Days between two Dates
We have dates in the program as strings. We first parse them into dates and then find the difference between
Continue readingHow to Take Backup of a Table in MySQL
In this post, I am going to show you couple of ways to take the tables backups in MySQL. Taking
Continue readingHow to Convert a String to Number in MySQL
In MySQL, the code written in earlier example for SQL Server containing CONVERT() no longer works, instead it can be
Continue readingHow To Convert STRING To INT In SQL SERVER
If the table column is in VARCHAR and contains all numeric values, then it can be obtained as an integer
Continue readingFind out CPU Uses By each Databases in SQL Server
Through Below Script you are able to identify the CPU utilization By per databases in your SQL Server WITH CPU_Uses_Per_Db
Continue readingJava Program to Find Duplicate Characters in a String
This program going to find out the number of duplicate characters in the given String. In this program we are
Continue readingCapture TRUNCATE and DELETE events in SQL Server
I received one question on my email regarding how to capture TRUNCATE and DELETE statements being fired on a database
Continue readingStack Class in Java
Stack:- It is the child class of vector contains only one constructor Stack s = new Stack(); Methods of
Continue readingVector In Java
The underlying data structure is re-sizable array or growable array. Insertion order is preserved. Duplicate objects are allowed Null insertion
Continue reading