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

asp.net,c#.net, MVC, WPF, WCF, JavaScript, JQuery, SQL Server, Interview Q&A
Get all tables from database – SQL Server –Get all tables from database – SQL Server SELECT schema_name(t.schema_id) as schema_name,
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
Get all available Databases in SQL Server Instance select [name] as database_nane, database_id, create_date from sys.databases order by name
Find most used column names in database Query: select col.name as ColumnName, count(*) as Tables, cast(100.0 * count(*) / (select
Difference between temporary table and table variable in sql server Table variable Temporary table You can use it in User
Evaluate code execution time in C# Hello folks, sometime we as a developer wants to check exact execution time to
Visual Studio 2019 Preview Released You can download Visual Studio 2019 Preview. Please find video regarding New features in Visual Studio
WPF and Windows Forms are Now open source Recently Microsoft has announced WPF and Windows form as a Open source.
Difference between static and non-static variable in C# Staic Variable Non Static Variable Staic keyword must be used to
Capitalize First Letter of each Words of string in C# Hello folks, sometimes we may have requirement like to have Capitalize
NumberStyle in Parse() and TryParse() in C# Hello folks, today we will learn about NumberStyle in Parse() and TryParse() in
Difference between JSON.stringify() and JSON.parse() in JSON Now a days all browsers supports JSON and in JSON we have stringify()