Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change 
notification.

The following page has been changed by udanax:
http://wiki.apache.org/hadoop/Hbase/HbaseShell

------------------------------------------------------------------------------
  ||<bgcolor="#ececec">'''Syntax''' ||<bgcolor="#ececec">'''Explanation''' ||
  ||Create ||<99%>'''Create''' a new table.[[BR]][[BR]]~-''CREATE TABLE 
table_name ([[BR]]{{{    }}}column_family_definition[[BR]]{{{    }}}[, 
column_family_spec][[BR]]{{{    
}}}...[[BR]])[[BR]][[BR]]''-~'''colum_family_definition:'''~-''[[BR]]column_family_name[[BR]]{{{
  }}}[MAX_VERSIONS=n][[BR]]{{{    }}}[MAX_LENGTH=n][[BR]]{{{    
}}}[COMPRESSION=NONE|BLOCK|RECORD][[BR]]{{{    }}}[IN_MEMORY][[BR]]{{{    
}}}[BLOOMFILTER=NONE|BLOOMFILTER|COUNTING_BLOOMFILTER|RETOUCHED_BLOOMFILTER 
VECTOR_SIZE=n NUM_HASH=n]''-~ ||
  ||Alter ||<99%>'''Alter''' syntax changes the structure of the specified 
table.[[BR]][[BR]]~-''ALTER TABLE table_name[[BR]]{{{    }}}alter_definition [, 
alter_definition] ...[[BR]][[BR]]''-~'''alter_definition:'''~-''[[BR]]{{{     
}}}ADD column_family_definition[[BR]]{{{    }}}| ADD (column_family_definition, 
...)[[BR]]{{{    }}}| DROP column_family_name[[BR]]{{{    }}}| CHANGE 
column_family_name column_family_definition''-~||
- ||Drop ||'''Drop''' columnfamilies in a table or tables.[[BR]][[BR]]~-''DROP 
TABLE table_name1[, table_name2, ...];''-~ ||
+ ||Drop ||'''Drop''' columnfamilies in a table or tables.[[BR]][[BR]]~-''DROP 
[ALL|TABLE table_name1[, table_name2, ...]];''-~ ||
  ||Truncate ||'''Truncate''' cleans all data from a table. 
[[BR]][[BR]]~-''TRUNCATE TABLE table_name;''-~ ||
+ ||Enable/Disable ||'''Enable/Disable''' table lock. 
[[BR]][[BR]]~-''[ENABLE|DISABLE] [ALL|table_name];''-~ ||
  
  [[Anchor(DML)]]
  === Data manipulation language ===

Reply via email to