今天同事反映一个问题,某个测试库修改了密码,并改了相关应用使用的密码后,仍出现一会账户就被锁住,报ORA-28000: the account is locked的错误。
检查过程:
1. 查看资源限制生效参数
SQL> show parameter resource
NAME TYPE VALUE
---...
分类:
其他好文 时间:
2014-08-24 19:24:53
阅读次数:
193
/* desctription: this module implement the sdr_sdram timing. the author:lufy yin(wuqingjianke) */`timescale 1ns/1psmodule sdram_io #(parameter DataWid...
分类:
其他好文 时间:
2014-08-24 12:52:42
阅读次数:
208
`timescale 1ns/1psmodule VGA_Driver #(parameter IMAGE_X = 1056, IMAGE_Y = 628, H_FRONT = 40, H...
分类:
其他好文 时间:
2014-08-24 11:36:22
阅读次数:
263
--lua代码localhttp=require"socket.http"localltn12=require("ltn12")request_body=‘u=1¶meter={"m":"S"}‘localresult=http.request{url="http://127.0.0.1/2.php",sink=ltn12.sink.file(io.stdout),method="POST",headers={["Content-Type"]="application/x-www-form..
分类:
其他好文 时间:
2014-08-21 19:41:35
阅读次数:
489
在C++中,函数参数传递有3种方式,分别是按值传递、按地址传递和按引用传递。其测试代码如下: 1 //Parameter Transmission in C++ 2 #include 3 using namespace std; 4 5 void swap_value(int a,int b)...
分类:
其他好文 时间:
2014-08-21 01:30:23
阅读次数:
290
1、引用claro.css和esri.css 2、页面布局 Pick a tool and draw on the map. The drawn graphic will be buffered based on the specified parameter...
Oracle11g 新增参数deferred_segment_creation
,建库的时候默认值为true,意思是延时加载,当表中不存在数据的时候,不为这个表创建空间,当你导出的时候会发现很多表不存在
使用show parameter deferred deferred_segment_creation; 命令可以查看deferred_segment_creation的值,如果想...
分类:
数据库 时间:
2014-08-18 20:32:02
阅读次数:
211
select * from nls_instance_parameters where parameter =‘NLS_TERRITORY‘ or parameter =‘NLS_LANGUAGE‘; select * from nls_instance_parameters ?where parameter =‘NLS_TERRITORY‘ or parameter =‘NLS_LAN...
分类:
数据库 时间:
2014-08-18 14:39:32
阅读次数:
286
1. 查看processes和sessions参数 SQL> show parameter processes NAME TYPE VALUE db_writer_processes integer 1 gcs_server_processes integer 0 job_queue_pr...
分类:
数据库 时间:
2014-08-18 12:23:44
阅读次数:
260
/** * extern NSString * const serverAddress; // constant pointer 常量指针。 就是指针是不变的 * extern const NSString * serverAddress;// pointer to constant 指向...
分类:
其他好文 时间:
2014-08-16 13:48:40
阅读次数:
237