write down the code for "how we delete a table without
using of Drop command " ?
Answers were Sorted based on User's Feedback
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 |
Answer / sachin tendulkar
Can not be deleted without using DROP key word.
Is This Answer Correct ? | 5 Yes | 1 No |
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 |
Explain atomicity?
what is the basic diffrence betn a col declared in char(1) and in varchar(1)
Name three version of sql server 2000 and also their differences?
MULTICAST DELEGATES IN C#.NET WITH REAL TIME EXAMPLE
What are the parts of a function?
Does table partitioning improve performance?
How to truncate the log in sql server 2012? : sql server database administration
select the 3rd maximum salary from sql server database if 4 (just an example In practically I may not know the exact situation) of the highest salaries are equal.
How except clause is differs from not in clause?
What is difference between stored procedure and user defined function?
How to write character string constants or literals in ms sql server?
Difference b/w Clustered & non-clustered index? Not the bookish definition, but how they internally works in SQL Server?