How to create Database and allow a remote connection using SQL Management studio

In this video, we are going to cover how to create a database and connect to it using SQL Management Studio. In this video, we will show you how easy it is to get started using SQL Management Studio and create a database. We will also walk you through connecting that database to other applications in order to make use of its features. So if you are looking to master SQL Management Studio, then watch this video and learn everything that you need to know!

How to allow a user to connect to Microsoft SQL Server from Outside Network:
Step 1: Enable SQL Authentication (Very Important)

  1. In SSMS → Right-click server → Properties
  2. Go to Security
  3. Select:

    SQL Server and Windows Authentication mode
  4. Click OK
  5. Restart SQL Server service

Step 2 : Create a SQL Login for Remote Access

Create Login

       CREATE LOGIN remoteuser
       WITH PASSWORD = 'Strong@Password123';
 
Assign Database Access
 
USE YourDatabaseName;
CREATE USER remoteuser FOR LOGIN remoteuser;
ALTER ROLE db_owner ADD MEMBER remoteuser;
 
Use SQL Authentication, not Windows authentication.

Note: Make sure that port 1433 is allowed in windows firewall.
 

To get affordable server management services and server solutions visit: https://activeservers.in/security/serversolutions.aspx

  • Windows VPS, windows vps, Windows VPS Hosting, Windows VPS Hosting Plans, Windows VPS Server, Window VPS Server, windows virtual private server
  • 1 کاربر این را مفید یافتند
آیا این پاسخ به شما کمک کرد؟

مقالات مربوطه

WINDOWS VPS

Need better speed, performace of you website then choose VPS instaed of shared hosting. In VPS...

How to Install Any Browser on Windows Servers

In this video, we will show you how to install any browser on Windows servers. By the end of...

How to change Date and Time in Windows Servers

This video tutorial will show you how to change the date and time in a Windows Server. By...

How to Install DNS and IIS in Windows servers

DNS is a service that helps your computer find the correct IP address when it connects to the...

How to Install SQL Express + Management studio in a Windows server

In this video, we are going to show you how to install SQL Express + Management studio on a...