Quand j'exécute ce qui suit dans un shell Oracle, cela fonctionne bien
truncate table table_name
Mais quand j'essaye de le mettre dans une procédure stockée
CREATE OR REPLACE PROCEDURE test IS
BEGIN
truncate table table_name;
END test;
/
ça échoue avec
ERROR line 3, col 14, ending_line 3, ending_col 18, Found 'table', Expecting: @ ROW or ( or . or ; :=
Pourquoi?
Merci, Klas Mellbourn