powered by
Returns a data frame that contains the names of the tables contained in the current database.
idaShowTables(showAll=FALSE, matchStr=NULL, schema=NULL, accelerated=FALSE)
A data frame with the columns Schema, Name, Owner, and Type. For DB2 for z/OS connections the columns Acceleratorname and Enable are included as well.
List all tables that are listed in the catalog of the current database (TRUE) or only those tables that are in the current schema (FALSE).
If not NULL, only tables that contain the character string in this argument will be returned.
If not NULL, only tables with this schema will be returned. This parameter is ignored if showAll=FALSE.
Valid for DB2 for z/OS connections only. If TRUE, only accelerated tables will be returned.
if (FALSE) { #Get a list of all tables in the current schema tabs <- idaShowTables() }
Run the code above in your browser using DataLab