Interview questions SQL-SERVER Coding Standards and Guidelines for Database By Mallikarjun A 20:23:00 Add Comment Coding Standards and Guidelines for Database ANSI SQL 92 standards have to be followed for writing queries. Do not put order by... Read More
ADO.NET C# Most Frequently asked Program in Companies system-test Round perform CRUD operations using grid-view in c# By Mallikarjun A 11:55:00 Add Comment CRUD Operations also called(Create,Read,Update,Delete) Today I will explain how to perform CRUD operations in easy way. Add the following ... Read More
Indexs SQL SERVER SQL-SERVER INDEX INTERVIEW QUESTIONS AND ANSWERS FOR FRESHERS By Mallikarjun A 11:09:00 Add Comment What is an Index? Indexes of SQL Server are similar to the indexes in books. They help SQL Server retrieve the data quicker. Index is ... Read More
inetrview questions Interview questions Top 10 SqlServer Stored Procedure Interview Questions Answers For Freshers By Mallikarjun A 18:02:00 Add Comment 1). What is Stored Procedure? Ans: A stored procedure is a named group of SQL statements that have been previously created and stored i... Read More
Interview questions SQL SERVER Basic SQL Queries Asked in Interviews for Freshers By Mallikarjun A 16:33:00 Add Comment Get all employee detail from EmployeeDetail table whose "EmployeName" start with any single character between 'd-m' S... Read More
SQL SERVER SQL-SERVER Difference between Stored Procedures and Functions in SQL Server By Mallikarjun A 11:14:00 Add Comment Stored Procedures are pre-compiled objects which are compiled for first time and its compile format is saved which gets executed whenever ... Read More
ADO.NET C# Difference Between ExecuteNonQuery and ExecuteScalar ADO.NET By Mallikarjun A 17:58:00 Add Comment ExecuteNonQuery() It Returns the count of Rows Effected by the Query. Int in Return Type. ExecuteNonQuery() works Queries only. Create,Alt... Read More
SQL-SERVER Difference Between DataSet and DataTable in SQL Server By Mallikarjun A 17:40:00 Add Comment DataSet: DataSet can fetch multiple TableRows at a time. A DataSet is like structure which has collection of DataTables. DataSet, D... Read More
SQL SERVER SQL-SERVER Difference between DataReader and DataAdapter in SQL Server By Mallikarjun A 16:22:00 Add Comment DataReader 1.Can Access one table at a Time. 2.Handles DataBase Tables. 3.Only READ Operation. 4.DataBase Connection M... Read More
SQL SERVER SQL-SERVER How to Create Stored procedure in SQL Server By Mallikarjun A 16:28:00 Add Comment Insert procedure CREATE PROCEDURE sp_insert @name varchar(50), @password nvarchar(12) AS begin insert into tbl_login... Read More
DOTNET SQL SERVER Stored Procedures/Procedure By Mallikarjun A 23:14:00 Add Comment Stored Procedures/Procedure: A stored procedure is a database object which contains precompiled queries. Stored Procedures are a block of co... Read More
joins SQL-SERVER Interview Questions and queries on Sql Server Joins By Mallikarjun A 23:34:00 Add Comment JOINS IN SQL: Joins are used for retrieving the data from one or more tables at a time. Joins can be classified into the following types. E... Read More