Search results

  1. K

    Steps to clone MySQL database via PhpMyAdmin

    You can clone your database in PhpMyAdmin and for that you have to create separate copy of your database. First login to phpMyAdmin. Here you will find list of databases, click on particular database to clone it. In the top bar you will find option “Operations”, click on it. You will find a...
  2. K

    Steps to make MySQL server connection remotely with Windows Command Prompt

    You can follow below steps to remotely connect MySQL server. Login to your server and hit Start + R button. Now you have to go to the path C:\Program Files\MySQL\MySQL Server 5.X\bin and run below command: mysql -u root -p Now it will ask for MySQL root password, you have to enter the...
  3. K

    Ways to make connection to MySQL database from phpMyAdmin

    You can follow below steps to make connection to MySQL database from phpMyAdmin. If you have login details then you can open phpMyAdmin URL (http://VPS_IP_address:8080). Now enter your username and password, and click on Go button. Here you have to enter you server IP address instead of...
  4. K

    RESOLVED Error ”[IM002] Data source name not found”

    Error Message ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified. If you are getting above error while making connection to mysql database with ASP.NET application then you can add ODBC 5.x DSN connection on Windows VPS. You can follow...
  5. K

    Error “Error while starting mysql: Fatal error: Can't open and lock privilege tables: Table '.\mysql\user' is marked as crashed and should be repaired

    If you are getting below error while establishing connection with “Collection Max” then you can check below steps to resolve issue. Error while starting mysql: Fatal error: Can't open and lock privilege tables: Table '.\mysql\user' is marked as crashed and should be repaired. MySQL server would...
  6. K

    Unable to restart MySQL service on Windows server

    If you are trying to restart MySQL service and you are getting error 1503 then it means your service is not restarting properly. You can follow below steps to solve this issue: Go to Task Manager. Here you have to search for MySQL process which is named as mysqld.exe or mysqld-nt.exe. Now...
  7. K

    Steps to change webmail custom logo

    You can follow below steps to upload custom logo in webmail: Log in to WHM. Go to Home » cPanel » Customization Now click on Customize Brand tab. Here you can upload your desired logo with “Browse” option. NOTE: Your file type must be .svg or .png At last click on Save button.
  8. K

    Error “vs shell installation has failed with exit code 1638”

    if you are getting below error while installing MSSQL 2017 on dedicated server then you can follow below steps to resolve this issue: vs Shell installation has failed with exit code 1638 The main reason for this error is there Visual Studio 2017 already installed on your server before SQL...
  9. K

    Error Invalid class [0x80041010] while launching SQL Server Configuration Manager

    If you are getting below error while accessing the SQL Server Configuration Manager then you can follow below steps to resolve this issue. Cannot connect to WMI provider. You do not have permission or the server is unreachable. Note that you can only manage SQL Server 2005 and later servers...
  10. K

    How can we use MSSQL Activity Monitor for the most expensive query?

    If a slow query is running on server then it will consume more resources like memory, disk, processor etc. You can find these kinds of queries and manage them easily with SQL Activity Monitor. Login into your RDP. Open your MSSQL Management Studio and click on your particular user. After that...
  11. K

    Steps to make your MSSQL database offline

    If you are not allowed to perform operations on online status then you have to take your database offline. You have to follow below steps to take your database offline. First login to SQL Server Management Studio. Click on “Database” and then choose particular database which you want to take...
  12. K

    Shrink MSSQL Database

    If you have large MSSQL database then you can shrink it to free up some space on SQL server. This shrinking process will remove the unused space from database. You can follow below steps to shrink database via Microsoft SQL Management Studio Login to your SQL server. Now expand databases and...
  13. K

    Steps to add new user in cpanel

    If you want to login with multiple users n cpanel then you can use cPanel User Manager tool. With this you can create additional user in cpanel to login. Log in to your cPanel account. Click on “User Manager” option under “Preferences” section. You can create new account by clicking on “Add...
  14. K

    How can we set maximum MSSQL database size limit?

    You can follow below steps to set the database size limit using SQL Management Studio. Login to your SQL Management Studio. Right click on particular database and choose “Properties” option. A new dialogue will open where you have to choose “Files” option. You have to click on three dots which...
  15. K

    Resolved Error “Upgrade Error - Valid Database compatibility level and successful connection rule”

    When we try to upgrade your SQL server then sometimes it throws below error. "The report server database is not a supported compatibility level or a connection cannot be established." Sometimes the reason of this error is SQL Server name which was no longer existed in Reporting service...
  16. K

    Enable MS SQL server access in php

    To access MSSQL server data from PHP scripts you will need to enable two php extensions SQLSRV extension and PDO_SQLSRV extension. You can follow below steps to enable these extensiosn in SQL server 2008. First of all you have to check the compatible version of MSSQL drivers with your PHP, you...
  17. K

    Steps to change MSSQL server 2008 port

    AS we know Windows VPS default port number is 1533but if we want to change the default port then we have to follow below steps: Login to your Windows VPS. Navigate to Start >> All Programs >> Microsoft SQL Server 2008 R2 >> Configuration Tools >> SQL Server Configuration Manager. Now choose...
  18. K

    Steps to change MS SQL admin user password

    Here we are assuming that we have hoststud user and we need to change the password of hoststud user with below steps: First login to MS SQL management studio with current password. Now click on “Security >> Logins >> hoststud (user)” under “Object Explorer”. After that right click on user...
  19. K

    Steps to change Database User's schema in MSSQL

    You can follow below steps: Login to SQL server database. Now right click on particular database and select “New Query” option. After that run this command: ALTER USER db_user WITH DEFAULT_SCHEMA = dbo; Here db_user is your database username.
  20. K

    How to disable PHP scripts for sending emails?

    You can easily disable PHP scripts from sending emails to, for that it is must to have root access of your server. You can check below steps: Login to WHM. Go to Server Configuration >> Tweak Settings >> Mail Here enable “Restrict outgoing SMTP to root, exim, and mailman (FKA SMTP Tweak)”...
Top