2009 Apr 06 8:08 PM
I need delete data of a Z table using SQL commands in SAP, ex.
exec sql.
Truncate table ZTABLE05.
endexe.
But, When I use this command displeing a dump 'DBIF_DSQL2_SQL_ERROR '.
From Uilian Silva.
2009 Apr 06 8:15 PM
Try this way
exec sql.
Truncate table "ZTABLE05" " In double quote & no dot in the last
endexec.
a®s
2009 Apr 06 8:15 PM
Try this way
exec sql.
Truncate table "ZTABLE05" " In double quote & no dot in the last
endexec.
a®s
2009 Apr 06 8:44 PM