All about Active Directory Programming in C#

In this blog, we will see Active Directory Programming using C# code.In other blogs, you can read ASP.Net Tutorial, .Net Core Tutorial.We will first understand – What is Active Directory? What is Active Directory? Active Directory is a central database for your organization. It keeps the record in various domain.This is a Directory structure used in Windows … Read more

All about sp_addlinkedserver syntax

sp_addlinkedserver linked 2 servers. Once sp_addlinkedserver query executes, query can be run against these servers. Run below queries one by one to link, to provide login credentials and to access data EXEC sp_addlinkedserver @server=’ServerName’ EXEC sp_addlinkedsrvlogin ‘ServerName‘, ‘false’, NULL, ‘username’, ‘password’ select * from [ServerName].[DBName].[DBO].[TableName] Once your requirement is done, you may drop the linking by … Read more