标签:info oop name font schema 数据库 test trend type
/usr/bin/mysql -hIp地址 -u用户名 -p密码 -D数据库名<<EOF
use
select table_name from information_schema.tables where table_schema=‘数据库名‘ and table_type=‘base table‘;
EOF
运行 bash sel_tabs.sh>tbsnam.dat
将结果写入tbsname.dat
2.readdat.sh
#!/bin/sh
cat tbsnam.dat |while read LINE
do
echo $LINE
if [ "$LINE" = "table_name" ]; then
echo "table_name test"
else
echo $LINE
str="/opt/dtma/sqoop/bin/sqoop import --connect jdbc:mysql://Ip地址:端口号/数据库名称 --username ‘用户名‘ --password ‘密码‘ --table AA --hbase-table AA --column-family f1 --hbase-row-key id --hbase-create-table --m 1 --incremental append --check-column ‘id‘ --last-value 0"
strend=${str//"AA"/$LINE}
echo $strend
$strend
fi
done
str是sqoop 增量导入单个表的 语句
上面sql语句查询结果 第一行出现 table_name,所以把table_name 剔除掉
最后运行
bash readdat.sh
标签:info oop name font schema 数据库 test trend type
原文地址:http://www.cnblogs.com/zy900406/p/6233769.html