- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在一家公司工作,我有一个项目是根据我公司生产的产品创建一个网络应用程序。
有一个内部服务器,其中包含我公司的所有数据。我要做的是解析 oracle 服务器正在检索的数据。它正在检索 .lst 文件,这些文件可以使用 Excel 或某些 php 包轻松转换为 .csv。
我使用 LOAD DATA INFILE 命令成功地将 Clients 表导入到我的 MySQL 数据库中。但是当我想解析 Articles 表时遇到了一些问题。
列/值不一定用分号分隔。要解析数据,我必须举例说明:
等等……
有没有一种方法可以在使用 LOAD DATA INFILE 命令时实现此目的,或者我应该使用 PHP 正确格式化文件然后使用此命令,如果可以,最好的方法是什么?
谢谢大家,我希望我说清楚了,因为英语不是我的主要语言。 :P
编辑:那些是行。
51016 51016 BOITE ORANGINA 33cls CASHS "24" 040430024000330 0000000000 1 01000000550009000 000000NNNNNN caisse 0000003750000000000001230
51019 51019 BOITE OASIS ORANGE CASHS "24" 33cl 040430024000330 0000000000 1 01000000550009000 000000NNNNNN caisse 0000003670000000000001230
第一行解析正确,而第二行解析错误。24 之后的双引号被放入下一列。我只是想知道是否可以对此做些什么,比如删除双引号。
以前的开发人员创建了一个应用程序来管理公司的文章和客户。不幸的是,他不能再帮助我了,但这里有一条描述争吵的线索。
import_a;Code_article;6;designation;35;designation2;35;Code_famille;2;Code_sousfamille;4;unite_condition;3;contenance;6/1000;Champ_vide;2;degre;4/10;champ_vide_6;6;Code_emballage;4;Champ_vide2;8;validite;1;Champ_vide3;7;code_tva;2;taux_tva;9/100;poids;6/1000;champ_vide4;19;montant_droits;6/1000;valide;1;rupture;1;edit_tarif;1;pre_commande;1;gratuit_autorise;1;trans_port;1;Champ_libre;1;caisse;15;prix_revient;9/100;stock;6/1;Champ_vide5;5;code_fournisseur;11/1
import_a => 这是你可以忽略的文件名。
然后您得到列的名称,后跟字符数。例如Code_articles由6个字符组成等等。
您也可以忽略开头重复的 ID Key。 但总共应该有 31 列。
最佳答案
您可以使用此 perl 脚本开始测试。最重要的是根据你的真实数据调整 $def 行,直到你得到正确的结果。
#!/usr/bin/perl
$input_file = "/tmp/a.lst";
$output_file = "/tmp/a.csv";
$testing = 1; #testing, print out directly first 100 lines
# we are using tab (#9) for the output csv file
$delim ="\t";
# output column header
$output_header = 1;
$defs= "import_a;Code_article;6;Code_article2;6;designation;29;designation2;35;Code_famille;2;Code_sousfamille;4;unite_condition;3;contenance;6/1000;Champ_vide;2;degre;4/10;champ_vide_6;6;Code_emballage;4;Champ_vide2;8;validite;1;Champ_vide3;7;code_tva;2;taux_tva;9/100;poids;6/1000;champ_vide4;19;montant_droits;6/1000;valide;1;rupture;1;edit_tarif;1;pre_commande;1;gratuit_autorise;1;trans_port;1;Champ_libre;1;caisse;15;prix_revient;9/100;stock;6/1;Champ_vide5;5;code_fournisseur;11/1";
my @input_fields, @input_fieldwidths, @input_fieldwidth_max, $input_field_no =0;
@defs= split(";",$defs);
$total_defs=$#defs;
$total_cols = 0;
$total_width = 0;
for($x=0; $x<$total_defs /2; $x++)
{
push(@input_fields, $defs[$x*2+1]);
$width = $defs[$x*2+2];
if($width=~/(.*)\/(.*)/){
$mw= $1;
$xw= $2;
}
else{
$mw = $width;
$xw= 0;
}
$total_width += $mw;
push(@input_field_widths,$mw);
push(@input_field_widths_max, $xw);
$total_cols ++;
}
if($testing){
for($x=1; $x<$total_cols; $x++)
{
print "$input_fields[$x]: $input_field_widths[$x]\n";
}
}
open(INPUT, $input_file) || die "Can not open input file";
open(OUTPUT, ">$output_file" ) || die "Can not open output file";
# this is the csv head
if($output_header){
print OUTPUT "$input_fields[0]";
for($x=1; $x<$total_cols; $x++)
{
print OUTPUT "\t$input_fields[$x]";
}
print OUTPUT "\n";
}
$lines=0;
foreach $l (<INPUT>)
{
chop($l);
$pos =0;
for($f=0; $f < $total_cols; $f++)
{
$val = substr($l, $pos, $input_field_widths[$f]);
print OUTPUT $delim if($pos);
print $delim if($pos && $testing);
print OUTPUT $val;
print $val if($testing);
$pos += $input_field_widths[$f];
}
print OUTPUT "\n";
print "\n" if($testing);
$lines++;
if($testing && $lines>100) { last;};
}
print $lines , " lines transformed\n";
close(INPUT);
close(OUTPUT);
编辑:对于逗号分隔的引用 csv 格式:
#!/usr/bin/perl
$input_file = "/tmp/a.lst";
$output_file = "/tmp/a.csv";
# we are using tab (#9) for the output csv file
$delim =";";
$testing = 1; #testing, print out directly first 10 lines
$quote ="'";
# output column header
$output_header = 1;
$defs= "import_a;Code_article;6;Code_article2;6;designation;29;designation2;35;Code_famille;2;Code_sousfamille;4;unite_condition;3;contenance;6/1000;Champ_vide;2;degre;4/10;champ_vide_6;6;Code_emballage;4;Champ_vide2;8;validite;1;Champ_vide3;7;code_tva;2;taux_tva;9/100;poids;6/1000;champ_vide4;19;montant_droits;6/1000;valide;1;rupture;1;edit_tarif;1;pre_commande;1;gratuit_autorise;1;trans_port;1;Champ_libre;1;caisse;15;prix_revient;9/100;stock;6/1;Champ_vide5;5;code_fournisseur;11/1";
my @input_fields, @input_fieldwidths, @input_fieldwidth_max, $input_field_no =0;
@defs= split(";",$defs);
$total_defs=$#defs;
$total_cols = 0;
$total_width = 0;
for($x=0; $x<$total_defs /2; $x++)
{
push(@input_fields, $defs[$x*2+1]);
$width = $defs[$x*2+2];
if($width=~/(.*)\/(.*)/){
$mw= $1;
$xw= $2;
}
else{
$mw = $width;
$xw= 0;
}
$total_width += $mw;
push(@input_field_widths,$mw);
push(@input_field_widths_max, $xw);
$total_cols ++;
}
if($testing){
for($x=0; $x<$total_cols; $x++)
{
print "$input_fields[$x]: $input_field_widths[$x]\n";
}
}
open(INPUT, $input_file) || die "Can not open input file";
open(OUTPUT, ">$output_file" ) || die "Can not open output file";
# this is the csv head
if($output_header){
print OUTPUT "$input_fields[0]";
for($x=1; $x<$total_cols; $x++)
{
print OUTPUT "\t$input_fields[$x]";
}
print OUTPUT "\n";
}
$lines=0;
foreach $l (<INPUT>)
{
chop($l);
$pos =0;
for($f=0; $f < $total_cols; $f++)
{
$val = substr($l, $pos, $input_field_widths[$f]);
print OUTPUT $delim if($pos);
#print $delim if($pos && $testing);
print OUTPUT $quote, $val, $quote;
if($testing){
print $input_fields[$f] , "=", $val, "\n";
}
$pos += $input_field_widths[$f];
}
print OUTPUT "\n";
print "\n" if($testing);
$lines++;
if($testing && $lines>0) { last;};
}
print $lines , " lines transformed\n";
close(INPUT);
close(OUTPUT);
关于php - LOAD DATA INFILE 命令的格式化文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30780471/
我在阅读中看到这段代码: void assure(std::ifstream& infile ) { if(!infile) { /* stuff */} } 出于好奇,我使用函数参数类型 if
我想在 Load data Infile 中使用一个变量作为文件名。我运行以下代码: Set @d1 = 'C:/Users/name/Desktop/MySQL/1/'; Set @d2 = con
所以我只需要一些关于如何修复这个程序的指导,所以我需要阅读一个名为“infile.txt”的文件,文件里面是描述应该绘制的形状的说明(一个大写字符, 即 R,T,D,S,E) 然后它给出应该填充形状的
我在 Google App Engine 工作,我们有一个 Python 脚本可以将数据转储到 Google Cloud SQL 中。我们必须转储的数据集之一非常巨大。我们每天转储一次大约 150K
LOAD DATA INFILE 和 LOAD DATA LOCAL INFILE 有什么区别? 最佳答案 来自MySQL documentation : If LOCAL is specified,
我正在尝试使用以下命令将数据加载到现有的表中:MySQL>LOAD DATA LOCAL INFILE‘/PATH/loth.txt’INTO TABLE LOCAL;。但不断收到错误:错误2068(
我无法在我的服务器上使用导出功能。我已经尝试过搜索,但我能具体得到的并不多。我已经尝试了这两个功能,每次都会出现相同的错误。这是我得到的错误 ./phantomjs highcharts-conver
我目前正在解析一些网站以提高我的 Unix Bash 技能。已提取出一个具有以下格式的文件 la-que-no-podia-capitulo-1 la-que-no-podia-capitulo-25
尝试让 MySQL 在通过 INFILE 命令导入时忽略特定行。本质上,它是 CSV 文件中的“标题”行。 LOAD DATA LOCAL INFILE 'C:\myfile.txt' REPLACE
当我加载 infile 时遇到问题,其内容中包含 IP 地址, 在文件里面 [10] Mon 08Jul19 00:10:05 - (8457737) file "D:\a\b\c\file.zip"
如果这个问题重复,我深表歉意,但我发现的大多数问题都与 InnoDB 有关,而我正在使用 MyISAM。 我正在尝试创建一个进程,将 200-3 亿条记录加载到表中。我正在使用 LOAD DATA I
我在 mysql 数据库中加载数据时遇到问题。我用它作为在我的数据库中插入数据的方法: USE database; ALTER TABLE country ADD UNIQUE INDEX idx_n
我正在读取一个文件,并且在这个 .dat 文件的中间有一个标记。第一部分是变量和它们要分配的值。我正在获取变量及其值。这是我的。 int main() { ifstream infile; strin
我有点把自己画在角落里,需要一些指导。我在从 infstream 读取时使用正则表达式进行一些解析。我想做的是 while(getLine(inFile, str)) { search(st
我有一个名为 /tmp/files.txt 的文件,其结构如下: 652083 8 -rw-r--r-- 1 david staff
我正在构建一个接受这种格式的输入文件的程序: title author title author etc and outputs to screen title (author) title (aut
我为客户创建了一个 csv 文件导入器,我遇到的问题是我在文件中得到了十进制值的截断值,例如: in .csv file price is 12,23 and in database it is sa
我有一个 TSV,我正试图将其写入 mySQL 表中。几列是时间格式,但它们与 HH:MM:SS 的标准时间格式不匹配,而是看起来像 HH:MM AM/PM 我看过使用 PHP 执行此操作的示例,但我
我试图将 LOAD DATA INFILE 用作存储过程,但它似乎无法完成。然后我尝试了像这样将代码嵌入到应用程序本身的常用方法, conn = new MySqlConnection(connStr
如何在远程数据库(不同机器)上使用本地文件执行以下命令? $MYSQL_PATH/mysql -u root -h remote.net files -e " LOAD DATA INFILE
我是一名优秀的程序员,十分优秀!