今天闲來无事,就导了一个数据库玩玩,顺便总结下
0、cmd 命令 管理员权限登录数据库
sqlplus / as sysdba
1、cmd 连接远程数据库
sqlplus xn_balance/xn_balance@192.168.12.51:1521/orcl
--------导出
2、cmd 命令导出数据库(没必要连上数据库,直接导)
exp xn_balance/xn_balance@192.168.12.51:1521/orcl file=d:/daochu.dmp f...
分类:
数据库 时间:
2014-08-13 18:59:27
阅读次数:
285
蓝牙4.0 BLE 入门
1. 手机需要android 4.3 及以上版本
2. 权限:
只允许支持BLE 的手机安装还需要添加uses-feature
3. BLE 设备扫描
3.1 获取蓝牙适配器: mBluetoothAdapter = bluetoothManager.getAdapter();
3.2 开始扫描: mBluetoothAdapter.st...
分类:
其他好文 时间:
2014-08-13 18:59:17
阅读次数:
615
Problem Description
In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of the heroes. The hook is made up of several consecutive metallic sticks which are of the same...
分类:
其他好文 时间:
2014-08-13 18:59:07
阅读次数:
226
由多年互联网工作经验的Ctrip里面Java工程师总结:linux环境下,当发现java进程占用CPU资源很高,且又要想更进一步查出哪一个java线程占用了CPU资源时,按照以下步骤进行查找;...
分类:
编程语言 时间:
2014-08-13 18:58:57
阅读次数:
241
oracle 创建临时表空间、创建用户并关联用户表空间、授权等总结...
分类:
数据库 时间:
2014-08-13 18:58:47
阅读次数:
225
中文题,题意不再累赘。
思路:对于第 i 行的放士兵,影响它的只有第 i-1 行和 i-2 行,所以暴力枚举符合这三行的状态
state[i],state[j],state[k]. 接下来就是二进制的巧妙应用了。
具体题解看代码注释!!!
#include
#include
#include
#include
#include
#include
#inc...
分类:
其他好文 时间:
2014-08-13 18:58:37
阅读次数:
205
nested exception is org.hibernate.exception.GenericJDBCException: Cannot open connection...
分类:
数据库 时间:
2014-08-13 18:58:27
阅读次数:
418
Enctype是指定将数据回发到服务器时浏览器使用的编码类型,其编码类型有以下三种
一、application/x-www-form-urlencoded
这是通过表单发送数据时默认的编码类型。我们没有在from标签中设置enctype属性时默认就是application/x-www-form-urlencoded类型的。application/x-www-form-urlencoded编...
分类:
其他好文 时间:
2014-08-13 18:58:17
阅读次数:
170
转载请注明出处http://blog.csdn.net/yc7369
MySQL修改密码的各种方法
整理了以下四种在MySQL中修改root密码的方法,可能对大家有所帮助!
方法1: 用SET PASSWORD命令
mysql -uroot
mysql>SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');
方法2:...
分类:
数据库 时间:
2014-08-13 18:58:07
阅读次数:
233
本文给出C++ Primer 第五版 习题9.5.1答案参考...
分类:
编程语言 时间:
2014-08-13 18:57:57
阅读次数:
191
一道用到优先队列的BFS题目
#include
#include
#include
#include
#include
#define N 201
using namespace std;
char maze[N][N];
int a,b,anw;
bool visit[N][N];
int dir[4][2]={{0,1},{1,0},{-1,0},{0,-1}};
int sx,s...
分类:
其他好文 时间:
2014-08-13 18:57:47
阅读次数:
201
Seeing People
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 241 Accepted Submission(s): 61
Problem Description
There are two...
分类:
其他好文 时间:
2014-08-13 18:57:37
阅读次数:
214
这是我入职公司写的第一个程序,当时并没有太多的接触php,对php也不是很了解进过慢慢的学习完成的,虽然很low但我觉得很有意义!
array(
"wx_thread" => array("fid" => 36, "author" => "admin", "authorid" => "1", "lastposte...
分类:
微信 时间:
2014-08-13 18:57:27
阅读次数:
625
Problem Description
XQ,one of the three Sailormoon girls,is usually playing mobile games on the class.Her favorite mobile game is called “The Princess In The Wall”.Now she give you a problem about th...
分类:
其他好文 时间:
2014-08-13 18:57:07
阅读次数:
224
Android 开发环境配置
Windows7 下搭建Android开发环境,整合数个攻略,修改了其中一些错误,并对一些配置遗漏做了补充。
工欲善其善,必先利其器
2014年8月13-日 by lilihao Q: 404536204
1. 安装jdk 和java环境变量的设置
(1). jdk 下载地址:
安装包:
http://w...
分类:
移动开发 时间:
2014-08-13 18:56:57
阅读次数:
473
基本思想
顺序查找是最简单的查找方法,从线性表的一端开始,依次将每个记录的关键字与给定值进行比较。
代码实现
/**
* 源码名称:SeqSearch.java
* 日期:2014-08-13
* 程序功能:顺序查找
* 版权:CopyRight@A2BGeek
* 作者:A2BGeek
*/
public class SeqSearch {
public stati...
分类:
其他好文 时间:
2014-08-13 18:56:47
阅读次数:
195
Description
要求(A/B)%9973,但由于A很大,我们只给出n(n=A%9973)(我们给定的A必能被B整除,且gcd(B,9973) = 1)。
Input
数据的第一行是一个T,表示有T组数据。
每组数据有两个数n(0
Output
对应每组数据输出(A/B)%9973。
Sample ...
分类:
其他好文 时间:
2014-08-13 18:56:37
阅读次数:
196