求教长文本录入# Database - 数据库g*p2099-11-04 08:111 楼我需要在ORACLE数据库表中的一个字段中录入长文本,而且每条长文本还带有回车,我的原始数据在一个文本文件中,数量很大,不知道有什么方法可以实现。字段长度肯定够。怎么办啊!救救
B*n2099-11-04 08:112 楼1. use sql loader and put the file name in the control file.or2. use dbms_lob.loadfromfile to load a text file into say aclob.【在 g***p 的大作中提到】: 我需要在ORACLE数据库表中的一个字段中录入长文本,: 而且每条长文本还带有回车,我的原始数据在一个文本文件中,: 数量很大,不知道有什么方法可以实现。: 字段长度肯定够。: 怎么办啊!救救
g*p2099-11-04 08:113 楼那个dbms_log.loadfromfile是在procedure中使用的吗?没有用过,文字中有回车可以可以吗?【在 B*****n 的大作中提到】: 1. use sql loader and put the file name in the control file.: or: 2. use dbms_lob.loadfromfile to load a text file into say a: clob.