主要是web管理資料的的埠8080埠的問題,
會和tomcat衝突
安裝時把開啟8080埠的tomcat啟動了 占用8080埠就行了,
然後安裝oracle xe就會讓你輸入 web管理資料的的埠.
不要中文路徑不要中文路徑不要中文路徑不要中文路徑不要中文路徑不要中文路徑不要中文路徑不要中文路徑
64位 key_xe.reg
windows registry editor version 5.00不想改了 就這麼亂吧[hkey_local_machine\software\oracle\key_xe]
"oracle_home_name"="xe"
"version"="11.2"
"oracle_home_key"="software\\oracle\\key_xe"
"oracle_sid"="xe"
"oramts_cp_trace_level"="0"
"stmtcachesize"="0"
"nls_lang"="%nls_lang%"
"statementcachesize"="0"
[hkey_local_machine\software\oracle\key_xe\ode]
".netframework"=""
"tracelevel"="0"
"tracefilename"="c:\\ode.trc"
"traceoption"="0"
[hkey_local_machine\software\oracle\key_xe\oledb]
"stmtcachesize"="0"
"disableretclause"="1"
"tracefilename"="c:\\oraoledb.trc"
"enablecmdtimeout"="0"
"chunksize"="100"
"tracecategory"="0"
"metadatacachesize"="0"
"plsqlrset"="0"
"dbnotifications"="0"
"userdeffn"="0"
"fetchsize"="100"
"osauthent"="0"
"distribtx"="1"
"tracelevel"="0"
"cachetype"="memory"
"schrstlng"="10000"
"traceoption"="0"
"vcharnull"="1"
"deferupdchk"="0"
"pwdchgdlg"="1"
"spprmdefval"="0"
[hkey_local_machine\software\oracle\odp.net]
[hkey_local_machine\software\oracle\odp.net\2.112.2.0]
"tracefilename"="c:\\odpnet2.trc"
"traceoption"="0"
"promotabletransaction"="promotable"
"statementcachewithudts"="1"
"demandoraclepermission"="0"
"tracelevel"="0"
"udtcachesize"="4096"
"performancecounters"="0"
"maxstatementcachesize"="100"
"selftuning"="1"
[hkey_local_machine\software\oracle\odp.net\4.112.2.0]
"udtcachesize"="4096"
"selftuning"="1"
"traceoption"="0"
"maxstatementcachesize"="100"
"promotabletransaction"="promotable"
"demandoraclepermission"="0"
"tracefilename"="c:\\odpnet4.trc"
"tracelevel"="0"
"performancecounters"="0"
"statementcachewithudts"="1"
[hkey_local_machine\software\odbc]
[hkey_local_machine\software\odbc\odbcinst.ini]
[hkey_local_machine\software\odbc\odbcinst.ini\oracle in xe]
"connectionfunctions"="yyy"
"driverodbcver"="03.51"
"cptimeout"="60"
"fileusage"="0"
"apilevel"="1"
"sqllevel"="1"
[hkey_local_machine\software\odbc\odbcinst.ini\odbc drivers]
"oracle in xe"="installed"
其他看手冊.
也可以安裝好後修改埠的.
Java BigDecimal 一些注意點
float和double型別的主要設計目標是為了科學計算和工程計算。他們執行二進位制浮點運算,這是為了在廣域數值範圍上提供較為精確的快速近似計算而精心設計的。然而,它們沒有提供完全精確的結果,所以不應該被用於要求精確結果的場合。但是,商業計算往往要求結果精確,這時候就要使用bigdecimal啦。b...
指標的一些注意點
指標是c語言最強大,最複雜的特性。在使用的時候一定要注意。1 在使用指標前 指對指標進行解引用 一定要對指標進行初始化。否則會發生段違例錯誤。如 int a a 12 從語言層面看,好似並沒有錯誤,但是a指標並沒有被初始化,從而無法找到該變數到底指向的是哪個位址,將12賦值給乙個未知位址會引發段違例...
Pyhton 的一些注意點
列表的運用 列表的一些運用 1 s list input 請輸入乙個字串 這樣就可以直接讀到s列表中了.pyhton日常注意點 1 讀資料只能換行讀,否則會把一行資料都當成乙個資料來讀.2 你寫的這些for,if,while,等函式都記得打分號 3 迴圈.for i in range 0,n i 從...