Github user liuyu000 commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1416#discussion_r164338652
--- Diff: docs/sql_reference/src/asciidoc/_chapters/sql_utilities.adoc ---
@@ -1173,6 +1186,362 @@ SQL> POPULATE INDEX index_target_table4 ON
target_table4;
SQL> DROP INDEX index_target_table4;
--- SQL operation complete.
```
+
+[[rebuild_indexes_examples]]
+==== Examples of `REBUILD INDEXES`
+
+Suppose that we have following tables:
+
+_source_table_:
+
+```
+SQL>select count(*) from source_table;
+(EXPR)
+--------------------
+Â Â Â Â Â Â Â Â Â Â Â Â 1000000
+
+--- 1 row(s) selected.
+```
+
+_target_table1_ has the same structure as _target_table2_, here takes
_target_table1_ for example:
--- End diff --
Thanks Dave, your comment has been incorporated :)
---