首先以管理员密码登录
如果发现仍然登录不进去了,可以将Oracle安装的Linux的系统时间提前,修改方法是:
date -s 04/29/2014
date -s 17:52:00
clock -w
 
1. 查看用户的profile设置:
SELECT username,profile FROM dba_users;  
SELECT username,profil...
                            
                            
                                分类:
其他好文   时间:
2014-07-22 23:03:54   
                                阅读次数:
423
                             
                    
                        
                            
                            
                                Constructing Roads
Time Limit: 2000MS
 
Memory Limit: 65536K
Total Submissions: 18744
 
Accepted: 7755
Description
There are N villages, which are numbered from 1 to N, and...
                            
                            
                                分类:
其他好文   时间:
2014-07-22 23:02:33   
                                阅读次数:
221
                             
                    
                        
                            
                            
                                11. what is reserved words in java?A. run B. 
default C. implement D. import Java 中,给标识符取名的时候,不能使用关键字和保留字。在 Java 中常用的关键字有: 
1、访问控制符: public、protecte...
                            
                            
                                分类:
其他好文   时间:
2014-07-22 22:59:16   
                                阅读次数:
262
                             
                    
                        
                            
                            
                                activating vt-x from biosIf you have HP 
EliteBook 8770w do:Shutdown your mobile workstation.Push startup buttonpush ESC 
keypush F10 to open BIOS setup...
                            
                            
                                分类:
其他好文   时间:
2014-05-01 21:08:36   
                                阅读次数:
512
                             
                    
                        
                            
                            
                                Problem DescriptionIgnatius has just come back 
school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher 
gives him a deadline o...
                            
                            
                                分类:
其他好文   时间:
2014-05-01 20:49:40   
                                阅读次数:
563
                             
                    
                        
                            
                            
                                没有想通为什么这个简单的问题竟然不是那么简单,太小看它了,以下是两个别人的很不错的solution:Solution1: 
1 public class Solution { 2 public int removeDuplicates(int[] A) { 3 // Start...
                            
                            
                                分类:
其他好文   时间:
2014-05-01 20:19:26   
                                阅读次数:
384
                             
                    
                        
                            
                            
                                Keyboard inputPython provides a build-in 
function called raw_input (in version 2.x) that gets input from the keyboard. In 
Python 3.x we use input(). W...
                            
                            
                                分类:
其他好文   时间:
2014-05-01 19:23:26   
                                阅读次数:
392
                             
                    
                        
                            
                            
                                关于最大熵模型的介绍请看:http://www.cnblogs.com/hexinuaa/p/3353479.html
下面是GIS训练算法的python实现,代码不到100行。
from collections import defaultdict
import math
class MaxEnt(object):
    def __ini...
                            
                            
                                分类:
其他好文   时间:
2014-04-30 22:46:39   
                                阅读次数:
384
                             
                    
                        
                            
                            
                                通过 HTML DOM,可访问 JavaScript HTML 文档的所有元素
1 修改HTML元素内容
document.write(Date()); //在输入流中直接写
document.getElementById(id).innerHTML=new HTML	//改变已经有的元素内容
document.getElementById("image").src="landscap...
                            
                            
                                分类:
编程语言   时间:
2014-04-30 22:42:38   
                                阅读次数:
353
                             
                    
                        
                            
                            
                                --跟踪文件读入到表中分析
SELECT * INTO ZGSJY
FROM fn_trace_gettable('E:\wxxcdbprofiler.trc', default);
--某时间内,最耗时SQL
select TOP 100 SUBSTRING(Textdata,1,660) as '名称',
count(*) as '数量', sum(duration/1000) as '总执行...
                            
                            
                                分类:
数据库   时间:
2014-04-30 22:37:39   
                                阅读次数:
327