how to delete duplicate rows in sql server2005
Answer Posted / sundaravadivel g
Select top 1 * from table where a=1
select top 1* into table1 from table where a=1
delete from table
insert into table
select * from table1
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
Explain unique key in sql server?
What is normalization and its types?
How to disable a login name in ms sql server?
How to maintain a fill factor in existing indexes?
Explain datetime2 data type in sal server 2008?
You have a table with close to 100 million records recently, a huge amount of this data was updated now, various queries against this table have slowed down considerably what is the quickest option to remedy the situation?
Where to find ntwdblib.dll version 2000.80.194.0?
How do you rebuild an identity column?
Hi all, can any one please tell me the difference between sql server 2008 and orace 9i
What are the different types of backups avaialabe in sql server 2005?
How to filter records of table in SQL SERVER?
What are null values in ms sql server?
Can you index views?
What is use of attribute hierarchy ordered ? : sql server analysis services, ssas
What does the not null constraint do?