Error 2147942402 (0X80070002) when launching ‘ubuntu2204.exe’

If we see this ” Error 2147942402 (oX80070002) when launching ‘ubuntu2204.exe’ ” error while launching WSL (Ubuntu 22.04) using terminal, basically this error is caused because it may be installed a different version or incorrectly configured the command line. To fix this issue, follow these steps After adding path like above save settings and launch …

Error 2147942402 (0X80070002) when launching ‘ubuntu2204.exe’ Read More »

Dotnet ef – the specified command or file was not found

we might come across issues when trying to access .NET tool (dotnet ef) when it is already installed in the workstation or when trying to install or update the tool which can be a global or local tool. There are a couple of reasons a .NET tool fails to run, most likely When Executable file …

Dotnet ef – the specified command or file was not found Read More »

Create and run an ASP.NET Core app using the .NET Core CLI.

ASP.NET Core is an open source, cross platform framework for building modern, cloud based web apps on Windows, macOS, or Linux. Follow below steps to create ASP.NET Core web app.– Create a web app project– Trust the development certificate– Run the app. There are few prerequisites before starting,– .NET SDK (as of today there are …

Create and run an ASP.NET Core app using the .NET Core CLI. Read More »

SQL Server Import and Export Wizard: The \’Microsoft.ACE.OLEDB.12.0\’ provider is not registered on the local machine.

Basically, SSMS is a 32-bit application even when we install 64 bit SQL Installation. When we launch the SQL Server Import and Export wizard (DTSWizard) it runs the 32-bit version of it which needs the 32-bit version of Office libraries. if we have installed a 64-bit office then these office libraries will not talk to …

SQL Server Import and Export Wizard: The \’Microsoft.ACE.OLEDB.12.0\’ provider is not registered on the local machine. Read More »

No IUserTwoFactorTokenProvider named \’Default\’ is registered

While working on .NET Core\’s Identity files, I encounter this error: No IUserTwoFactorTokenProvider<TUser> named \’Default\’ is registered. The Microsoft.AspNetCore.Identity.UserManager<TUser>.GenerateEmailConfirmationTokenAsync or GenerateUserTokenAsync functions couldn\’t generate a token because no provider was available upon registering a new user. It\’s a very simple fix, just add a little bit more to AddIdentityCore<User> configuration in Startup.cs class services. The …

No IUserTwoFactorTokenProvider named \’Default\’ is registered Read More »

Project references are not showing up in Visual Studio

Basically, we call it either project references are code lens feature in visual studio, some times it stops working. in this case, just stop and start code lens feature. To do this just go to Tools -> Options -> Text Editor -> All Languages -> CodeLens.Uncheck \”Enable CodeLens\” option and click OK. Go back into …

Project references are not showing up in Visual Studio Read More »

SCHEDULED TIME AND AUTHORIZATION POLICY ACCESS CONTROL FOR DATA IN PUBLIC CLOUD

Scholarly article for Scheduled Time and Authorization Policy Access Control for Data in Public Cloud Publisher: JICR Author(s): Siva Sankar Alamalakala, Dr. V Naga Gopiraju ABSTRACT:The new perspective of redistributing data to the cloud is a twofold edged sharp edge. From one perspective, it frees data owners from a particular organization and is more straightforward …

SCHEDULED TIME AND AUTHORIZATION POLICY ACCESS CONTROL FOR DATA IN PUBLIC CLOUD Read More »

Changing SQL Server Collation After Installation

Basically, collation defines the rules for how strings of characters data are stored and compared. Based on the norms of a particular language it will vary. Query conditions will change depending on the language configured. The server collation acts as the default collation for all the system databases and also newly created databases. we can …

Changing SQL Server Collation After Installation Read More »

Scroll to Top