What is difference between index seek vs. Index scan?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More SQL Server Interview Questions

How to view existing indexes on an given table using sys.indexes?

0 Answers  


sql server has its default date format in da form "yy-mm-dd" its possible to convert da current date format of sql server to desired format. Now my question is dat how to get da previous and comin days date in my desired format??

2 Answers  


What is difference between delete & truncate commands?

0 Answers  


Explain about nested stored procedure?

0 Answers  


What factors you will consider calculating the storage requirement for that view?

0 Answers  






What is Sqlpaging in SqlServer 2005 ?

0 Answers   MCN Solutions,


What is the minimum recommended amount of ram for sql server 2012 enterprise?

0 Answers  


* CREATE TABLE [dbo].[t_Colors]([ColorId] [int] NOT NULL,[ColorName] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [ColorDesc] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,[ColorIndex] [int] NULL) ON [PRIMARY] GO * insert into [t_Colors] values(101,'Red','',1) insert into [t_Colors] values(101,'Red1','',2) insert into [t_Colors] values(102,'Blue','',1) insert into [t_Colors] values(102,'Blue1','',2) insert into [t_Colors] values(102,'Blue2','',3) * In this table i need to delete DELETE FROM t_Colors WHERE ColorIndex=1 AND ColorId=102 After delete above condition i need to update the ColorIndex set to 1 for Blue1[ColorName] and 2 for Blue2[ColorName] select * from [t_Colors] Note:- how can i get updates the ColorIndex values after delete. for example we need to update Blue1 ColorIndex set to 1 and Blue2 ColorIndex set to 2

0 Answers  


What is difference between stored procedure and function?

3 Answers   L&T,


syntax for deleting the database in T SQL

5 Answers  


what purpose does the model database serve? : Sql server database administration

0 Answers  


What is the difference between online clustering and Offline clustering?

0 Answers   IBM,


Categories