-- Script Name: Recover_Deleted_Data_Proc -- Script Type : Recovery Procedure -- Develop By: Muhammad Imran -- Date Created: 15 Oct 2011 -- Modify Dat ...
分类:
数据库 时间:
2016-10-20 21:23:07
阅读次数:
902
1:静态方法为什么不能访问类的实例变量 因为他俩跟本放的不是一个地方 静态方法存储在栈中,而其他的非静态方法存储在堆中 基本如图 栈 | 堆 静态 | 非静态 根本不属于一个系统.... 2:按引用传递 输出: Before modify d.height=10dim.height=11After ...
分类:
编程语言 时间:
2016-10-18 22:48:22
阅读次数:
214
alter table 现表名 rename 修改后表名; --修改表名 alter table 表名 add column 列名 类型(长度); --添加表列 alter table 表名 drop column 列名; --删除表列 alter table 表名 modify 列名 类型(长度) ...
分类:
数据库 时间:
2016-10-17 11:23:20
阅读次数:
233
一·搭建DNS服务器试验要求:完成DNS的正反向解析试验前准备:服务器192.168.203.201server1.example.com客户机192.168.203.202server2.example.com192.168.203.203database.example.com修改DNSnmclicmodifyeno16777736ipv4.dns8.8.8.8systemctlrestatnetwork1.1安装相关程序yu..
分类:
其他好文 时间:
2016-10-17 00:56:23
阅读次数:
371
touch:触摸命令作用:用来修改文件的时间戳或创建一个文件;2.命令格式:touch[options]file3.参数说明:-a:access(访问)修改访问时间;-m:modify(修改)修改内容改变时间;-t:time(时间)指定修改时间,[[CC]YY]MMDDhhmm[.SS];-c:nocreate(不创建)不创建文件;-r:把..
分类:
其他好文 时间:
2016-10-17 00:41:26
阅读次数:
266
用到Oralce10g以后增加的函数wmsys.wm_concat 例如这张表的有两个字段,要按airport_id合并成两行可用sql语句 select airport_id, wmsys.wm_concat( account) from AIRPORT_MODIFY group by airpo ...
分类:
数据库 时间:
2016-10-15 18:57:28
阅读次数:
285
老师布置的作业离着DEADLINE还有几天。过了DEADLINE立马更新 :) 先放一个README This software is copyright 2016 by LuYao. Permissionis granted to redistribute and modify this soft ...
分类:
Web程序 时间:
2016-10-10 16:14:05
阅读次数:
135
树上单点修改,子树查询 可以在这棵树的dfs序上建线段树维护 PS:modify、query的时候传入x的dfs序即可 1 #include<cstdio> 2 #include<cstring> 3 using namespace std; 4 const int N=100010,M=40001 ...
分类:
移动开发 时间:
2016-10-04 18:43:04
阅读次数:
197
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked list. ...
分类:
其他好文 时间:
2016-10-03 17:18:35
阅读次数:
143
添加字段的语法:alter table tablename add (column datatype [default value][null/not null],….); 修改字段的语法:alter table tablename modify (column datatype [default ...
分类:
数据库 时间:
2016-09-26 11:09:42
阅读次数:
181