2008 Jan 15 8:35 AM
Hi there,
I am trying to delete a dbtab at one shot using the statement "DELETE dbtab" (dbtab is the database table name).
but it is returning sy-subrc = 4.
can u plzz help me to solve this issue.
Hi there,
I am trying to delete a dbtab at one shot using the statement "DELETE dbtab" (dbtab is the database table name).
but it is returning sy-subrc = 4.
can u plzz help me to solve this issue.
2008 Jan 15 8:42 AM
2008 Jan 15 8:42 AM
2008 Jan 15 8:43 AM
Hi,
data itab type standard table of dbtab.
select * from dbtab into table itab.
delete dbtab from table itab.
2008 Jan 15 8:45 AM
Hi Hardik,
In case you want to delete the database table for refreshing it for a reason (one time) you can do it from transaction SE14.
Select option "Activate and Adjust Database Table" and option "Delete data".
Regards,
Aditya
2008 Jan 15 9:34 AM
thanx for ur reply frnds.....but i can't populate itab as the table is having more than 28 lacs records.
and i need to write code in a program so cant use TC se14