satou2008.blogspot.com satou2008.blogspot.com

SATOU2008.BLOGSPOT.COM

memo

DOSバッチファイル: コマンドの出力を変数に格納(代入)する. Echo off for /F "USEBACKQ" % a in (`date /T`) do ( echo a = % a set foo=% a ) echo a = % a echo foo = %foo% pause. Testbat a = 2009/05/25 a = %a foo = 2009/05/25 続行するには何かキーを押してください . . . Ksh / Korn shell メモ. If [ 0 = 0 ] & [ 1 = 1 ] ; then echo OK else echo NG fi #= OK if [ 0 = 0 ] & [ 1 = 2 ] ; then echo OK else echo NG fi #= NG. Printf "%d n" 07 7 $ printf "%d n" 08 printf: 3016-002 08 は完全には変換されませんでした。 0 $ printf "%d n" 010 8. 10進数として扱うために expr を使う。 オブジェクト'C: foo.cs...

http://satou2008.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR SATOU2008.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Tuesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 2.8 out of 5 with 6 reviews
5 star
0
4 star
1
3 star
4
2 star
0
1 star
1

Hey there! Start your review of satou2008.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.2 seconds

FAVICON PREVIEW

  • satou2008.blogspot.com

    16x16

  • satou2008.blogspot.com

    32x32

  • satou2008.blogspot.com

    64x64

  • satou2008.blogspot.com

    128x128

CONTACTS AT SATOU2008.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
memo | satou2008.blogspot.com Reviews
<META>
DESCRIPTION
DOSバッチファイル: コマンドの出力を変数に格納(代入)する. Echo off for /F USEBACKQ % a in (`date /T`) do ( echo a = % a set foo=% a ) echo a = % a echo foo = %foo% pause. Testbat a = 2009/05/25 a = %a foo = 2009/05/25 続行するには何かキーを押してください . . . Ksh / Korn shell メモ. If [ 0 = 0 ] & [ 1 = 1 ] ; then echo OK else echo NG fi #= OK if [ 0 = 0 ] & [ 1 = 2 ] ; then echo OK else echo NG fi #= NG. Printf %d n 07 7 $ printf %d n 08 printf: 3016-002 08 は完全には変換されませんでした。 0 $ printf %d n 010 8. 10進数として扱うために expr を使う。 オブジェクト'C: foo.cs...
<META>
KEYWORDS
1 skip to main
2 skip to sidebar
3 memo
4 date /t
5 の出力を変数
6 に代入する
7 0 コメント
8 ラベル bat
9 if 複数の条件
10 ユーザに yes/no を選択させる
CONTENT
Page content here
KEYWORDS ON
PAGE
skip to main,skip to sidebar,memo,date /t,の出力を変数,に代入する,0 コメント,ラベル bat,if 複数の条件,ユーザに yes/no を選択させる,先頭に0を付けると8進数扱いになる,処理の開始・終了時刻を処理終了時に表示,引数のチェック,ワンライナー while,整数の演算、桁の整形,コマンドの終了ステータスで処理分岐,ラベル ksh,shell,というエラーが表示され、インポートに失敗する,ラベル office,db2 ロード・ペンディング,正規表現
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

memo | satou2008.blogspot.com Reviews

https://satou2008.blogspot.com

DOSバッチファイル: コマンドの出力を変数に格納(代入)する. Echo off for /F "USEBACKQ" % a in (`date /T`) do ( echo a = % a set foo=% a ) echo a = % a echo foo = %foo% pause. Testbat a = 2009/05/25 a = %a foo = 2009/05/25 続行するには何かキーを押してください . . . Ksh / Korn shell メモ. If [ 0 = 0 ] & [ 1 = 1 ] ; then echo OK else echo NG fi #= OK if [ 0 = 0 ] & [ 1 = 2 ] ; then echo OK else echo NG fi #= NG. Printf "%d n" 07 7 $ printf "%d n" 08 printf: 3016-002 08 は完全には変換されませんでした。 0 $ printf "%d n" 010 8. 10進数として扱うために expr を使う。 オブジェクト'C: foo.cs...

INTERNAL PAGES

satou2008.blogspot.com satou2008.blogspot.com
1

memo: 2008/07

http://satou2008.blogspot.com/2008_07_01_archive.html

