oracle数据库物理文件大致有8种: 参数文件(parameter file) 跟踪文件(trace file) 警告文件(alert file) 数据文件(data file) 临时文件(temp file) 控制文件(control file) 重做日志文件(redo log file) 密码...
分类:
数据库 时间:
2015-01-16 14:30:37
阅读次数:
221
求解最大似然估计时发现有两种表示方法
from:Gregor Heinrich - Parameter estimation for text analysis
from:http://blog.csdn.net/pipisorry/article/details/42649657
有上述两种方法表示的原因
p(x|theta)不总是代表条...
分类:
其他好文 时间:
2015-01-14 21:27:13
阅读次数:
213
(1)自加LED显示代码 本模块用于检测或者验证LED的电路,以及性能,一般人都会用到。//`timescale 1ns/1ns module led_addr_display#(parameter LED_WIDTH = 8)( //global clock input clk,input r.....
分类:
其他好文 时间:
2015-01-13 19:42:57
阅读次数:
131
1. Clock logic为方便对时钟进行修改,已经后续代码中的应用,定义为parameter或者`define更为方便,如下所示://-------------------------------//clock unitsparameter PERIOD = 20; //20ns,50MHzal...
分类:
其他好文 时间:
2015-01-13 12:25:51
阅读次数:
164
SYS@ora11g>show parameter spfileNAME TYPE------------------------------------ --------------------VALUE------------------------------spfile ...
分类:
其他好文 时间:
2015-01-11 17:36:48
阅读次数:
177
控制文件丢了一个,损坏了一个,还剩余一个,无法启动startup nomountalter system set control_files=('') scope=spfile;指定到仍然存在的控制文件show parameter control 查看控制文件参数是否修改成功shutdown imm...
分类:
其他好文 时间:
2015-01-11 17:30:07
阅读次数:
201
Pat1085代码
题目描述:
Given a sequence of positive integers and another positive integer p. The sequence is said to be a "perfect sequence" if M
Now given a sequence and a parameter p, you are s...
分类:
其他好文 时间:
2015-01-09 23:48:11
阅读次数:
495
1.使用Parameter//利用构造函数方式 ,不推荐这样写Parameter p =new Parameter("@id",值);cmd.Parameters.Add(p);//利用对象初始化器的方式,推荐是这样写Parameter p =new Parameter(){ParameterNa....
分类:
数据库 时间:
2015-01-09 08:04:12
阅读次数:
233
1.ORA-01034: ORACLE not available sqlplus "sys/password as sysdba"2.ORA-00119: invalid specification for system parameter LOCAL_LISTENER 修改bhome_1\dat...
分类:
数据库 时间:
2015-01-08 11:05:41
阅读次数:
159
类似于这样的错误:其实大多数的情况下,都是SQL语句书写错了,特别是这种情况:select * from order;应该写成:select * from `order`;(那不是单引号,而是tab上面那个按键)出现这样的错误,意思是,你的SQL中有和数据库中的关键字重复了,所以才要加上那个符号来区...
分类:
数据库 时间:
2015-01-07 18:37:30
阅读次数:
163