码迷,mamicode.com
首页 >  
搜索关键字:big data 大數據 決策    ( 64947个结果
oracle 表空间自动扩展大小
select a.FILE_NAME,a.AUTOEXTENSIBLE,a.MAXBYTES,a.INCREMENT_BY from dba_data_files a; --AUTOEXTENSIBLE 是否自动扩展 --MAXBYTES 最大 --INCREMENT_BY 自动扩展块数 SQL> show parameter db_block NAME TYPE VALUE ----------------...
分类:数据库   时间:2014-06-22 22:43:22    阅读次数:411
SqlServer service broker 分布式系统(赵松涛)深入浅出 2005 数据库编程
1.创建测试数据库 create database ServerbrokerTest on primary( name=ServerbrokerTest_data, filename='C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\ServerbrokerTest_data.mdf', size=5...
分类:数据库   时间:2014-06-22 22:03:04    阅读次数:354
利用 matlab 读取SAR 元数据
这方面可以参考书籍:"Digital processing of synthetic aperture radar data", by Ian Cumming and Frank Wong. 里面给出了用matlab写的例子。不同的传感器获取元数据类型有所不同,数据结构比较复杂,要针对不同情况进行分析。 相关英文解释如下: 点击打开链接...
分类:其他好文   时间:2014-06-22 21:26:07    阅读次数:220
静态常量整数成员在class内部直接初始化
如果class内含const static integral data member,那么根据C++标准规格,我们可以在class之内直接给予初值。所谓integral泛指所有整数型别,不单只是指int。例如: #include #include #include   using namespace std;   template...
分类:其他好文   时间:2014-06-22 21:07:17    阅读次数:203
Extjs 4 生成饼状图实例
前台: //远程读取设备去向图表数据 var Store1 = new Ext.data.Store({ proxy:{ type:'ajax', url:'/newmaterial/servlet/GetCountChartGoDatas', reader:{ type:'array' } }, fields:[ "Sys...
分类:Web程序   时间:2014-06-22 20:51:18    阅读次数:314
C++命名空间和自定义头文件
下面给一个简单示例演示命名空间和自定义头文件的使用,代码如下: compare.h: namespace compare{ double max(const double* data,int size); double min(const double* data,int size); } compare.cpp: #include "compare.h" double c...
分类:编程语言   时间:2014-06-22 20:32:00    阅读次数:275
$.ajax如果success却得不到值
在使用$.ajax做异步调用的时候,如果success却得不到值 $.ajax({ type:"GET", url:tourl, cache:false, data:"{}", success:function(data){ alert(data); } });   后台这样写的不到值 PrintWr...
分类:其他好文   时间:2014-06-22 18:15:50    阅读次数:224
【DataStructure】Some useful methods for arrays
Last night it took me about two hours to learn arrays. For the sake of less time, I did not put emphaises on the practice question, just now when reading the book, I found that some methods referred...
分类:其他好文   时间:2014-06-22 17:14:10    阅读次数:152
Cocos2d-x 源码分析 : Scheduler(定时器) 源码分析
1.Scheduler与Timer的关系相当DataManager与Data的关系。 2.Scheduler的两种定时模式,一种是customer selector模式,一种是update 模式。 3.hash表用来存取对应的timer。 4.Scheduler的update函数调用了所有Timer的update。...
分类:其他好文   时间:2014-06-22 17:09:20    阅读次数:251
mysql导入数据库_只用frm向mysql导入表结构
网上一个连接mysql的jsp代码段,给了数据库的备份文件,但是只有frm,查了下资料,原来只有frm也能导入。 过程如下:1.在mysql目录下的data目录中,找到要导入表所在的数据库的名称,把frm文件放进去,比如我这里是offer.frm,数据库名称是netshop,放到数据库netshop目录下之后,在mysql中show tables显示如下在这里table是显示的,但是desc of...
分类:数据库   时间:2014-06-22 17:01:04    阅读次数:268
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!