2010年1月31日 星期日

讀卡機在windows 7不能使用

在裝置管理員有出現黃色驚嘆號

解決方式 按電腦右鍵->內容->裝置管理員
































































參考資料:http://briian.com/?p=6478


2010年1月29日 星期五

update statistics

update statistics會吃大量的I/O,但不會造成 table lock。
update statistics會重新統計索引的統計資料
在大量delete後,應該需要執行update statistics

ex:
use test_DB
go 


update statistics test_Table
go

2010年1月28日 星期四

sftp -- 上傳和下載

sftp testname@123.11.11.11

put vw*  --會把vw開頭的所有檔案上傳到123.11.11.11主機的/home/testname下

get vw* --會把vw開頭的所有檔案下載到目前的目錄下

參考資料:http://linux.vbird.org/linux_server/0310telnetssh.php#ssh_client_sftp

2010年1月27日 星期三

bcp語法

bcp db..table out 路徑 -S主機名稱 -U使用者 -P密碼 -t分欄符號 -r分行符號 -c -Jbig5(語言) (後面為固定)=>把db的資料bcp出來到路徑
bcp db..table in 路徑 -S主機名稱 -U使用者 -P密碼 -t分欄符號 -r分行符號 -c -Jbig5(語言) (後面為固定)=>把路徑的資料bcp到db


bcp testDB..testTable out /sybase/ddata.data -Stos -Utestuser -Ptestpass -t'<>' -r'||' -c -Jbig5
bcp testDB..testTable in /sybase/ddata.data -Stos -Utestuser -Ptestpass -t'<>' -r'||' -c -Jbig5

2010年1月19日 星期二

搜尋字串-grep

--找出有pc字串的句字
cat testabc.txt | grep 'pc'

--找出不含pc字串的句字
cat testabc.txt | grep -v 'pc'

--顯示出行數
cat testabc.txt | grep -n 'pc:'

複製檔案或資料夾

//複製檔案
cp 來源檔 目的檔


EX:把test20100119.gz copy 一份,檔名是0119
cp test20100119.gz 0119



//複製目錄
cp -r  來源檔 目的檔

EX:把test資料夾copy 一份,檔名是0119
cp -r test  test_test



參考資料:http://linux.vbird.org/linux_basic/0220filemanager.php

2010年1月14日 星期四

像樹狀的清單

若要做個樹狀的清單,以下面的excel為例,要在第一個欄位選B時,第二個欄位只能出現B1-B8的選單,做法如下:


第二階之後的名稱需為第一階的值





定義名稱


  1. 開啟Excel
  2. 插入->名稱->定義



2010年1月13日 星期三

修改密碼

修改XX帳號的密碼
passwd XX

EX:
[ test~]$ passwd XX

Changing password for user XX.
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.


修改自已的密碼
用帳號登入後,打passwd為修改自已的密碼
先輸入舊密碼,再輸入兩次新密碼即可

EX:
[ test~]$ passwd
Changing password for user testroot.
Changing password for testroot
(current) UNIX password:
New UNIX password:
Retype new UNIX password:
passwd: all authentication tokens updated successfully.
[test ~]$

參考資料:http://linux.vbird.org/linux_basic/0410accountmanager.php#passwd