标签:tab 很多 mes ges ora 卸载 tin sap hana 没有
增加数据库
增加数据库: 增加数据库在SAP HANA 数据库浏览器-->选择数据库类型-->选择数据库-->OK
列存储的优势:
更好的压缩比率,优化存储,分区存储
列存储的场景
1. 在一些列上进行聚合查询
2.对一些列上的值进行查询
3.表上有很多列
4.有很多行但是大部分是列操作
5追求更高性能的类存储
行存储的场景
1. 只有几行没有许多更新和查询
2. 整表查询
3.列包含主要的唯一值
4. 不需要聚合查询
5.行很少
ALTER TABLE ALTER TYPE
需要 create ANY perimission in the schema
SAP HANA 数据库浏览器
在表浏览器中右击表
在弹出菜单中选择:加载到内存 或 从内存卸载
SQL Console:
Load <table_name> unLoad <table_name>
加载和装载单个列
Load <table_name> (<column_name>,...) UNLoad <table_name> (<column_name>,...)
数据合并
MERGE DELTA OF <table_name>;
列存储表,存储过程,序列可以导出为二进制CSV文件
行存储表,只能导出为CSV格式
导入表
Column-store tables ,procedures and sequences can be exported in either binary of CSV foramt.
Row-store tables can be exported only in CSV format.
Importing data creates the tables in the same schema as in the source system. if the tble already exists,select the checkbox so that it can be overwritten.otherwise ,the import aborts swith an error messages.
标签:tab 很多 mes ges ora 卸载 tin sap hana 没有
原文地址:https://www.cnblogs.com/tingxin/p/12577277.html