linux oracle 网络安全 编程
发布时间:2012-12-22 14:36:21
#include <stdio.h>#define SIZE 10struct Student_type //定义结构体数组stud,包含10个学生数据{ char name[10]; int num; int age; char addr[15]; }stud[SIZE]; void save(){ FILE*fp; int i; if((fp=fopen("E:\\stu.txt","wb"))==NULL) { printf("can not op......【阅读全文】
发布时间:2012-12-21 20:33:36
#include <stdio.h>#define N 3 struct Student { long num; char name[20]; float score[3]; double aver; }; int main () { void input (struct Student stu[]); struct Student max(struct Student stu[]); &nb......【阅读全文】
发布时间:2012-12-20 14:36:21
不小心把表my_table中的数据全部删除了,现在要恢复数据。 1.select timestamp_to_scn(to_timestamp('2012-12-05 16:10:00', 'YYYY-MM-DD HH24:MI:SS')) from dual;(结果为10588775770) 2.create table my_table_bak as select * fr......【阅读全文】
发布时间:2012-12-20 14:28:24
#include <stdio.h>#include <string.h>struct Person{ char name[20]; int count;}leader[3]={"li",0,"xian",0,"chen",0};int main(){ int i,j; char leader_name[20]; for(i=1;i<=10;i++) { scanf("%s",leader_name); for(j=0;j<3;j++) &nbs......【阅读全文】
发布时间:2012-12-20 12:24:31
近日,数据存储行业分析师、厂商和金融家齐聚波士顿的BD大会,提出他们对未来一年的存储和IT行业的看法。 IT销售增长率比起10年前小了许多,而用户努力想从他们现有的IT环境中挖掘每一分效率上的潜力。为了满足用户提高效率的需求,虚拟化和云是与会者最关注的趋势之一。 Akorri的John Gavin表示:“虚拟化过去针对的是那些容易实现的目标,比如服务器合并和成本管理。现在虚拟化则是想如何在任务关键型应用程序中简化管理和管理性能问题。" 数据中心从物理设备的约束中迁移到更加综合的模式。现在,数据中心已经进入到第二阶段——将微软SharePoint、电子邮件和CRM(客户关系管理)这样的......【阅读全文】