我正在尝试将3,000条记录上传到Teradata表格,我收到以下错误:
在记录1处读取导入文件时出错:索引和长度必须参考 字符串中的位置
我使用txt文件导入数据并使用以下代码加载它:
navigator.geolocation.getCurrentPosition(position => {
console.log(position);
// in your case
this.location = position.coords;
});
文本文件看起来像这样
-- Create Table
CT mytable
( col1 VARBYTE (35))
-- Insert data
INSERT INTO mytable VALUES(?)