时间一长就忘记MFC中的很多东西了,所以需要把这些基本的知识理一理,为能深入到MFC内部结果原理,现在需要把这些东西让度娘吐出来:1.MFC中的消息队列情况(一个消息队列可以容纳多少消息)
原文可以在msdn中搜索“About Messages and Message Queues ”找到:The ...
分类:
其他好文 时间:
2014-05-26 07:32:26
阅读次数:
243
索引、实体化视图、簇、散列簇、序列、同义词1、创建表CREATE TABLE (
,……);CREATE GLOBAL TEMPORARY TABLE ( ,……) ON COMMIT DELETE ROWS TABLESPACE
;--创建事务级临时表,事务提交后删除临时表中数据CREATEGLO...
分类:
数据库 时间:
2014-05-25 23:25:14
阅读次数:
455
本周四临近下班时,接到一个客户的电话——其Exchange2013CU2系统终端用户无法使用SMTP方式发送邮件。当客户端(OLK或者Foxmail)发送邮件时,系统提示错误:4514.7.0Temporaryservererror.Pleasetryagainlater.PRX2诊断时,通过telnetServer25命令检测可以连接;通过客户端软..
分类:
其他好文 时间:
2014-05-25 05:05:39
阅读次数:
4214
每个cpu都有队列来处理接收到的帧,都有其数据结构来处理入口和出口流量,因此,不同cpu之间没有必要使用上锁机制,。此队列数据结构为softnet_data(定义在include/linux/netdevice.h中):
/*
* Incoming packets are placed on per-cpu queues so that
* no locking is needed....
分类:
系统相关 时间:
2014-05-23 07:29:17
阅读次数:
514
【题目】
原文:
2.1 Write code to remove duplicates from an unsorted linked list.
FOLLOW UP
How would you solve this problem if a temporary buffer is not allowed?
译文:
从一个未排序的链表中移除重复的项
...
分类:
其他好文 时间:
2014-05-22 12:04:13
阅读次数:
196
简述drop table
tmp_qry_cus_186mcc_highuser_d;create global temporary table
tmp_qry_cus_186mcc_highuser_d( user_id number(15))on commit preserve rows; 这....
分类:
数据库 时间:
2014-05-19 20:57:00
阅读次数:
399
产生原因: 应用程序运行时产生的临时文件需要存放到c:"windows"temp 文件夹下
而运行基于microsoft .net framework 框架下的应用程序 需要对temp 具有读写的权限 ,所以程序运行产生的临时文件不能存储或读取
,或者路径不存在的情况下都会产生编译错误。 解决方法:...
分类:
移动开发 时间:
2014-05-12 11:12:14
阅读次数:
333
本文转载自:http://www.cnblogs.com/finesite/archive/2011/01/28/1946940.html网上搜的解决方案但在我的环境下仍旧没有解决,我的方法如下:给C:\Windows\temp
文件夹赋予完全控制权限,如图:其他的解决方案均没有成功如:1 设置c:...
1、创建用户并指定表空间create user gy_3004 identified by
gy_3004 default tablespace gy_3004_data temporary tablespace gy_3004_temp;
2、给用户授予权限--方式一: GRANT CREA...
分类:
数据库 时间:
2014-05-08 12:18:54
阅读次数:
412
1、分区技术2、索引技术3、临时表技术--创建事务级临时表,commit之后数据将丢失但是表结构依然存在CREATE
GLOBAL TEMPORARY TABLE admin_work_area (startdate DATE, enddate DATE, class
CHAR(20)) ON CO...
分类:
数据库 时间:
2014-05-07 17:08:24
阅读次数:
414