Part 4: Frequencey & Location & Copy Data one server to other Server & Best time of Day for Backup & Restore techsolution April 08, 2022 Read More
Part 3: Point in Time Recovery in MySQL techsolution April 08, 2022Frequency & Location & Copy Data one server to other Server & Best time of Day for Backup & Restore Read More
Part 2: Script for Backup & Restore in MySQL techsolution April 08, 2022Part 3 MySQL Point in Time Recovery Read More
Part 1: MySQL Backup & Recovery Fundamental techsolution April 08, 2022 Part 2 :Script for Backup & Restore in MySQL Read More
Part 2 : Query_Optimization Performance Tuning in MySQL techsolution April 08, 2022 Part 3 Query_Optimization Performance Tuning in MySQL Read More
Part 1 : Query_Optimization in MySQL techsolution April 08, 2022 Part 2 : Query_Optimization Performance Tuning in MySQL Read More
How to configure MY.CNF file in MySQL techsolution April 08, 2022 [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock #pid-file=/db/mysql/mysql.pid innodb_file_per_table=1 innodb_flush_method=... Read More
MYSQL CHEET SHEET FOR INTERVIEWS techsolution February 09, 2022STRING FUNCTION : SELECT CONCAT('MySQL','CONCAT'); select length('MYSQL'); : 5 select left('MYSQL',2);... Read More
SQL Query and concept Interview question and answer techsolution October 25, 2021Q: What is Normalization. Ans. Normalization is a database design technique to remove redundant data. Example :Dept table : Id First nam... Read More
Mysql funcation techsolution September 25, 2021How to create function in mysql many examples DELIMITER $$ CREATE DEFINER=`skyaws`@`%` FUNCTION `calRh1730ForDS`(_data_date DATE,_stationI... Read More
DUPLICATE KEY UPDATE IN MYSQL techsolution August 25, 2021Ex: we want to insert in table after delete some data but again insert data in table it is give error duplicate key error . insert ignore e... Read More
MYSQL TABLE techsolution August 15, 2021 CREATE TABLE `station_v1` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `IMEI` varchar(55) NOT NULL, `BARCODE` varchar(55) NOT NUL... Read More
How to add primary or unique and foreign key in mysql techsolution January 24, 20211. Primary Key : #insert uniqe value CREATE TABLE STATION (ID INT ,STATION_NAME varchar(11),DATA_DATE DATETIME,PRIMARY KEY (ID)); #uniqe v... Read More
Pivot the table in mysql using case techsolution January 13, 2021 Table without Pivot : SELECT STATION_V1.ID, STATION_V1.STATE, STATION_V1.DISTRICT, STATION_V1.TEHSIL, STATION_V1.STAT... Read More
ERROR 1264: Out of range value for column 'SOLAR_MAX' at row 1 techsolution January 09, 2021UPDATE `aws`.`STATION_DATA` SET `SOLAR_MAX`='1500' WHERE `STATION_DATA_ID`='142' ERROR 1264: 1264: Out of range value for ... Read More