首页 > 代码库 > Oracle 相关知识

Oracle 相关知识

一.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 相关知识