<?xml version="1.0" encoding="UTF-8" ?>
<rss version="0.91">
  <channel>
    <title>MEMO</title>
    <description></description>
    <link>https://yori0202.blog.shinobi.jp/</link>
    <language>ja</language>
    <copyright>Copyright (C) NINJATOOLS ALL RIGHTS RESERVED.</copyright>

    <item>
      <title>圧縮するときは2G未満でないと不可</title>
      <description>makecabやzipで圧縮する際に、&lt;br /&gt;
圧縮もとのファイルが2Gを超えていると、&lt;br /&gt;
圧縮できてもうまく解凍できない。&lt;br /&gt;
&lt;br /&gt;
FAT32時代の名残で、当時は最大ファイルサイズが2Gだったため。&lt;br /&gt;
&lt;br /&gt;
以下参考URL&lt;br /&gt;
&lt;a href=&quot;http://www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=19507&amp;amp;forum=6&amp;amp;3&quot;&gt;http://www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=19507&amp;amp;forum=6&amp;amp;3&lt;/a&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/batchtips/%E5%9C%A7%E7%B8%AE%E3%81%99%E3%82%8B%E3%81%A8%E3%81%8D%E3%81%AF2g%E6%9C%AA%E6%BA%80%E3%81%A7%E3%81%AA%E3%81%84%E3%81%A8%E4%B8%8D%E5%8F%AF</link> 
    </item>
    <item>
      <title>アンインストール失敗：SQL.msi　一般的な評価</title>
      <description>mmcでの接続があると、.mifに接続が記録されていて、アンインストールに失敗する。&lt;br /&gt;
EM(EnterpizeManager)を閉じて、アンインストールを実行したところ成功した。&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;posttext&quot;&gt;.mif stands for machine information file. SQL.mif file contains info about SQL&lt;br /&gt;
instance install/uninstall info apart from other stuff. By the first look I realized&lt;br /&gt;
that mmc.exe was running at the time I was uninstalling, and hence the uninstall&lt;br /&gt;
failed. Uninstall went fine once I took care of these.&lt;br /&gt;
&lt;br /&gt;
&amp;uarr;は以下URLより抜粋&lt;br /&gt;
&lt;a href=&quot;http://www.dbforums.com/archive/index.php/t-475325.html&quot;&gt;http://www.dbforums.com/archive/index.php/t-475325.html&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/ms%20sql%20server/%E3%82%A2%E3%83%B3%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E5%A4%B1%E6%95%97%EF%BC%9Asql.msi%E3%80%80%E4%B8%80%E8%88%AC%E7%9A%84%E3%81%AA%E8%A9%95%E4%BE%A1</link> 
    </item>
    <item>
      <title>SATA</title>
      <description>☆SATA : Serial ATA&lt;br /&gt;
　・ST506を高速化したのがESDI、SCSI、IDE&lt;br /&gt;
　・ESDI、SCSI、IDEをANSIが共通化したのがATA&lt;br /&gt;
　・ATAが進化したのがパラレルATA&lt;br /&gt;
　・パラレルATAをシリアル化することで、&lt;br /&gt;
　　－省電力化（5Vから0.5Vへ）&lt;br /&gt;
　　－高速化（133MB/sから150MB/sへ）&lt;br /&gt;
　　－マスター/スレーブ接続から、一台接続へ&lt;br /&gt;
　　変わった&lt;br /&gt;
&lt;br /&gt;
☆ST506&lt;br /&gt;
　・PC/AT時代のHDのインターフェース</description> 
      <link>https://yori0202.blog.shinobi.jp/storage/sata</link> 
    </item>
    <item>
      <title>SAS</title>
      <description>☆SAS : Seral attached SCSI&lt;br /&gt;
　・Ultra320（SCSI-3）の後継。&lt;br /&gt;
　・転送速度　3 Gbit / s　。&lt;br /&gt;
　・128台接続可能、ただしSAS Expandを用いると約16000台接続可能。&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
☆SCSI&lt;br /&gt;
　・複数のコンピュータから1台のディスクに接続可能なインターフェース&lt;br /&gt;
　・ディジーチェーンが可能で、ターミネーターが必用で・・・。&lt;br /&gt;
　・SCSI-3がUltra320で、転送速度　320 MB / s 。</description> 
      <link>https://yori0202.blog.shinobi.jp/storage/sas</link> 
    </item>
    <item>
      <title>:=　の表記の意味</title>
      <description>Visaul Basicでは引数の省きがきかないので、&lt;br /&gt;
&lt;br /&gt;
call func( , , strHoge)　等の , を使用した書き方になる。&lt;br /&gt;
そこで、&lt;br /&gt;
&lt;br /&gt;
もともとの関数が&lt;br /&gt;
sub func( hensu1 as string, hensu2 as string, hensu3 as string)&lt;br /&gt;
であれば、&lt;br /&gt;
&lt;br /&gt;
呼び出すときに&lt;br /&gt;
call func( hensu := strHoge)&lt;br /&gt;
とすることができる。&lt;br /&gt;
&lt;br /&gt;
以下参照&lt;br /&gt;
&lt;a href=&quot;http://www.relief.jp/itnote/archives/001014.php&quot;&gt;http://www.relief.jp/itnote/archives/001014.php&lt;/a&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/visual%20basic/--%E3%80%80%E3%81%AE%E8%A1%A8%E8%A8%98%E3%81%AE%E6%84%8F%E5%91%B3</link> 
    </item>
    <item>
      <title>プロダクションモード</title>
      <description>WebLogicは二つのモードで実行可能。&lt;br /&gt;
