Skip to content

Instantly share code, notes, and snippets.

View jayprajapati857's full-sized avatar
🏠
Working from home

Jaykumar Prajapati jayprajapati857

🏠
Working from home
View GitHub Profile
@jayprajapati857
jayprajapati857 / Installing SQL Server 2008 from command line.md
Last active June 4, 2019 05:40
Installing SQL Server 2008 from command line

Installing SQL Server 2008 from command line

  • Download SQL Server 2008 Express

  • If you want to know all the available Options and Switches which you can make use of this Installation, Run this command SQLEXPR_x64_ENU.exe /? in command propmp running as Administrator mode and navigating it to the Downloaded path of SQL Server exe.

  • After getting all the Options and Switches use them as per your requirements

  • In this Gist we are going to install only SQL Server 2008 DB Engine. You can also install the other tools from command line, such as SSAS, SSRS, SSIS and Tools(like SSMS).

  • The parameters I am going to set are:

    Instance Name: SQL2008

@jayprajapati857
jayprajapati857 / VisualStudioExtensions.md
Created May 30, 2019 17:33 — forked from pishangujeniya/Visual-Studio-Extensions.md
Visual Studio must have extensions

Visual Studio Must have Extensions

Hello World! Every programmer loves IDE and auto-complete inetllisense facilities in IDE's and editor tools. But, any of the program doesn't suit to everyone's need, and thier comes the existence of extensions. Here I am listing out some of the very usefull extensions, that every Visual Studio user must have.

Hit Star if you liked this.

Just search the title in extensions marketplace.

@pishangujeniya
pishangujeniya / Visual-Studio-Code-Extensions.md
Last active December 2, 2022 14:49
Visual Studio Code Recommended Extensions List, Top must to have extensions for Visual Studio Code

Visual Studio Code Must have Extensions

Hello World! Every programmer loves IDE and auto-complete inetllisense facilities in IDE's and editor tools. Since when Visual Studio Code came into market, it has attracted a lot of popularity among every age group of coders. But, any of the program doesn't suit to everyone's need, and thier comes the existence of extensions. Here I am listing out some of the very usefull extensions, that every Visual Studio Code user must have.

Hit Star if you liked this.

Just search the title in extensions marketplace.

@pishangujeniya
pishangujeniya / MySQL-8-Visual-Studio-2017-EntityFramework-Guide.md
Last active May 29, 2022 07:12
MySQL Server 8.0 with Visual Studio 2017 and EntityFramework Install Guide

Installing MySQL 8.0 Server with EntityFramework in Visual Studio 2017

  • Install MySQL Server 8.0
  • Install Complete MySQL Connector.Net x86 8.0.16
  • Install Complete MySQL Visual Studio Plugin 1.2.8
  • If after installing MySQL Visual Studio Plugin it shows warning that failed to execute comamnd devenv /updateconfiguration, then manually execute that command in Developer Command Prompt for Visual Studio 20xx with run as administrator.
  • Run this command Install-Package EntityFramework -Version 6.4.0 in Visual Studio Nuget package manager console
  • Run this command Install-Package MySql.Data -Version 8.0.16 in Visual Studio Nuget package manager console
  • Run this command Install-Package MySql.Data.EntityFramework -Version 8.0.16 in Visual Studio Nuget package manager console