How to Create SQL Server Database Project With Visual Studio

In this article, we are going to learn about SQL Server Database Project (Template) available in Visual Studio. I will cover the following points, Introduction of SQL Server Database Project. Create New SQL Server Database Project. Import database schema from an existing database, a .sql script file or a Data-tier application (.bacpac) the Project. Publish to create new Database in SQL server. The database plays … Continue reading How to Create SQL Server Database Project With Visual Studio

Create SQL Server Database Project With Visual Studio. Create or compare two Databases.

Here, we are going to learn about SQL Server Database Project (Template) available in Visual Studio. I will cover following points: Introduction of SQL Server Database Project. Create New SQL Server Database Project. Import database schema from an existing database, a .sql script file or a Data-tier application (.dacpac) the Project. Publish to create new Database in SQL server. Compare Two Database and find differences. … Continue reading Create SQL Server Database Project With Visual Studio. Create or compare two Databases.

SharePoint Error: Updates are currently disallowed on GET requests. To allow updates on a GET, set the ‘AllowUnsafeUpdates’ property on SPWeb.

This error occurs while clicking General setting of Web Application in SharePoint Central Administrator. SharePoint Central Administrator >> Manage Web Applications >> Select Web Application (From List) >> General Settings >> General Settings. Resolution: Using Powershell Scripts ( SharePoint Management Shell): Run this powershell script: $web = get-spwebapplication http://SharepointUrl$web.HttpThrottleSettings$web.Update() Kind Regards! Continue reading SharePoint Error: Updates are currently disallowed on GET requests. To allow updates on a GET, set the ‘AllowUnsafeUpdates’ property on SPWeb.