Monthly Archives: December 2022

Update from Windows Server 2019 to Windows Server 2022

This blog article shows you some steps when upgrading from Windows Server 2019 to Windows Server 2022. Firstly, download the ISO file from MSDN subscription. Mount or unzip the ISO file. Double click the setup.exe. Click Next. I select the … Continue reading

Posted in Uncategorized | Leave a comment

Delete SQL Server database column using Visual Studio

This blog article shows you how to delete column from database table using Database Project in Visual Studio. Firstly I import the Database Schema using Visual Studio, https://chanmingman.wordpress.com/2021/10/11/import-database-schema-using-visual-studio/?WT.mc_id=DP-MVP-36769. Then Add column to database table using Visual Studio, https://chanmingman.wordpress.com/2022/12/25/add-column-to-database-table-using-visual-studio/?WT.mc_id=DP-MVP-36769. We are … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform | Tagged | Leave a comment

Technical Guide to Building SaaS Apps on Azure

Learn how to bring your Software-as-a-Service (SaaS) application to customers around the world with Azure. Get the guide created specifically for software architects, technical managers, technically oriented business leaders and ISVs who are building SaaS as a business. Read the Technical … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, management, Microsoft Office, Office 365, Operating System | Tagged | 2 Comments

Add column to database table using Visual Studio

This blog article shows you how to add column to database table using Database Project in Visual Studio. Firstly I import the Database Schema using Visual Studio, https://chanmingman.wordpress.com/2021/10/11/import-database-schema-using-visual-studio/?WT.mc_id=DP-MVP-36769. After importing the database schema. Double click to open the Categories.sql as … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | 1 Comment

CTO December 2022 articles and resources

These are the good reads found in this month. 8 reasons why digital transformations fail Transforming on the fly Not having a clear vision Forgetting to take the customer along on the journey https://www.cio.com/article/228268/12-reasons-why-digital-transformations-fail.html Low-code and no-code apps spur new … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, management | Tagged | Leave a comment

C# Pascal Triangle

This blog article shows you how to do a Pascal Triangle using C#. I found this code in C# but the below sharp does not really show as a triangle. Hence, I modified the C++ version of the Pascal Triangle. … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | Leave a comment

Enable Windows Subsystem for Linux in Windows 11

This blog article shows you how to Enable Windows Subsystem for Linux in Windows 11. Click on the Start button, type Turn Windows features on or off then click on the Turn Windows features on or off. Select Windows Subsystem … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, Operating System | Tagged | Leave a comment

LINQ Query Group By

This blog article shows you one of the ways on how to achieve GROUP BY in LINQ query. In this example, I am using Northwind database. To group by the product name, product id, and order id. The SQL statement … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | Leave a comment

The Total Economic Impact™ Of Microsoft Azure Arc For Security And Governance

Explore the benefits of securing and governing your infrastructure and apps across hybrid, multicloud and edge environments with Azure Arc. The Total Economic Impact™ Of Azure Arc for Security and Governance, a 2022 commissioned study conducted by Forrester Consulting, provides … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform, Microsoft Office, Office 365, Operating System | Tagged | 2 Comments

LINQ Query Select Distinct

This blog article shows you one of the ways on how to achieve SELECT DISTINCT in LINQ query. In this example, I am using Northwind database. To get the Distinct product name in Order Details. The SQL statement is as … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | Leave a comment