端末で smitty を実行 - デバイス - 通信 - イーサネット・アダプター - アダプター - イーサネット・アダプターの特性の変更/表示 と進み、NICを選択し「メディア・スピード」を確認する。 オートネゴシエーションになっている場合は「Auto Negotiation」と表示される。 原始的ですが od コマンドを使うと判別できます。 もっと良い方法がありそうです。 $ od -c <ファイル名> r Carriage return(CR) n New-line character(LF). ボリューム・グループの一覧を表示 lsvg # ボリューム・グループ別に論理ボリュームをすべて一覧表示 lsvg -o lsvg -i -l # PP size を確認する lsvg <VG名> #= PP SIZE # すべてのVGについて表示 lsvg xargs lsvg egrep "(PP SIZE VOLUME GROUP)" # ファイルシステムをすべて一覧表示 lsfs # マウント状況を表示 mount. View -R foo.txt. PS1='[${PWD# */}] $ '.

2

memo: DOSバッチファイル: コマンドの出力を変数に格納(代入)する

http://satou2008.blogspot.com/2009/05/dos-batch-set-command-output-to.html

DOSバッチファイル: コマンドの出力を変数に格納(代入)する. Echo off for /F "USEBACKQ" % a in (`date /T`) do ( echo a = % a set foo=% a ) echo a = % a echo foo = %foo% pause. Testbat a = 2009/05/25 a = %a foo = 2009/05/25 続行するには何かキーを押してください . . . DOSバッチファイル: コマンドの出力を変数に格納(代入)する.

3

memo: DB2: SQL0289N が出た場合のメモ

http://satou2008.blogspot.com/2008/09/db2-sql0289n.html

SQL0289N 表スペース "USERSPACE1" の新規ページを割り振れません。 SQLSTATE=57011. 8594; @IT:DB2のデータベース・オブジェクトと物理設計(1/2). List tablespaces 表スペースID、表スペース名、タイプ(DMS/SMS)、内容、状態(再配置中など)を表示する. 表スペースの詳細 / 表スペースがSMSとDMSのどちらか確認 / コンテナの空き容量を確認. Get health snapshot for tablespaces on <データベース名> show detail コンテナがいっぱいになっていないかなど、異常を見る。 コンテナを表スペースに追加(ファイルの場合) alter tablespace <表スペース名> add ( FILE '<ファイルのパス>' <ページ数> ) コンテナのサイズを変更(ファイルの場合) alter tablespace <表スペース名&#6531...65312;IT:データベースの状態監視とメンテナンス(2/2).

4

memo: 2008/10

http://satou2008.blogspot.com/2008_10_01_archive.html

List tablespace containers for <表スペースID> # 詳細表示 list tablespace containers for <表スペースID> show detail. DB2 UDB V8.1 タイプ2索引<第1.0版2004年3月> p15 http:/ www-06.ibm.com/jp/domino01/mkt/cnpages1.nsf/ec7481a5abd4ed3149256f9400478d7d/4925722f004efd2b49256f700015e882/$FILE/type2index.pdf. GET DB CFG FOR msadb SHOW DETAIL grep -i heap. Db2 get snapshot for database on <データベース名> grep ソート・オーバーフロー ソート・オーバーフロー = 1 → ソート・オーバーフローが起こっている。 参考: ソフトウェア DB2 UDB V8.2.3において、SQLにSQL0901Nエラーが返される問題への対応 (DM-05-034).

5

memo: 2008/11

http://satou2008.blogspot.com/2008_11_01_archive.html

Firebugの「コンソール」タブ右側の「オプション」から 「Chrome のエラーを表示」 にチェックを入れる。 Aa 内の子要素として bb を挿入. 末尾に aa.insertBefore( bb, null ); / 先頭に aa.insertBefore( bb, aa.firstChild );. 基本 str.match( /~/ ); / マッチした場合に処理 if( str.match( /~/ ) ){ / マッチした場合の処理 } / 括弧で参照 str.match( /(.)(.)/ ); foo = RegExp.$1; bar = RegExp.$2;. 関数を作成 var foo = function (){ ; } / イベントに対応付け window.addEventListener( "load", foo, true );. 参考: 第6回 イベントハンドラから脱却しよう:ITpro.

UPGRADE TO PREMIUM TO VIEW 10 MORE

TOTAL PAGES IN THIS WEBSITE

15

OTHER SITES

satou040.skyrock.com satou040.skyrock.com

satou040's blog - Blog de satou040 - Skyrock.com

