Java Utililty Methods SQL Table Index

List of utility methods to do SQL Table Index

Description

The list of methods to do SQL Table Index are organized into topic(s).

Method

voidcreateAsyncIndex(Statement stmt, String indexName, String tableName)
create Async Index
stmt.execute("CREATE INDEX " + indexName + " ON " + tableName + "(FNAME) ASYNC");