2009年5月25日

Running multiple versions of the Framework in ASP.NET

It is not possible to run two different versions of ASP.NET in the same IIS process. Please use the IIS Administration Tool to reconfigure your server to run the application in a separate process.

http://weblogs.asp.net/owscott/archive/2006/01/26/436607.aspx

2009年5月12日

EXP--解決EXP-00091的方法

對一個DBA或需使用exp,imp的普通用戶來說,在我們做exp的過程中可能經常會遇到EXP-00091 Exporting questionable statistics.這樣的EXP信息,其實它就是exp的error message,它產生的原因是因為我們exp工具所在的環境變量中的NLS_LANG與DB中的NLS_CHARACTERSET不一致。但需說明的 是,exp-91這個error message對所生成的dump檔沒有影響,生成的dump檔還可以正常的imp(個人體會,不知道有沒有錯),雖然它對我們的dump檔沒有影響,我 個人還是不想它出現,大家也有同感吧, 。。下面我們就讓它消失吧。。
step 01 查看DB中的NLS_CHARACTERSET的值(提供兩種方法):


select * from nls_database_parameters t where t.parameter='NLS_CHARACTERSET'
or
select * from v$nls_parameters where parameter='NLS_CHARACTERSET';
SQL> select * from v$nls_parameters where parameter='NLS_CHARACTERSET';

PARAMETER     VALUE
-----------------------  ----------------------------------------------
NLS_CHARACTERSET ZHT16BIG5

step 02 根據step 01查出的NLS_CHARACTERSET(ZHT16BIG5)來設定exp的環境變量:


WINNT> set NLS_LANG=AMERICAN_AMERICA.ZHT16BIG5
LINUX> export NLS_LANG=AMERICAN_AMERICA.ZHT16BIG5

附上exp-91的oracle error message 解決方案說明:

oerr exp 91
00091, 00000, "Exporting questionable statistics."
// *Cause: Export was able export statistics, but the statistics may not be
// usuable. The statistics are questionable because one or more of
// the following happened during export: a row error occurred, client
// character set or NCHARSET does not match with the server, a query
// clause was specified on export, only certain partitions or
// subpartitions were exported, or a fatal error occurred while
// processing a table.
// *Action: To export non-questionable statistics, change the client character
// set or NCHARSET to match the server, export with no query clause,
// export complete tables. If desired, import parameters can be
// supplied so that only non-questionable statistics will be imported,
// and all questionable statistics will be recalculated.

2009年5月7日

Wii USB Loader



3.2J韌體之前的 不用等兩光公主
直接去這邊抓HBC頻道
http://hbc.hackmii.com/download/

日規機就抓這個燒成DVD就可安裝
the_homebrew_channel-beta_8-iso-JAP.tar.gz

這是Wii 主機要用硬碟玩一定要有的邪惡頻道 , 韌體3.2之前的直接灌上面抓下來的即可
不用搞半天的軟改過程......
http://bbs.a9vg.com/read.php?tid=1122635&fpage=1
以上 就是Wii主機 必要的過程

再來 請準備一張SD卡(2GB 以下比較抓得到) , 請在SD卡中新增一個叫 apps 的資料夾
必要抓三個程式,有另一個可有可無的一併說

必要程式1 :cIOS 36 rev 9 , 請在以下網址下載
http://bbs.a9vg.com/read.php?tid=1139946&fpage=1
下載完後,解壓縮到SD卡里的 apps 資料夾中,然後進去cIOS36資料夾改
cIOS36_rev9-Installer.dol更名boot.dol
必要程式2 : USB LOADER 請在以下網址下載 ,我抓1.1版可用 ,請自己挑選喜歡版本
http://bbs.a9vg.com/read.php?tid=1139946&fpage=1
下載完後,解壓縮到SD卡里的 apps 資料夾中,然後進USB-Loader資料夾改
USB-Loader_v1.dol更名boot.dol
必要程式3 :
IOS36-64-v1042
下載完後,解壓縮到放在SD卡中,跟apps資料夾同一層,
例如: SD卡 磁碟代號為 Q , apps的資料夾路徑為 Q:\apps
必要程式3的安裝軟體請放在 Q:\
可有可無程式 :
升級 USB 2.0
下載解壓縮後,一樣放在 apps 的資料夾中

以上就完成SD卡準備工作.....

安裝SD卡軟體時 , 請先進入HBC頻道
HBC頻道會自動偵測 SD卡 , 安裝畫面如網址中所顯示
http://bbs.a9vg.com/read.php?tid=1139946&fpage=1

個人先安裝 cIOS的軟體, 安裝時會一併安裝IOS36-64-v1042
但是要選擇 如圖


以上裝好,就完成 Wii主機上 所需軟體安裝了
升級USB 2.0的程式 個人有安裝, 請自己斟酌要不要安裝

USB Loader 是抓外接硬碟的玩遊戲使用時 啟動的程式

如何得知 Oracle Database 的語系

可以利用下面 SQL 語法, 得知 Oracle Database 的語系 (不是 NLS_LANG 的設定)

select value
from NLS_DATABASE_PARAMETERS
where parameter='NLS_CHARACTERSET';

追蹤者