write down the code for "how we delete a table without
using of Drop command " ?

Answers were Sorted based on User's Feedback



write down the code for "how we delete a table without using of Drop command " ?..

Answer / bhagwat sharma

table delete only by
drop table (tablename)

if you want do delete all data from table than you wil use
command

truncate table (tablename)

this command don't delete table delete only table data ok

Is This Answer Correct ?    16 Yes 1 No

write down the code for "how we delete a table without using of Drop command " ?..

Answer / shanmugam

truncate table tablename

Is This Answer Correct ?    7 Yes 3 No

write down the code for "how we delete a table without using of Drop command " ?..

Answer / sachin tendulkar

Can not be deleted without using DROP key word.

Is This Answer Correct ?    5 Yes 1 No

write down the code for "how we delete a table without using of Drop command " ?..

Answer / krishna

without using drop command u cant delete table .truncate is
only for delete the data parminently with out commit.where
as delete only for records deleting with commit
statement.once u commit for delete stmt it cant rollback.

Is This Answer Correct ?    4 Yes 1 No

write down the code for "how we delete a table without using of Drop command " ?..

Answer / venkat

sp_rename

Is This Answer Correct ?    3 Yes 2 No

write down the code for "how we delete a table without using of Drop command " ?..

Answer / jansi

delete from tablename

Is This Answer Correct ?    1 Yes 12 No

write down the code for "how we delete a table without using of Drop command " ?..

Answer / bru medishetty

DELETE FROM TABLENAME

Is This Answer Correct ?    7 Yes 20 No

Post New Answer

More SQL Server Interview Questions

Explain different types of lock modes in sql server 2000?

0 Answers  


How do you read transaction logs

1 Answers  


What’s the use of custom fields in report?

0 Answers  


What are group functions in query statements in ms sql server?

0 Answers  


What do you mean by SQL injection attack?

0 Answers   Ittiam Systems,






What is the maximum size of a row in sql server?

0 Answers  


What are the tables in sql?

0 Answers  


What are tables in sql server?

0 Answers  


Give me any three differences between Truncate and Delete.

0 Answers   Genpact,


How does index makes search faster?

0 Answers   QuestPond,


What is the difference between DATETIME2 and DATETIME?

0 Answers   Infosys,


Explain the different index configurations a table can have?

0 Answers  


Categories