1. 程式人生 > >Oracle 相關知識

Oracle 相關知識

用戶 acl blank navi 下載地址 create target -1 user

一.Navicat 連接Oracle 報錯:

技術分享

解決辦法:

1.先下載oracle客戶端,win64_11gR2_client.zip,下載地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html

2.下載之後打開navicat,選擇工具->選項->其他->OCI 的OCI Library(oci.dll)*:選擇指定的路徑:C:\app\test\product\11.2.0\client_1\oci.dll。如圖:

技術分享

技術分享

二、oracle安裝之後,創建用戶名和權限

create user 用戶名 identified by "密碼";  
授權:grant create session to 用戶名;  
            grant create table to  用戶名;  
            grant create tablespace to  用戶名;  
            grant create view to  用戶名;

Oracle 相關知識