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
asp.net,c#.net, MVC, WPF, WCF, JavaScript, JQuery, SQL Server, Interview Q&A
Programming Languages- c#, java, asp.net etc articles
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
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()
Find asp.net MVC version used by application For MVC without .net core First of all create project of MVC->
Advantage of asp.net MVC over webforms Features asp.net MVC asp.net WebForm Separation of Concerns More Less Programming Style ActionResult