Monthly Archives: November 2022

SQL Server Backup Database using T-SQL

This blog article shows you how to use T-SQL to backup SQL Server database. The reason for this post is that I always forget about these commands. I will just put down the 2 most common options that people will … Continue reading

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

‘DataTable’ does not contain a definition for ‘AsEnumerable’ and no accessible extension method ‘AsEnumerable’ accepting a first argument of type

This blog article shows you one of the ways to get read of the error “‘DataTable’ does not contain a definition for ‘AsEnumerable’ and no accessible extension method ‘AsEnumerable’ accepting a first argument of type“. I have the code below. … Continue reading

Posted in Uncategorized | Leave a comment

Failed to generate SSPI context

This blog article shows one of the possible causes to have the error “Failed to generate SSPI context” in UWP app. If you have gotten the message “Failed to generate SSPI context” like the one below. You might think this … Continue reading

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

UWP GridView Table data binding

This blog article shows you how to bind data to GridView in UWP. Firstly, create a UWP project. I use the name App1. Overwrite the entire MainPage.xaml with the code below. <Page     x:Class=”App1.MainPage”     xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation&#8221;     xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml&#8221;     xmlns:local=”using:App1″     xmlns:d=”http://schemas.microsoft.com/expression/blend/2008&#8243;     xmlns:mc=”http://schemas.openxmlformats.org/markup-compatibility/2006&#8243;     mc:Ignorable=”d”     Background=”{ThemeResource … Continue reading

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

SQL Server Restore Database using T-SQL

This blog article shows you how to use T-SQL to restore SQL Server database. The reason for this post is that I always forget about these commands. I will just put down the 2 most common options that people will … Continue reading

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

Power Automate Extract Email Attachment

This blog article shows you one of the ways that you can extract the Outlook email attachment to SharePoint. This article expects you to have basic knowledge on Power Automate. This method is working for now. I have tried these … Continue reading

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

Microsoft Outlook App and Outlook Web App learning (Resources)

This blog article provides the learning resource for Microsoft Outlook. Learn more about Outlook on the web https://support.microsoft.com/en-us/office/learn-more-about-outlook-on-the-web-adbacbab-fe59-4259-a550-6cb7f85f19ec/?WT.mc_id=DP-MVP-36769 MS-203 Manage recipient objects and resources in Microsoft 365 https://learn.microsoft.com/en-us/training/paths/manage-recipient-objects-resources-microsoft-365/?WT.mc_id=DP-MVP-36769 Getting started in Outlook Web App https://support.microsoft.com/en-us/office/getting-started-in-outlook-web-app-0062c7be-f8e3-486e-8b14-5c1f793ceefd/?WT.mc_id=DP-MVP-36769 Outlook training https://support.microsoft.com/en-us/office/outlook-training-8a5b816d-9052-4190-a5eb-494512343cca/?WT.mc_id=DP-MVP-36769 Set categories, … Continue reading

Posted in Uncategorized | Leave a comment

Export Microsoft Access table to Dataverse

This blog article shows you one of the possible ways to export Microsoft Access database table to Dataverse. At first, I login to Office 365, select the Dataverse under the Power App. You can see I do not have a … Continue reading

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

Create Azure SQL Linked Server

This blog article shows you one of the ways to create a Linked Server to Azure SQL Database. I have tried to use the GUI to create the Linked Server unfortunately it failed. Then I tried the SQL statement below … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform | Tagged | 2 Comments