下载的“10203_vista_w2k8_x86_production_db”安装的,10204_vista_w2k8_x86_production_crs还没有装,从在win7下测试安装上了。。。 将oralce 10G的安装镜像解压都硬盘,找到\stage\prereq\db\ 下的refhost.xml文件添加如下内容: <!--Microsoft Windows 7--> & ......
sql loader使用例子
a)SQLLoader将 Excel 数据导出到 Oracle
1.创建SQL*Loader输入数据所需要的文件,均保存到C:\,用记事本编辑:
控制文件:input.ctl,内容如下:
load data --1、控制文件标识
infile 'test.txt' -- ......
数据库配置文件已经安装到 C:\oracle\product\10.2.0,同时其他选定的安装组件也已经安装到 C:\oracle\product\10.2.0\db_1。iSQL*Plus URL 为:http://localHost:5560/isqlplusiSQL*Plus DBA URL 为:http://localHost:5560/isqlplus/dba
1、 开始->设置- ......
这些都是我个人收藏总结的,方便忘了的时候查找~虽然很简单,但是还是分享一下~
student表:id、name、password、age
1、SELECT 列名称 FROM 表名称
查询student表的所有信息:sql>SELECT * FROM student;
1.1、SELECT 列名称 FROM 表名称 WHER ......
数据库连接串
1、 MySQL:
String Driver="com.mysql.jdbc.Driver"; //驱动程序
//连接的URL,db_name为数据库名
String URL="jdbc:mysql://localhost:3306/db_name";
......