<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://blog.ywdeng.idv.tw/styles/rss.css" type="text/css"?>
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>
 <channel>
  <title>Joseph&#039;s Blog</title>
  <link>http://blog.ywdeng.idv.tw/index.php?blogId=1</link>
  <description>&lt;p&gt;鄧姚文老師的網誌，內容以教學事務為主，亦包含研究紀錄與心得。&lt;/p&gt;
</description>
  <pubDate>Sun, 05 Sep 2010 20:15:18 +0800</pubDate>
  <generator>http://www.lifetype.net</generator>
    <item>
   <title>WD 1TB HDD 變成只剩 32 MB ?</title>
   <description>
    &lt;p&gt;
今天發生怪事了，一顆 WD10EADS 1TB 硬碟容量突然變成 32 MB ！？
&lt;/p&gt;
&lt;p&gt;
上網 Google 的結果，發現很多人也有這樣的問題
&lt;/p&gt;
&lt;p&gt;
在 &lt;a href=&quot;http://blog.yam.com/vcc999/article/24537203&quot; title=&quot;Vincent 的網路世界&quot;&gt;http://blog.yam.com/vcc999/article/24537203&lt;/a&gt; 有一篇使用 HD Capacity Restore 恢復硬碟容量的文章
&lt;/p&gt;
&lt;p&gt;
可是下載 HD Capacity Restore 工具之後，卻發現沒有辦法在 Windows Server 2003 下正常運行
&lt;/p&gt;
&lt;p&gt;
臨時又沒有開機磁片或可以開機的大拇哥
&lt;/p&gt;
&lt;p&gt;
因此改用 Ubuntu 1004 DVD 片開機，進入 Live DVD 模式
&lt;/p&gt;
&lt;p&gt;
然後以下列指令回復磁碟容量：
&lt;/p&gt;
&lt;code&gt;
sudo&amp;nbsp; hdparm --yes-i-know-what-i-am-doing --dco-restore /dev/sda&lt;br /&gt;
&lt;/code&gt;
   </description>
   <link>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=622&amp;blogId=1</link>
   <comments>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=622&amp;blogId=1</comments>
   <guid>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=622&amp;blogId=1</guid>
      <dc:creator>joseph</dc:creator>
      
    <category>一般</category>
         <pubDate>Tue, 31 Aug 2010 14:32:39 +0800</pubDate>
   <source url="http://blog.ywdeng.idv.tw/rss.php?blogId=1&amp;profile=rss20">Joseph&#039;s Blog</source>
     </item>
    <item>
   <title>Delete Windows Service by command line instruction</title>
   <description>
    &lt;p&gt;To delete windows service&amp;nbsp;OracleGGSMGRVS4&lt;br /&gt;Open command prompt as Administrator and execute the following command:&amp;nbsp;&lt;/p&gt;&lt;code&gt;sc delete OracleGGSMGRVS4&lt;/code&gt;
   </description>
   <link>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=621&amp;blogId=1</link>
   <comments>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=621&amp;blogId=1</comments>
   <guid>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=621&amp;blogId=1</guid>
      <dc:creator>joseph</dc:creator>
      
    <category>一般</category>
         <pubDate>Mon, 30 Aug 2010 22:29:42 +0800</pubDate>
   <source url="http://blog.ywdeng.idv.tw/rss.php?blogId=1&amp;profile=rss20">Joseph&#039;s Blog</source>
     </item>
    <item>
   <title>Install multiple Oracle Database Client on one PC</title>
   <description>
    &lt;p&gt;I install one Oracle Database Client 11g R2 32-bit and one&amp;nbsp;Oracle Database Client 11g R2&amp;nbsp;64-bit on the same PC running Windows 7 64-bit.&lt;/p&gt;&lt;p&gt;This is how I do it:&lt;/p&gt;&lt;p&gt;1. Install&amp;nbsp;Oracle Database Client 11g R2 32-bit:&lt;/p&gt;&lt;p&gt;Create a response file named client32.rsp by running Oracle&#039;s Universal Installer setup.exe and save the response file after all parameters are set.&lt;/p&gt;&lt;p&gt;Be sure to set the following variables in&amp;nbsp;client32.rsp&lt;/p&gt;&lt;code&gt;ORACLE_HOME=C:\ORA32\product\11.2.0\client32&lt;br /&gt;ORACLE_BASE=C:\ORA32&lt;br /&gt;&lt;/code&gt;&lt;p&gt;Set environment variable ORACLE_HOME_NAME and remove all other Oracle related&amp;nbsp;environment variable such as ORACLE_HOME&lt;/p&gt;&lt;code&gt;set ORACLE_HOME_NAME=OraCli11gR2_32&lt;br /&gt;setup &amp;quot;ORACLE_HOME_NAME=OraCli11gR2_32&amp;quot; -responseFile&amp;nbsp;client32.rsp&lt;br /&gt;&lt;/code&gt;&lt;p&gt;2. Install&amp;nbsp;Oracle Database Client 11g R2 64-bit:&lt;/p&gt;&lt;p&gt;Create a response file named client64.rsp by running Oracle&#039;s Universal Installer setup.exe and save the response file after all parameters are set.&lt;/p&gt;&lt;p&gt;Be sure to set the following variables in&amp;nbsp;client64.rsp&lt;/p&gt;&lt;code&gt;ORACLE_HOME=C:\ORA64\product\11.2.0\client64&lt;br /&gt;ORACLE_BASE=C:\ORA64&lt;br /&gt;&lt;/code&gt;&lt;p&gt;Set environment variable ORACLE_HOME_NAME and remove all other Oracle related&amp;nbsp;environment variable such as ORACLE_HOME&lt;/p&gt;&lt;p&gt;&lt;code&gt;set ORACLE_HOME_NAME=OraCli11gR2_64&lt;br /&gt;setup &amp;quot;ORACLE_HOME_NAME=OraCli11gR2_64&amp;quot; -responseFile&amp;nbsp;client64.rsp&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;
   </description>
   <link>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=620&amp;blogId=1</link>
   <comments>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=620&amp;blogId=1</comments>
   <guid>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=620&amp;blogId=1</guid>
      <dc:creator>joseph</dc:creator>
      
    <category>一般</category>
         <pubDate>Tue, 24 Aug 2010 23:06:21 +0800</pubDate>
   <source url="http://blog.ywdeng.idv.tw/rss.php?blogId=1&amp;profile=rss20">Joseph&#039;s Blog</source>
     </item>
    <item>
   <title>Unlock Oracle account scott/tiger</title>
   <description>
    &lt;p&gt;SQL&amp;gt; alter user scott account unlock;&lt;/p&gt;&lt;p&gt;SQL&amp;gt;&amp;nbsp;alter user scott identified by tiger;&lt;/p&gt;
   </description>
   <link>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=518&amp;blogId=1</link>
   <comments>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=518&amp;blogId=1</comments>
   <guid>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=518&amp;blogId=1</guid>
      <dc:creator>joseph</dc:creator>
      
    <category>一般</category>
         <pubDate>Mon, 16 Aug 2010 16:23:06 +0800</pubDate>
   <source url="http://blog.ywdeng.idv.tw/rss.php?blogId=1&amp;profile=rss20">Joseph&#039;s Blog</source>
     </item>
    <item>
   <title>Oracle 11g Enterprise Manager</title>
   <description>
    &lt;p&gt;Oracle 11G 的 Enterprise Manager 變成 Web 版了&lt;/p&gt;&lt;p&gt;網址：&lt;/p&gt;&lt;p&gt;https://localhost:1158/em/&lt;/p&gt;
   </description>
   <link>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=517&amp;blogId=1</link>
   <comments>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=517&amp;blogId=1</comments>
   <guid>http://blog.ywdeng.idv.tw/index.php?op=ViewArticle&amp;articleId=517&amp;blogId=1</guid>
      <dc:creator>joseph</dc:creator>
      
    <category>一般</category>
         <pubDate>Mon, 16 Aug 2010 15:46:29 +0800</pubDate>
   <source url="http://blog.ywdeng.idv.tw/rss.php?blogId=1&amp;profile=rss20">Joseph&#039;s Blog</source>
     </item>
   </channel>
</rss>