-----------------------------Cryking原创------------------------------
-----------------------转载请注明出处,谢谢!------------------------
1.查询AWR相关的视图名称
SELECT table_name
FROM dba_tables t
WHERE table_...
分类:
数据库 时间:
2014-06-05 09:07:51
阅读次数:
427
首先下载lxml, http://www.lfd.uci.edu/~gohlke/pythonlibs/ ,然后添加引用
from
lxml
import _elementpath
as
DONTUSE
from
lxml
import etree
具体示例:
1.添加命名空间
#set namespace
nsmap = {"xsi":
"h...
分类:
编程语言 时间:
2014-06-05 07:54:48
阅读次数:
441
数据库中导出某一个表中需要的字段到文件中是公司中经常要做到的事,那怎么实现呢?
比如你要查询enterpriseaics中的所有字段的值到d盘的aa.txt中去,注:aa.txt不能存在,否则会报错。
select * from enterpriseaics into outfile 'd:\\aa.txt' ;
当然如果你想规范一下格式,例如:每个字段的值之间以逗号分开,每一行换行,每个字...
分类:
数据库 时间:
2014-06-05 06:53:15
阅读次数:
274
create database dbname;
drop database dbname;
create database master;
use master;
drop database master;
#1、创建数据库新表
create database tests;
#2、使用新表
use test;
#3、创建表
create table basic_...
分类:
数据库 时间:
2014-06-05 05:36:52
阅读次数:
297
1.首先准备好数据库。2.在MyEclipse的右上角切换透视图,切换到MyEclipse
Database Explorer3.在最左边点击右键,选择New(也就是新建一个数据库连接),然后编写第一个页面, Driver template:
MySQL Connector/J (因为是建立数据库....
分类:
数据库 时间:
2014-05-31 14:16:23
阅读次数:
352
from:http://www.oschina.net/news/51084/gcc-4-9-0GCC
4.9.0 公布,此版本号是个主要版本号更新,包含了 GCC 4.8.x 系列和之前的 GCC
版本号都没有的新特性,新特性很之多。下载地址:http://gcc.gnu.org/mirrors....
分类:
编程语言 时间:
2014-05-31 05:14:06
阅读次数:
555
#部署对象和流程定义相关的表 SELECT * FROM
jbpm4_deployment;#部署对象表 SELECT *FROM jbpm4_deployprop;#流程定义表 SELECT* FROM
jbpm4_lob;#存放资源文件的表《用来存放工作资源文件,...
分类:
数据库 时间:
2014-05-31 04:51:00
阅读次数:
284
java.lang.Exception: No tests found matching
Method deleteById(cn.bytestream.mongodb.MongoDB4CRUDTest) from
org.junit.internal.requests.ClassRequest@2...
分类:
数据库 时间:
2014-05-31 03:23:50
阅读次数:
483
Given an integer, convert it to a roman
numeral.Input is guaranteed to be within the range from 1 to 3999.相对应的一道题:Roman
to Interger :http://www.cnblog...
分类:
其他好文 时间:
2014-05-31 02:37:44
阅读次数:
221
select * from channel where pid=0 union select *
from channel where pid=1 union select * from channel where pid=3 limit
5,10这里的limit限制了返回的union(合并)后的结...
分类:
其他好文 时间:
2014-05-31 01:47:26
阅读次数:
218