博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Some configure
阅读量:4637 次
发布时间:2019-06-09

本文共 1412 字,大约阅读时间需要 4 分钟。

set oralcexe sa password

orapwd file=PWDXE.ora password=iris entries=10

install sql 2008 ee version, need pwer shell in win2008 sp2

down load power shell :http://www.microsoft.com/en-us/download/details.aspx?id=20430

options(errors=1000)

load data
infile "C:\Users\zhchu\Documents\dbo_einfotable.txt"
replace into table EINFOTABLE
fields terminated by ","
(
eid  Integer External,
edate Date "mm/dd/yyyy hh24:mi:ss",
ddate Date "mm/dd/yyyy hh24:mi:ss",
eprice ,
Eprice2 ,
Eprice3 ,
Eprice4 ,
Eprice5 ,
phoneNum,
ename,
mark
)

sqlldr control=D:\SybaseTest\oraclexeload.ctl log=D:\SybaseTest\data_load.log

CREATE TABLE einfotable(
eid  int NOT NULL PRIMARY KEY ,
edate  datetime not null,
ddate  datetime not null,
eprice money not null,
eprice2 money not null,
eprice3 money not null,
eprice4 money not null,
eprice5 money not null,
phoneNum  varchar(20)  not null,
ename  varchar(20)  not null,
mark   varchar(30)  not null
);

insert into einfotable select * from dbo_einfotable;

select COUNT(1) from einfotable;

cd /d c:\windows

Activation context generation failed for "D:\Sybase\ASE-15_0\bin\syconfig.exe". Dependent Assembly Microsoft.VC80.CRT,processorArchitecture="amd64",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053" could not be found. Please use sxstrace.exe for detailed diagnosis.

download(vcredist_x64.exe) and install

转载于:https://www.cnblogs.com/cquccy/archive/2012/05/23/2514743.html

你可能感兴趣的文章
web渗透测试基本步骤
查看>>
使用Struts2标签遍历集合
查看>>
angular.isUndefined()
查看>>
第一次软件工程作业(改进版)
查看>>
WPF的图片操作效果(一):RenderTransform
查看>>
网络流24题-飞行员配对方案问题
查看>>
Jenkins 2.16.3默认没有Launch agent via Java Web Start,如何配置使用
查看>>
引入css的四种方式
查看>>
iOS开发UI篇—transframe属性(形变)
查看>>
3月7日 ArrayList集合
查看>>
jsp 环境配置记录
查看>>
Python03
查看>>
LOJ 2537 「PKUWC2018」Minimax
查看>>
使用java中replaceAll方法替换字符串中的反斜杠
查看>>
Android初学第36天
查看>>
Some configure
查看>>
json_encode时中文编码转正常状态
查看>>
流量调整和限流技术 【转载】
查看>>
Axure 全局辅助线(转)
查看>>
正由另一进程使用,因此该进程无法访问此文件。
查看>>