MCSE2003升級2008的2種途徑

MCSE2003升級2008的2種途徑
1.MCSE2003升級2008 Server系統管理員:Server Administrator
需要通過2門升級科目
Exam 70-649
Review the preparation guide for Exam 70-649 TS Upgrading Your MCSE on Windows Server 2003 to Windows Server 2008, Technology Specialist

Exam 70-646
Review the preparation guide for Exam 70-646 PRO Windows Server 2008, Server Administrator

2.MCSE2003升級2008企業管理員: Enterprise Administrator
需要通過3門升級科目
 
Exam 70-649
Review the preparation guide for Exam 70-649 TS Upgrading Your MCSE on Windows Server 2003 to Windows Server 2008, Technology Specialist

Exam 70-620 Or Exam 70-624(選壹門)
Review the preparation guide for Exam 70-620 TS Microsoft Windows Vista, Configuring

Review the preparation guide for Exam 70-624 TS Deploying and Maintaining Windows Vista Client and 2007 Microsoft Office System Desktops

Exam 70-647
Review the preparation guide for Exam 70-647 PRO Windows Server 2008, Enterprise Administrator

CompTIA PDI+ 認證

CompTIA PDI+認證表明應試人員具備了為打印和文件成像設備提供基本支持的知識和技能。該認證考試涵蓋了諸多領域,如:打印和掃描過程和組件、基本的機電工具、顏色理論以及客戶服務、專化化和安全與環境的軟技能。

PD0-001 Exam
CompTIA PDI+ Exam
科目編號:PD0-001
科目名稱:CompTIA PDI+ Exam
考題數目:861 Q&As
更新日期:2009-12-25
PDI+ 認證是業界最廣泛認可的IT技術認證之一,也是業界最權威、最受尊敬的認證之一。獲得PDI+認證不僅僅能證明您的IT技術能力,更是您進入職場的敲門磚,也是提高您身價的另一捷徑

51-pass 有PD0-001考試的學習材料,如考題, PD0-001 學習指南 ,PD0-001最新題庫,PD0-001 認證考試,Comptia PD0-001考試的問題與答案,Comptia PD0-001培訓,Comptia PD0-001 免費試用等.

oracle批量插入測試數據的方法

oracle怎樣批量插入測試數據
        壹、Test Windos方式

  declare

  maxrecords constant int:=100000;

  i int :=1;

  begin

  for i in 1..maxrecords loop

  insert into test2

  (id, name)

  values

  (test2_seq.nextval, to_char(9999+i));

  end loop;

  dbms_output.put_line(’ 成功錄入數據!’);

  commit;

  end;

  二、從已有表中往入另壹張表導數據

  create or replace procedure TestProc is

  begin

  for c in(select id, name from test2) loop

  insert into test

  (id,

  name)

  values

  (test_seq.nextval, c.name);

  end loop;

  end TestProc;