さっき、友人からカラーレーザプリンタCX3000が要らないかという電話がありました。
回答期限は1週間。どうしようかな。
2008年3月1日土曜日
休み中に会社から電話
昨日、会社から電話がありました。
Webアプリの一部機能が動かないとのこと。あいにくわかる人が前日の徹夜作業のため出社
しておらず、家にかかってきてしまいました。
間接的にしか絡んでいない人にお願いして、客先からのログを見て、原因を教えてもらい、
自宅から客先に直接電話。
原因は外部サーバだったので、出社することはなかってよかった。
この電話のやり取りで、携帯代860円。
今月は1ヵ月の無料通話料内をオーバーしてしまいました。
Webアプリの一部機能が動かないとのこと。あいにくわかる人が前日の徹夜作業のため出社
しておらず、家にかかってきてしまいました。
間接的にしか絡んでいない人にお願いして、客先からのログを見て、原因を教えてもらい、
自宅から客先に直接電話。
原因は外部サーバだったので、出社することはなかってよかった。
この電話のやり取りで、携帯代860円。
今月は1ヵ月の無料通話料内をオーバーしてしまいました。
2008年2月29日金曜日
2008年2月28日木曜日
2008年2月27日水曜日
昨日、会社で貰ったシステム手帳
会社で年1回開かれるコンクールの参加賞が、かさばるシステム手帳。
去年は1度も使うことなく親に渡した書見台でした。
コンクール事務局の参加賞の選考基準に悪意を感じます。
図書カード1000円の方がすごくうれしいのに。
去年は1度も使うことなく親に渡した書見台でした。
コンクール事務局の参加賞の選考基準に悪意を感じます。
図書カード1000円の方がすごくうれしいのに。
今日から3月2日まで休み
仕事の切れ間に土日をからめて5連休。今年度末で期限切れになる年休が10日以上残っているが、今年はいっぱい休んだ方。
でも突然とれた休みなので2月28日に、ITのセミナーを受講して、そのあと献血という予定しかない。
1人でスキー場に行って滑る、っていうのも行く気がしないし、映画館もここ数年いっていないので行く気がしないし、漫画喫茶も前みたいに腰痛になるのが嫌だし、、、結局いつもの週末ようにひきこもっていそうです。
でも突然とれた休みなので2月28日に、ITのセミナーを受講して、そのあと献血という予定しかない。
1人でスキー場に行って滑る、っていうのも行く気がしないし、映画館もここ数年いっていないので行く気がしないし、漫画喫茶も前みたいに腰痛になるのが嫌だし、、、結局いつもの週末ようにひきこもっていそうです。
2008年2月24日日曜日
dbリバースエンジニアリング
ER図は、visioでできるっぽい。
http://www.atmarkit.co.jp/fdotnet/visiouml/visiouml03/visiouml03_04.html
http://blogs.wankuma.com/naka/archive/2004/06/11/3094.aspx
http://beausoir.blog100.fc2.com/blog-entry-31.html
http://www3.ezbbs.net/cgi/bbs?id=visio&dd=02&p=7
テーブル定義は、なかなかよさそうなものがなさそうなので、sqlを作ってみる。
select obj.name
,isnull((select ex.value from sys.extended_properties as ex where col.object_id = ex.major_id and ex.minor_id = 0 and ex.name = 'MS_Description' ),'') as '表コメント'
,isnull((select '○' from sys.indexes ii inner join sys.index_columns iic on ii.object_id=iic.object_id and ii.index_id=iic.index_id where ii.is_primary_key=1 and ii.object_id = obj.object_id and iic.column_id = Col.column_id),'') as PK
,case Col.is_nullable
when 1 then '○'
else ''
end 'NULL'
,Col.name as '列名'
,(Select name From sys.types Where sys.types.user_type_id = Col.user_type_id) as '型'
,case Col.max_length
when -1 then 'max'
else cast(Col.max_length as char(4))
end '列内最大長'
,case isnull(Col.scale,0)
when 0 then ' '
else cast( Col.scale as char(10) )
end '小数部'
,isnull((select definition from sys.default_constraints where object_id = Col.default_object_id),'') as 'デフォルト'
,isnull((select ex.value from sys.extended_properties as ex where col.object_id = ex.major_id and ex.minor_id = col.column_id and ex.name = 'MS_Description' ),'') as '列コメント'
From sys.columns as Col
inner join sys.objects as obj on Col.object_id = obj.object_id
Where obj.type='U' and obj.name <> 'sysdiagrams'
order by obj.name asc,col.column_id asc
こんな感じでいいかなぁ?
http://www.atmarkit.co.jp/fdotnet/visiouml/visiouml03/visiouml03_04.html
http://blogs.wankuma.com/naka/archive/2004/06/11/3094.aspx
http://beausoir.blog100.fc2.com/blog-entry-31.html
http://www3.ezbbs.net/cgi/bbs?id=visio&dd=02&p=7
テーブル定義は、なかなかよさそうなものがなさそうなので、sqlを作ってみる。
select obj.name
,isnull((select ex.value from sys.extended_properties as ex where col.object_id = ex.major_id and ex.minor_id = 0 and ex.name = 'MS_Description' ),'') as '表コメント'
,isnull((select '○' from sys.indexes ii inner join sys.index_columns iic on ii.object_id=iic.object_id and ii.index_id=iic.index_id where ii.is_primary_key=1 and ii.object_id = obj.object_id and iic.column_id = Col.column_id),'') as PK
,case Col.is_nullable
when 1 then '○'
else ''
end 'NULL'
,Col.name as '列名'
,(Select name From sys.types Where sys.types.user_type_id = Col.user_type_id) as '型'
,case Col.max_length
when -1 then 'max'
else cast(Col.max_length as char(4))
end '列内最大長'
,case isnull(Col.scale,0)
when 0 then ' '
else cast( Col.scale as char(10) )
end '小数部'
,isnull((select definition from sys.default_constraints where object_id = Col.default_object_id),'') as 'デフォルト'
,isnull((select ex.value from sys.extended_properties as ex where col.object_id = ex.major_id and ex.minor_id = col.column_id and ex.name = 'MS_Description' ),'') as '列コメント'
From sys.columns as Col
inner join sys.objects as obj on Col.object_id = obj.object_id
Where obj.type='U' and obj.name <> 'sysdiagrams'
order by obj.name asc,col.column_id asc
こんな感じでいいかなぁ?
登録:
投稿 (Atom)