Incorporate Comments 1
Project: http://git-wip-us.apache.org/repos/asf/trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/trafodion/commit/39e43cba Tree: http://git-wip-us.apache.org/repos/asf/trafodion/tree/39e43cba Diff: http://git-wip-us.apache.org/repos/asf/trafodion/diff/39e43cba Branch: refs/heads/master Commit: 39e43cbaf360c206cbafcfcd4d5d82efa494e677 Parents: 8a3aa96 Author: liu.yu <[email protected]> Authored: Fri Jun 1 11:50:04 2018 +0800 Committer: liu.yu <[email protected]> Committed: Fri Jun 1 11:50:04 2018 +0800 ---------------------------------------------------------------------- docs/sql_reference/src/asciidoc/_chapters/sql_statements.adoc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafodion/blob/39e43cba/docs/sql_reference/src/asciidoc/_chapters/sql_statements.adoc ---------------------------------------------------------------------- diff --git a/docs/sql_reference/src/asciidoc/_chapters/sql_statements.adoc b/docs/sql_reference/src/asciidoc/_chapters/sql_statements.adoc index 3f6ccef..84f5d8e 100644 --- a/docs/sql_reference/src/asciidoc/_chapters/sql_statements.adoc +++ b/docs/sql_reference/src/asciidoc/_chapters/sql_statements.adoc @@ -4257,9 +4257,12 @@ read committed names the user table or view from which to delete rows. _table_ must be a base table or an updatable view. To refer to a table or view, use the ANSI logical name. See <<database_object_names,Database Object Names>>. -* `WITHOUT NO ROLLBACK` +* `WITH NO ROLLBACK` + -performs non-transactional delete. +performs a non-transactional delete. ++ +A non-transactional delete is one that happens outside a transaction. It means that if the +statement is interrupted, any deletes that have been done are still permanent. + NOTE: This option is only supported if there is no index on the table.