Slt kikou c va. 23/04/2009 at 1:23 AM. 29/03/2011 at 11:48 AM. Ha les mecs attention a vos coms. Ha les mecs attention au coms. Subscribe to my blog! Ha les mecs attention a vos coms. Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.2) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Tuesday, 29 March 2011 at 11:48 AM. Ha les mecs attention au coms.

satou12.skyrock.com satou12.skyrock.com

Blog de satou12 - Blog de satou12 - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Mise à jour :. Abonne-toi à mon blog! L'auteur de ce blog n'accepte que les commentaires de ses amis. Tu n'es pas identifié. Clique ici pour poster un commentaire en étant identifié avec ton compte Skyrock. Et un lien vers ton blog ainsi que ta photo seront automatiquement ajoutés à ton commentaire. Posté le mercredi 13 juillet 2011 20:57. Poster sur mon blog.

satou185.skyrock.com satou185.skyrock.com

satou185's blog - Blog de satou185 - Skyrock.com

12/01/2009 at 8:39 AM. 25/11/2009 at 4:51 AM. Subscribe to my blog! Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.14) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Wednesday, 25 November 2009 at 4:46 AM. Please enter the sequence of characters in the field below. Posted on Wednesday, 25 November 2009 at 4:44 AM. Post to my blog. Here you are free.

satou2001.com satou2001.com

www.satou2001.com – このドメインはお名前.comで取得されています。

satou2004.deviantart.com satou2004.deviantart.com

Satou2004 ((Chara)) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Traditional Art / Student. Deviant for 1 Year. This deviant's full pageview. Last Visit: 2 weeks ago. This is the place where you can personalize your profile! You can drag and drop to rearrange.

satou2008.blogspot.com satou2008.blogspot.com

memo

DOSバッチファイル: コマンドの出力を変数に格納(代入)する. Echo off for /F "USEBACKQ" % a in (`date /T`) do ( echo a = % a set foo=% a ) echo a = % a echo foo = %foo% pause. Testbat a = 2009/05/25 a = %a foo = 2009/05/25 続行するには何かキーを押してください . . . Ksh / Korn shell メモ. If [ 0 = 0 ] & [ 1 = 1 ] ; then echo OK else echo NG fi #= OK if [ 0 = 0 ] & [ 1 = 2 ] ; then echo OK else echo NG fi #= NG. Printf "%d n" 07 7 $ printf "%d n" 08 printf: 3016-002 08 は完全には変換されませんでした。 0 $ printf "%d n" 010 8. 10進数として扱うために expr を使う。 オブジェクト'C: foo.cs...

satou21sugar.info satou21sugar.info

DOMAIN ERROR

satou220.skyrock.com satou220.skyrock.com

Blog de satou220 - petite puce du 56 - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Petite puce du 56. Saly tou le monde. Mise à jour :. Abonne-toi à mon blog! Sa c mon doudou lol. N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (67.219.144.114) si quelqu'un porte plainte. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Ou poster avec :.

satou25.skyrock.com satou25.skyrock.com

Blog de satou25 - satoudieye - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Mise à jour :. Abonne-toi à mon blog! N'oublie pas que les propos injurieux, racistes, etc. sont interdits par les conditions générales d'utilisation de Skyrock et que tu peux être identifié par ton adresse internet (67.219.144.170) si quelqu'un porte plainte. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Posté le dimanche 31 décembre 2006 15:53. Ou poster avec :. Ou poster avec :.

satou3.biz satou3.biz

www.satou3.biz

Com が 1,150 税抜 ドメイン取得ならリンククラブ - Linkclub Domain Parking.

satou3.com satou3.com

‘S‘‚̍²“¡‚³‚ñ‚É‘¡‚é@‚³‚Æ‚¤‚³‚ñEƒ[ƒ‹ƒlƒbƒg

D È @satou3.com. S Ì u E Æ E T g E Esatou v ñ Ö. Í o Ô 1-14-491. S Ì ñ @ ª ê p Ì [ A h X URL ð Ü ñ H. Ì T [ r X Í A S Ì Ì û Ö A È Ì [ A h X URL ð ñ é T [ r X Å B i à ë ñ A Ì û É À ç A N Å à p Ü I j. Satou R D @. ª Ä Ä A N Ô P, W O O i Z Å150 j. J [3 z [ y [ W ÌURL ]. Æ Ì g Ý í àOK I. ICGI p  A p  E Ä Ì s  j. Z [ y [ W Íhttp:/ satou3.com/. A h X Í @ .satou3.com i à D È j. Satou3 mail Net @. Copyrihut(c) 2001 Satou3 mail Net Service all right reserved.