Man Linux: Main Page and Category List

NAME

       ndb_delete_all - delete all rows from an NDB table

SYNOPSIS

       ndb_delete_all options

DESCRIPTION

       ndb_delete_all deletes all rows from the given NDB table. In some
       cases, this can be much faster than DELETE or even TRUNCATE.

       Usage:

           ndb_delete_all -c connect_string tbl_name -d db_name

       This deletes all rows from the table named tbl_name in the database
       named db_name. It is exactly equivalent to executing TRUNCATE
       db_name.tbl_name in MySQL.

       Additional Options:

       ยท   --transactional, -t

           Use of this option causes the delete operation to be performed as a
           single transaction.

               Warning
               With very large tables, using this option may cause the number
               of operations available to the cluster to be exceeded.

COPYRIGHT

       Copyright 2007-2008 MySQL AB, 2009 Sun Microsystems, Inc.

       This documentation is free software; you can redistribute it and/or
       modify it only under the terms of the GNU General Public License as
       published by the Free Software Foundation; version 2 of the License.

       This documentation is distributed in the hope that it will be useful,
       but WITHOUT ANY WARRANTY; without even the implied warranty of
       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
       General Public License for more details.

       You should have received a copy of the GNU General Public License along
       with the program; if not, write to the Free Software Foundation, Inc.,
       51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see
       http://www.gnu.org/licenses/.

SEE ALSO

       For more information, please refer to the MySQL Reference Manual, which
       may already be installed locally and which is also available online at
       http://dev.mysql.com/doc/.

AUTHOR

       Sun Microsystems, Inc. (http://www.mysql.com/).