・開発モード&lt;br /&gt;
・プロダクションモード&lt;br /&gt;
&lt;br /&gt;
開発モードは、自動デプロイ等の機能がある。&lt;br /&gt;
プロダクションモードではサーバのリソース等を手動で設定する必要がある。&lt;br /&gt;
リリース後は当然プロダクションモードで起動。&lt;br /&gt;
&lt;br /&gt;
以下参照&lt;br /&gt;
&lt;a href=&quot;http://www.beasys.co.jp/e-docs/workshop/docs81/doc/ja_JP/core/index.html&quot;&gt;http://www.beasys.co.jp/e-docs/workshop/docs81/doc/ja_JP/core/index.html&lt;/a&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/weblogic/%E3%83%97%E3%83%AD%E3%83%80%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%A2%E3%83%BC%E3%83%89</link> 
    </item>
    <item>
      <title>行番号の表示方法</title>
      <description>ツール &amp;gt; オプション &amp;gt; テキストエディタ &amp;gt; C# &amp;gt; 全般から変更可能&lt;br /&gt;
&lt;br /&gt;
＜参考資料＞&lt;br /&gt;
&lt;a href=&quot;http://rararahp.cool.ne.jp/cgi-bin/lng/dotnet/dotnetlng.cgi?print+200601/06010002.txt&quot;&gt;http://rararahp.cool.ne.jp/cgi-bin/lng/dotnet/dotnetlng.cgi?print+200601/06010002.txt&lt;/a&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/visualstadio2005/%E8%A1%8C%E7%95%AA%E5%8F%B7%E3%81%AE%E8%A1%A8%E7%A4%BA%E6%96%B9%E6%B3%95</link> 
    </item>
    <item>
      <title>Adminpak</title>
      <description>&lt;p&gt;WindowsServer2003用の管理用ツール。&lt;br /&gt;
RemoteDesktops等が利用できる。&lt;/p&gt;
&lt;p&gt;WindowsSevere上だけでなく、XP等でも実行できるのが特徴。&lt;/p&gt;
&lt;p&gt;＜以下からダウンロード可能＞&lt;br /&gt;
&lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?FamilyID=c16ae515-c8f4-47ef-a1e4-a8dcbacff8e3&amp;amp;DisplayLang=en&quot;&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=c16ae515-c8f4-47ef-a1e4-a8dcbacff8e3&amp;amp;DisplayLang=en&lt;/a&gt;&lt;/p&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/windowsserver2003/adminpak</link> 
    </item>
    <item>
      <title>WindowsServer2003のPOP3サービス</title>
      <description>WinodwsSever2003であれば、&lt;br /&gt;
POP3を利用して、簡単にメールサーバーを構築できる。&lt;br /&gt;
&lt;br /&gt;
Exchange Serverはこの上位モデル、と思われる。&lt;br /&gt;
&lt;br /&gt;
＜参考資料＞&lt;br /&gt;
&lt;a href=&quot;http://www.microsoft.com/technet/prodtechnol/windowsserver2003/ja/library/ServerHelp/c5378206-e19c-4bc0-b8dc-19f2df832303.mspx?mfr=true&quot;&gt;http://www.microsoft.com/technet/prodtechnol/windowsserver2003/ja/library/ServerHelp/c5378206-e19c-4bc0-b8dc-19f2df832303.mspx?mfr=true&lt;/a&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/e-mail/windowsserver2003%E3%81%AEpop3%E3%82%B5%E3%83%BC%E3%83%93%E3%82%B9</link> 
    </item>
    <item>
      <title>SQL Server上の権限</title>
      <description>&lt;p&gt;ロールの権限とユーザの権限について。&lt;br /&gt;
&lt;br /&gt;
□実行権限有りの設定&lt;br /&gt;
　・一方で未設定で、一方で権限有&lt;br /&gt;
　・両方とも権限有&lt;br /&gt;
&lt;br /&gt;
□実行権限無しの設定&lt;br /&gt;
　・どちらか一方で拒否&lt;br /&gt;
　・両方とも未設定&lt;br /&gt;
&lt;br /&gt;
そのためロールとユーザの権限の確認をしないと、&lt;br /&gt;
最終的には現在ログインしているアカウントの権限がわからない。&lt;br /&gt;
&lt;br /&gt;
＜参考資料＞&lt;br /&gt;
&lt;a href=&quot;http://www.atmarkit.co.jp/fnetwork/rensai/sql18/sql1.html&quot;&gt;http://www.atmarkit.co.jp/fnetwork/rensai/sql18/sql1.html&lt;/a&gt;&lt;/p&gt;</description> 
      <link>https://yori0202.blog.shinobi.jp/ms%20sql%20server/sql%20server%E4%B8%8A%E3%81%AE%E6%A8%A9%E9%99%90</link> 
    </item>

  </channel>
</rss>