Srinivas,
You cannot do that. All you can do is use the WHERE clause and run
the delete multiple times.
Instead of: DELETE FROM MyTable
You can try:
DELETE FROM MyTable where myUniqueCol between (0 and 10000)
DELETE FROM MyTable where myUniqueCol between (10000 and 20000)
DELETE FROM MyTable where myUniqueCol between (20000 and 30000)
DELETE FROM MyTable where myUniqueCol between (30000 and 40000)
DELETE FROM MyTable where myUniqueCol between (40000 and 50000)
etc.
HTH
Andy