Category: Tutorials
Programming Languages- c#, java, asp.net etc articles
014. Who has CONNECT permission for an endpoint script – SQL Server
When we install SQL Server, SQL Server requires some of permissions like TSQL Local Machine, TSQL Named Pipes, TSQL Default

Difference between Abstract class and Interface in C#
Difference between Abstract class and Interface in C# Hello folks, today we will discuss regarding Top 6 Differences of Abstract class and

Top 5 Static code Analysis Tools for Visual Studio
Hello Folks, today we will explore regarding Top 5 Static code Analysis Tools for Visual Studio, which also includes other
How to return XML in SQL Server?
We can use FOR XML statement at the end of the query to return xml data from the SQL Server.

Top 10 examples of SubString in C#
Top 10 examples of SubString in C# Hello folks, after long time I am back with simple but so important

Top 9 differences between Array and ArrayList in C#
Top 9 differences between Array and ArrayList Array ArrayList Array is strongly typed. This means that an array can store

GitHub announced unlimited private repositories for all account holder
GitHub announced unlimited private repositories for all account holder Hello folks, we have good news from GitHub. Till date we

134. Get all tables from database – SQL Server
Get all tables from database – SQL Server –Get all tables from database – SQL Server SELECT schema_name(t.schema_id) as schema_name,

012. Get all schemas in SQL Server database
Get all schemas in SQL Server database –Get all schemas in SQL Server database SELECT s.name as schema_name, s.schema_id, u.name

011. Get all available Databases in SQL Server Instance
Get all available Databases in SQL Server Instance select [name] as database_nane, database_id, create_date from sys.databases order by name