• Post category:StudyBullet-6
  • Reading time:5 mins read


Learn some key skills of SQL Server and Visual Studio

What you will learn

Install a new instance of Microsoft SQL Server

Install Visual Studio IDE

Connect to SQL Server with SSMS

Create and configure a new database

Create a new Table

Insert data into a database table

Create a console application with Visual Studio

Create an ASP DOT NET application with Visual Studio

Create a Windows Forms console application with Visual Studio

Description

Microsoft SQL Server is a relational database management system developed by Microsoft. As a database server, it is a software product with the primary function of storing and retrieving data as requested by other software applicationsโ€”which may run either on the same computer or on another computer across a network.

SQL Server has four primary editions that have different bundled services and tools. Two editions are available free of charge:

SQL Server Developer edition for use in database development and testing.

SQL Server Expression for small databases with the size up to 10 GB of disk storage capacity.


Get Instant Notification of New Courses on our Telegram channel.


For larger and more critical applications, SQL Server offers the Enterprise edition that includes all SQL serverโ€™s features.

SQL Server Standard Edition has partial feature sets of the Enterprise Edition and limits on the Server regarding the numbers of processor core and memory that can be configured.

The core component of the SQL Server is the Database Engine. The Database Engine consists of a relational engine that processes queries and a storage engine that manages database files, pages, pages, index, etc. The database objects such as stored procedures, views, and triggers are also created and executed by the Database Engine.

Microsoft Visual Studio is an integrated development environment from Microsoft. It is used to develop computer programs, as well as websites, web apps, web services and mobile apps.

English
language

Content

SQL Server Setup

Introduction
What is SQL Server
Minimum SQL Server installation requirements
SQL Server Download
Install SQL Server
Install SSMS
Connecting SSMS to SQL Server
Database Concepts

Create database and table in SQL Server

Create and configure a new database
Create a table
Insert data into a table

Visual Studio Setup

What is Visual Studio
Minimum Visual Studio Installation Requirements
Download and install Visual Studio
Visual studio workloads

Creating various Projects with Visual Studio

Create a basic console application
Create a basic ASP.NET application
Create a Windows forms application
Running projects outside visual studio