說明
Weka是學習Data Mining人們的好伙伴。而我們常常對它有一些特別的要求。
例如。
能不能從MS SQL SERVER撈資料呢?
答案當然是「可以」,只是撈了之後,會不會分析是另外一回事。
今天,我就來介紹如何讓Weka利用ODBC從MS SQL SERVER 2008撈資料。
設定方式
1. 首先請參考這一篇「Java - 安裝Microsoft JDBC Driver for SQL Server」,將JDBC安裝至Windows上。
2. 在Weka的安裝目錄中,找到名為「Runweka.ini」的檔案,並用記事本軟體開啟。
可看到如下內容 (請注意到最後一行,就是我們要修改的部份,也就是「cp」,代表ClassPath)
1: # Contains the commands for running Weka either with a command prompt
2:
3: # ("cmd_console") or without the command prompt ("cmd_default").
4:
5: # One can also define custom commands, which can be used with the Weka
6:
7: # launcher "RunWeka.class". E.g., to run the launcher with a setup called
8:
9: # "custom1", you only need to specify a key "cmd_custom1" which contains the
10:
11: # command specification.
12:
13: #
14:
15: # Notes:
16:
17: # - This file is not a DOS ini file, but a Java properties file.
18:
19: # - The settings listed here are key-value pairs, separated by a "=". Every
20:
21: # key can only be listed ONCE.
22:
23: #
24:
25: # Author FracPete (fracpete at waikato dot ac dot nz)
26:
27: # Version $Revision: 1.3 $
28:
29: # setups (prefixed with "cmd_")
30:
31: cmd_default=javaw -Dfile.encoding=#fileEncoding# -Xmx#maxheap# -classpath "#wekajar#;#cp#" #mainclass#
32:
33: cmd_console=cmd.exe /K start cmd.exe /K "java -Dfile.encoding=#fileEncoding# -Xmx#maxheap# -classpath \"#wekajar#;#cp#\" #mainclass#"
34:
35: cmd_explorer=javaw -Dfile.encoding=#fileEncoding# -Xmx#maxheap# -classpath "#wekajar#;#cp#" weka.gui.explorer.Explorer
36:
37: cmd_knowledgeFlow=java -Dfile.encoding=#fileEncoding# -Xmx#maxheap# -classpath "#wekajar#;#cp#" weka.gui.beans.KnowledgeFlow
38:
39: # placeholders ("#bla#" in command gets replaced with content of key "bla")
40:
41: # Note: "#wekajar#" gets replaced by the launcher class, since that jar gets
42:
43: # provided as parameter
44:
45: maxheap=1024m
46:
47: # The MDI GUI
48:
49: #mainclass=weka.gui.Main
50:
51: # The GUIChooser
52:
53: mainclass=weka.gui.GUIChooser
54:
55: # The file encoding; use "utf-8" instead of "Cp1252" to display UTF-8 characters in the
56:
57: # GUI, e.g., the Explorer
58:
59: fileEncoding=Cp1252
60:
61: # The classpath placeholder. Add any environment variables or jars to it that
62:
63: # you need for your Weka environment.
64:
65: # Example with an enviroment variable (e.g., THIRD_PARTY_LIBS):
66:
67: # cp=%CLASSPATH%;%THIRD_PARTY_LIBS%
68:
69: # Example with an extra jar (located at D:\libraries\libsvm.jar):
70:
71: # cp=%CLASSPATH%;D:\\\\libraries\\\\libsvm.jar
72:
73: # Or in order to avoid quadrupled backslashes, you can also use slashes "/":
74:
75: # cp=%CLASSPATH%;D:/libraries/libsvm.jar
76:
77: cp=%CLASSPATH
3. 在最後一行的後方加入如下JDBC的路徑「D:/SW/jdbc/sqljdbc_4.0/cht/sqljdbc4.jar」。
請注意,要記得在加入路徑之前,加入一個「;」,作為分隔之用。
這邊我指定的是sqljdbc4.jar,這是JDBC 4.0版,可支援到SQL SERVER 2012
cp=%CLASSPATH%;D:/SW/jdbc/sqljdbc_4.0/cht/sqljdbc4.jar |
4. 開啟「控制台」,在搜尋框中輸入「ODBC」。會出現「設定資料來源 (ODBC)」,開啟它。
5. 點選[新增],以便增加使用者資料來源。
6. 選擇「SQL Server Native Client 10.0」 (SQL 2008 R2)。
7. 輸入DSN名稱,以及SQL Server名稱。
8. 輸入登入SQL Server所需的帳號資訊。
9. 選擇登入後使用的資料庫。
10. 點選「完成」。
11. 點選「Test Data Source...」,若成功即為設定完成。
12. 進入Weka的安裝目錄,將weka.jar (為一ZIP壓縮檔)中的「weka.jar\weka\experiment\DatabaseUtils.props.odbc」解壓縮,並放至到Weka的安裝目錄,更名為「DatabaseUtils.props」。
13. 更改「DatabsaeUtils.props」中的設定如下: (第二行中的dbname,則要改成剛剛設定的使用者資料來源名稱,也就是DSN)
jdbcDriver=sun.jdbc.odbc.JdbcOdbcDriver jdbcURL=jdbc:odbc:dbname |
14. 啟動Weka,進入Explorer。選擇「Open DB...」
15. 連結字串的部份,應該會顯示第13步驟輸入的「jdbc:odbc:dbname」。
這邊我輸入的是自己的資料庫連結「jdbc:sqlserve://localhost;instanceName=db1;databaseName=MLB;Persist Security Info=True;」 (不適用ODBC)
16. 再按下「User...」,輸入認證用的帳號及密碼。
17. 按下[Connect]之後,就可以在Query中輸入T-SQL來擷取資料了。
18. 大功告成。
參考
Java - 安裝Microsoft JDBC Driver for SQL Server
[Wekalist] Sybase: java.sql.SQLException: No suitable driver
Opening Windows Databases in Weka (Outdated)
沒有留言:
張貼留言