[Solved] The Backend version is not supported to design database digrams or tables.

I Came across this error when I got to work on some other machine with SQL Server Management Studio 2008 R2 installed. This error is thrown up when I tried to modify the design of a table by right-clicking on a table and selecting the “Design” option. Solution: Check Database version using “SELECT @@VERSION”In my … Read more

Getting Started With Visual Studio Code: Part 1

Every developer has a lot to gain by using a powerful editor. Auto-complete, fast file switching and the ability to install packages for new technologies are a few of the perks that every developer enjoys utilizing. And you get all these features in Visual Studio Code. It’s lightweight and ultra-fast. It’s a fast editing experience, similar to what you get with brackets, Sublime Text and Atom while it’s debugging and integration experience is similar to what you get with Web Storm or Visual Studio.

What is Linting?

Linting is a process of running a program to analyse your code for potential syntax errors. lint was the name originally given to a particular program that flagged some suspicious and non-portable constructs (likely to be bugs) in C language source code. The term is now applied generically to tools that flag suspicious usage in software written … Read more