l***r 发帖数: 459 | 1 I was surprised that there is no PFILE in dbs directory. I only have SPFILE. I
knew database startup based on that SPFILE.
I checked the book and it is only saying that I can create a SPFILE from PFILE
but not reverse. What shall I do? Must I create a PFILE?
btw, I found one in admin//pfile/init.ora.472003154544. Should I
copy that to dbs as init.ora?
Thanks! |
|
k**e 发帖数: 86 | 2 Of course, you can do what you like to do. But at first, you have to make sure
you have enough reason and it is safe to rename this file.
It seems that you have done something wrong. It is recommended to run dbassist
to create the database.
I
PFILE |
|
d*******2 发帖数: 340 | 3 FILE *pFile;
pFile=fopen("myfile.txt","r");
fscanf(pFile,"%e, %e, %e, %e",&variable1,&variable2,&variable3,&variable4)
fclose(pFile);
myfile.txt
4.232e-002, 4.232e-002, 4.232e-002, 4.232e-002
为什么不对呢?
先谢了! |
|
b****n 发帖数: 84 | 4 【 以下文字转载自 Programming 讨论区 】
【 原文由 besson 所发表 】
在MFC中,
我定义了一个类指针 CHttpFile* pFile
然后想用它来发送一个TCP packet
pFile->SendRequest(szHeaders, strlen(szHeaders), strData, strlen(str));
其中szHeaders是
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
Referer: **********************
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows |
|
c*****d 发帖数: 6045 | 5 这里面的学问大了
为啥你每次都能google到你想要的答案
有的人却不知道搜哪些关键字
最简单的用法是google advanced search
比如oracle spfile
1.在特定网站搜
oracle spfile site:mitbbs.com
oracle spfile site:edu
2.排除特定内容
oracle spfile -pfile
3.指定特定内容
oracle spfile +pfile
4.特定文件类型
oracle spfile filetype:pdf
5.关键字
oracle spfile "ask tom"
进阶用法由beijing mm讲解 |
|
p*a 发帖数: 592 | 6 thanks. pfiles works for me.
now the problem is that I don't have permission to run pfiles on some
processes, sigh |
|
b*******e 发帖数: 6389 | 7 可以从文件最后开始往前seek。
fseek ( pFile , -10 , SEEK_END ); |
|
a*****y 发帖数: 33185 | 8 国内孩子单纯?这显然是围城的心态吧。
http://parenting.ycwb.com/?pfile=6&version=55
“暑假马上就要到了,孩子又将每天跟电视为伴。可是我却很担心,他到底能从电视上
学到什么?童星、儿童主持人、选秀比赛的儿童选手……他们看上去比大人还懂得搔首
弄姿!”近日,一位广州家长将信寄到了新父母俱乐部,他说,这些小孩的确很会“演
”,但是他们的“演”让人看了,感受到的不是天真,而是一种与年龄极不相称的造作
。儿童选秀节目日益成人化的现象,就像一面镜子,从侧面折射出儿童早熟问题不容忽
视。失去了童真的未来世界,真的是我们期待的吗?
早熟的孩子,其成长往往违背了自然规律,失去了自然的天性。从这个角度来说,早熟
是一种“病”。小孩子就像春天萌发的新叶,带着一股青涩,和一种无法模仿的天真和
单纯。但是,很多孩子那份天真单纯却过早地褪去,心理成熟得俨然一个个“小大人”
,这背后到底发生了什么?
失去天真 孩子变身“小大人”
日前,佛山几所小学迎来了开学第一天,老师惊奇地发现,不少六七岁的学生的表现竟
然像个“小大人”。进教室就抢着为老师端茶送水,守在教室门口等着为... 阅读全帖 |
|
c*****d 发帖数: 6045 | 9 oracle的备份分两种方式
1. os backup: 通过操作系统的copy命令来备份
2. rman backup: 通过oracle rman工具来备份
不管你用os还是rman备份,你都要备份:
data files, archived log files (not redo log files), control file
spfile或者pfile是oracle启动时的初始化参数文件
可以备份,也可以不备份 |
|
|
d****i 发帖数: 4809 | 11 这个应该是用指针来定义动态数组吧,如下
struct Numbers {
size_t N;
float *data;
};
struct Numbers numbers;
//read N in
scanf("%d", &numbers.N);
//create the new data array based on N
number.data = malloc(sizeof(float)*N);
//read data in
for(int i=0; i
fscanf(pFile, "%f", &number.data[i]);
}
float) |
|
g*****y 发帖数: 26 | 12 one socket port was occupied by a program
but I don't know which one
How can I find this program out and killed it?
I have known pfile /proc/* can do this,
but I want a more simple method. |
|
w**n 发帖数: 88 | 13 lsof does ( get it from sunfreeware.com)
Basically /usr/proc/bin/pfiles in solaris 8 also could show the binding
between process id and socket port number. |
|
|