Bonjour à tous.

Voici mon souci. J'ai créé un "control file" afin d'importer des tables en fichier csv dans ma base Oracle.

Voici le fameux fichier :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
load data
infile '/home/users/data/TABLE.dat'
replace into table TABLE
fields terminated by ";" optionnaly enclosed by ""
training nullcols
skip=2
{
COLONNE_UN
COLONNE_DEUX
COLONNE_TROIS
}
Mais il me marque l'erreur suivante :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
SQL*Loader: Release 9.2.0.4.0 - Production on Mon Jun 11 12:10:59 2007
 
Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
 
SQL*Loader-350: Syntax error at line 4.
Expecting "(", found "optionnaly".
fields terminated by ";" optionnaly enclosed by ""
Quelqu'un sait-il ce qui ne va pas dans ce fichier ?