I have a huge table created from another table by someone and want to delete it. I do not have truncate/drop table right. What would be the best solution. it is in oracle.
Right now i plan to give a simple Delete * from table
I have a huge table created from another table by someone and want to delete it. I do not have truncate/drop table right. What would be the best solution. it is in oracle.
Right now i plan to give a simple Delete * from table
if DELETE takes too long for you, and you do no have permission to TRUNCATE or DROP table, then the only solution I see is to Ask your DBA to do it for you !
Convert the table into a partitioned one, and drop the partition in question. The latter will take seconds.