Documentation
SolutionDeveloperComplianceProjects
  • Getting Started
  • Technology
    • Application Framework
    • Object-Relational Mapping
    • Security Framework
    • Architecture Pattern
    • API Management
  • Environment
    • Development Tool
    • Database Server
    • Web Server
  • PRESENTATION
    • Design Material
    • HTML Helpers
    • Icon Images
    • Custom CSS
    • JQuery Plugin
      • DataTables
      • Tabs
      • Date Picker
      • Calendar
      • Chart
      • Treeview
    • Client Script
      • Open Modal
      • Close Modal
      • Handle return data
      • Load Content
      • Change Hash
      • Change Title
      • Get actual Hash
      • Get Content
      • Update Content
      • Delete Content
      • Get Partial Content
      • Get Partial Content Async
      • Update Partial Content
      • Update Partial Content Async
      • Delete Partial Content
      • Get Action
      • Update Action
      • Delete Action
      • Cascading Dropdown
      • Display Document
    • MVC View
  • BACKEND
    • Base Controller
    • Controller
    • Base Model
    • View Model
    • Class Utility
      • Constant Values
      • Global Properties
      • Option Helper
      • Setting Helper
    • Data Repository
      • Read Columns
      • Read All Columns
      • Read First Record
      • Read by Primary Key
      • Find Record
      • Insert Record
      • Update Record
      • Delete Entity
      • Delete by Criteria
      • Delete by Primary Key
      • Counting Record
      • Check Exist
      • Generate Row-Id
    • Unit Of Work
    • Data Entity
  • Application Features
    • Account Management
    • Navigation Editor
    • Access Control
  • Examples
    • Simple Page
    • Master Detail
    • Editor Template
Powered by GitBook
On this page
  • General information
  • SQL Server
  • SQL Management Studio
  • Installation
  • How to start
  1. Environment

Database Server

PreviousDevelopment ToolNextWeb Server

Last updated 2 years ago

General information

A Database Server is a computer program that provides database services to other programs or computers, as opposed to just storing and retrieving data on a single computer. It can manage multiple databases and handle concurrent access from multiple users or clients. Examples of Database Servers include MySQL, SQL Server, and Oracle Database Server.

SQL Server

SQL Server is a relational database management system developed by Microsoft that does not only provide a Database Server but also comes with additional tools, such as SQL Server Integration Services (SSIS) for data management, SQL Server Data Tools for database development, SQL Server Management Studio (SSMS) for database management, SQL Server Analysis Services (SSAS) for data analysis and SQL Server Reporting Services (SSRS) for data visualization. It uses T-SQL as query language which is an extended version of the language SQL (Structured Query Language).

For more information:

SQL Management Studio

SQL Server Management Studio (SSMS) is an integrated environment for managing any SQL infrastructure, from SQL Server to Azure SQL Database. SSMS provides tools to configure, monitor, and administer instances of SQL Server and databases. Use SSMS to deploy, monitor, and upgrade the data-tier components used by your applications, and build queries and scripts.

Installation

  1. Go to

  2. Download the free "Express"*** version

  3. Follow the installation wizard

  4. After installation finished, click "Connect Now" to check if it worked

  5. Then click "Install SSMS" to install SQL Server Management Studio

  6. Follow the installation wizard

How to start

  1. Ask admin to allow you access to the databases you need and provide connection to them

  2. Make sure you are connected to the Employee wifi and the VPN (GlobalProtect)

  3. Open SQL Server Management Studio

  4. Select Server Type and type in the Server Name and select Windows Authentication

If you do not have direct access to the database, an alternative way to acces the data is to copy the database (.bak-file) to your device and use "localhost" as Server.

Following this route, you then need to restore the copied database in SQL Server by right-clicking "Database" and selecting "Restore Database...". This will open the following window:

Select device and then click the "..." Button. This will open the following window:

Here, clicking "Add" leads to a window where you can browse the files in your Explorer:

Select the .bak-file you want to restore and click "OK" in all of the windows that have been opened during this process.

https://www.sqlservertutorial.net
https://www.microsoft.com/en-in/sql-server/sql-server-downloads