Skip to main content

Posts

Showing posts from May 3, 2020

15404 error in SQL not able to create new DB diagram

In SQL Server Management Studio do the following: Right Click on your database, choose properties Go to the Options Page In the Drop down at right labeled "Compatibility Level" choose "SQL Server 2005(90)" 3-1. choose "SQL Server 2008" if you receive a comparability error. Go to the Files Page Enter "sa" in the owner textbox. 5-1 or click on the ellipses(...) and choose a rightful owner. Hit OK after doing this, You will now be able to access the Database Diagrams.

Scaffolding Angular App & using ag-grid

Below code needs to run in node window to scaffold and Angular App. npm install -g @angular/cli ng new my-app --style scss cd my-app ng serve Below code needs to run to install Angular Grid npm install --save ag-grid ag-grid-angular ref: https://www.ag-grid.com/angular-getting-started/