How to Set a Custom Port for MS SQL Remote Access?

MS SQL

To assign a specific port number to the SQL Server Database Engine for remote access, take the following steps: Open SQL Server Management Studio and log in to your database. Right-click the server name in the left panel and choose Properties. On the left side, navigate to the Connections page and make sure “Allow remote connections … Read more

How to Resolve the ‘MySQL Command Not Found’ Error

How to resolve my SQL

The ‘MySQL command not found’ error usually occurs when MySQL is either not installed on your system or its installation directory isn’t included in the system’s PATH environment variable. This article will guide you through the steps to resolve this issue. Understanding the Error When you encounter the ‘MySQL command not found’ error, it means … Read more

How to Backup a Database using MySQLDump in WAMP

WAMP

1. Open a Windows command prompt. 2. Navigate to the directory where the MySQLDump executable is located, typically: “C:\wamp\bin\mysql\mysql8.2.0\bin”. 3. Use the mysqldump.exe command followed by options: mysqldump.exe -u root -p mydatabase > C:\Backup\host.sql 4. Here, “-u” specifies the username, “-p” prompts for the password, and “mydatabase” is the name of the database. The output … Read more

How To Create A MySQL Database Connection In Dreamweaver

After setting up a MySQL user’s account and after Setting up the PHP / MySQL Site Definition in Dreamweaver now we are going to have a look at the process to create a MySQL database connection with Dreamweaver. After finishing the defining part you should approach the following MySQL connection dialog box in Dreamweaver. Connection … Read more

Script For Connecting Remote MySQL DB From Local Machine

In a few circumstances, you may have to connect the MySQL Database from the local machine to the web hosting server, following is the script you can use for the same. Remember you need to have the following information with you 1. Database URL and2. Java applet – ‘com.mysql.jdbc.Driver’ – to connect it. Now you … Read more

How To Set / Reset MySQL Password?

Changing passwords is quite a regular type of task for many webmasters and the same is also applicable to database administrators also. Here I would like to share the procedure of changing the password of MySQL. The root user is the admin of a MySQL account. Remember that it is different than login into the … Read more