[apptest@vis appl]$ su -oravis[oravis@vis 11.1.0]$
sqlplus / as
sysdbaSQL>createusererpqueryidentifiedbyerpquerydefaulttablespaceAPPS_TS_TX_DATA;SQL>g...
分类:
数据库 时间:
2014-05-10 00:57:22
阅读次数:
347
HBase是一个类Bigtable系统,按照Google的论文对
Bigtable的定义是“一种稀疏的,分布式的,持久的多为维度的有序Map。这个Map由row key,column
key和timestamp做为索引,Map中的值是连续的byte数组”。HBase的多维度,包括table和colu...
分类:
其他好文 时间:
2014-05-10 00:30:36
阅读次数:
357
1 static const unsigned short crc16_table[256]= 2 {
3 0x0000, 0xC0C1, 0xC181, 0x0140, 0xC301, 0x03C0, 0x0280, 0xC241, 4 0xC601,
0x06C...
分类:
其他好文 时间:
2014-05-10 00:02:02
阅读次数:
382
系统在选择操作数据库的框架上面,到底是选择hibernate,还是mybatis。
首先说下两者的原理,如果你要关联几张表做查询,查出20条记录:
1.如果是mybatis
SELECT *
FROM (SELECT INNER_TABLE.*, ROWNUM OUTER_TABLE_ROWNUM
FROM (select SP_WORK_PLAN.nam...
分类:
系统相关 时间:
2014-05-09 22:56:46
阅读次数:
540
tableView 实现的方法 无分组的cell
#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.contacts.count;
}
- (UITable...
分类:
移动开发 时间:
2014-05-09 21:03:32
阅读次数:
424
错误原因:
如API中所述
API:
A table of data representing a database result set, which is usually generated by executing a statement that queries the database. A
ResultSet object maintains a cursor pointi...
分类:
数据库 时间:
2014-05-09 21:00:43
阅读次数:
423
在 mkfs.ext4 /dev/sda2 格式化硬盘空间时,可能出现这样的错误。
had this situation at office where I was told to re-partition an already existing partition. The situation was to get the below schema
/dev/sdb1 1 3040 24...
分类:
其他好文 时间:
2014-05-09 20:49:25
阅读次数:
343
做出的效果样式如下图,1,首先考虑的是如何显示border,就像是分割代码,我把border分割为最外层DIV全border,和内层DIV的right和bottom的border,就是右边和下边。2,考虑DIV的布局,内层DIVfloat:left,设定每个DIV的宽度和高度,就可以达到想要的效果,...
分类:
Web程序 时间:
2014-05-09 19:36:13
阅读次数:
519
在ASP.NET的Repeater控件,实现隔行变色,是极简单的事情。因为它有ListItemType.Item和ListItemType.AlternatingItem模版。如果在普通的表格(Table)来实现隔行变色,就得使用css样式与jQuery来解决。先来看看原始的表格样式:打开视图:在视...
分类:
其他好文 时间:
2014-05-09 19:22:54
阅读次数:
367
use databases 显示所有数据库 use schame 使用数据库 show tables
显示当前数据库中的所有表 describe table 显示表结果 其他一些基本操作:例如更新,插入,查询,删除。
参考资料:http://wenku.baidu.com/link...
分类:
数据库 时间:
2014-05-09 19:20:41
阅读次数:
363