1、如何批量匯出建表語句?
通過選單選擇[Tools]–》[Export User Objects...],在開啟的視窗中選擇準備匯出的表即可。
通過此種方式匯出的sql指令碼中不會有insert語句,也就是表中的資料不會被同時匯出,只有DDL語句。
2、如何匯出初始化資料?
通過選單選擇[Tools]–》[Export Tables...],在開啟的視窗中選擇準備匯出的表,同時將選項[Delete records]選項取消選中,然後匯出指令碼即可。
3、顯示所有查詢資料
Tools-->Preference-->Window Types-->SQL Window-->Records Per Page
4.檢視oracle版本
select banner from sys.v_$version
5.自動登入
PL/SQL Developer->工具->首選項->Oracle->登陸歷史 固定使用者填入資訊即可,例如:
huilan231/123456@127.0.0.1/ORCL
6、美化SQL
選中需要格式化的SQL語句,然後點選工具欄的PL/SQL beautifier按鈕即可
7、檢視執行計劃
選中需要分析的SQL語句,然後點選工具欄的Explain plan按鈕(即執行計劃),或者直接按F5即可。
8、快捷鍵設定
開啟Tools->Preferences->User Interface->Key Configuration,設定快捷鍵如下:
File/New/SQL Window Shift+S
File/New/Command Windows Shift+A
File/Close F4
Edit/ExcelPaste Shift+E
Edit/Selection/Uppercase Shift+U
Edit/Selection/Lowercase Shift+L
Edit/Selection/Comment Shift+C
Edit/Selection/Uncomment Shift+V
Tools/Window List Shift+W
9. 執行單條SQL語句
在使用PL/SQL Developer的SQL Window時,按F8鍵,PL/SQL Developer預設是執行該視窗的所有SQL語句,需要設定為滑鼠所在的那條SQL語句,即執行當前SQL語句;
設定方法:PL/SQL Developer -->tools->Preferences-->Window types-->SQL Windows ,勾上“AutoSelect Statement” 即可。(自動選擇語句)
10、匯入excel資料
Tools-->ODBC Importer-->
PL/SQL的功能設定:
Tools -> perferences -> UserInterface -> Connection(Excel Files)-->Connect(選擇一個xls)-->Data From ODBC 選擇一個Import table-->選擇上面的
Data to Oracle(選擇Owner(登陸資料庫)和Table)
-> key Configuration
File/new/sql window Ctrl+n
File/pl/sqlBeautiful Ctrl+d
File/open/sql script Ctrl+w
-> Code Assistant
Mininute charts: 1 輸入1個字元就會出現提示。
Tools -> Window List 是看當前pl/sql工具開啟了哪些sql列表。如下設定 以後都不用每次去勾選 Window List 了。
預設情況下Window List視窗是不顯示的,這十分不方便
1.開啟 PL/SQL 工具:
Tools -> Preference -> User Interface -> Option
勾選 Autosave desktop ,點 apply 應用
2.點 Tools -> 打勾 Window List
3.關閉 PL/SQL 工具,重新開啟 PL/SQL 工具。就會看到 Window List 視窗自動開啟嘍。
4.window List 視窗關閉:Tools -> Preference
-> key Configuration -> File Close (只關閉當前windowList視窗)
-> File Close All (關閉所有的windowList視窗)
F8 是執行查詢
登入後預設自動選中My Objects
預設情況下,PLSQL 登入後,Brower裡會選擇All objects,如果你登入的使用者是dba,要展開tables目錄,正常情況都需要Wait幾秒鐘,而選擇My Objects後響應速率則是以毫秒計算的。
設定方法:
Tools選單 --> Brower Filters,會開啟Brower Folders的定單視窗,把“My Objects”設為預設即可。
Tools選單--Brower Folders,中把你經常點的幾個目錄(比如:Tables Views Functions Procedures Packages Job)移得靠上一點,並加上顏色
tns的檢視:安裝盤:\oracle\product\10.2.0\client_1\NETWORK\ADMIN\tnsnames.ora
oracle匯出匯入表檢視和資料等:
1.Tools -> Export UserObjects -> 選中你要匯出的表和檢視。是.sql檔案。
2.Tools -> Export Tables -> Dutput File(選擇路徑)。 是.dmp檔案
3匯入資料時。先執行sql檔案。
File -> New -> Command Window ->把.sql檔案copy到這裡就可以了。
這個操作是把表結構,檢視等都先建好了。接下來匯入資料。
Tools -> Import Tables (選擇路徑).dmp檔案
dos匯出資料庫中所有表,檢視,儲存過程,包:
http://www.cnblogs.com/emmy/archive/2010/12/29/1920483.html