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
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
这方面可以参考书籍:"Digital
processing of synthetic aperture radar data", by Ian Cumming and Frank Wong. 里面给出了用matlab写的例子。不同的传感器获取元数据类型有所不同,数据结构比较复杂,要针对不同情况进行分析。
相关英文解释如下:
点击打开链接...
分类:
其他好文 时间:
2014-06-22 21:26:07
阅读次数:
220
如果class内含const static integral data member,那么根据C++标准规格,我们可以在class之内直接给予初值。所谓integral泛指所有整数型别,不单只是指int。例如:
#include
#include
#include
using namespace std;
template...
分类:
其他好文 时间:
2014-06-22 21:07:17
阅读次数:
203
前台:
//远程读取设备去向图表数据
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
下面给一个简单示例演示命名空间和自定义头文件的使用,代码如下:
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({
type:"GET",
url:tourl,
cache:false,
data:"{}",
success:function(data){
alert(data);
}
});
后台这样写的不到值
PrintWr...
分类:
其他好文 时间:
2014-06-22 18:15:50
阅读次数:
224
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
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的jsp代码段,给了数据库的备份文件,但是只有frm,查了下资料,原来只有frm也能导入。 过程如下:1.在mysql目录下的data目录中,找到要导入表所在的数据库的名称,把frm文件放进去,比如我这里是offer.frm,数据库名称是netshop,放到数据库netshop目录下之后,在mysql中show tables显示如下在这里table是显示的,但是desc of...
分类:
数据库 时间:
2014-06-22 17:01:04
阅读次数:
268