Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
CIAO A TUTTI
Ho un problema nel file di importazione ho la data impostata in questo modo 07/12/94
nello script ho inserito la seguente codifica per poter creare tre campi separati 1 il giorno il 2 il mese e il 3 l'anno
tab1:
load
*,
Year(Date#(VNDDAT,'DD/MM/YY')) as GIORNO, Month(Date#(VNDDAT,'DD/MM/YY')) as MESE, Day(Date#(VNDDAT,'DD/MM/YY')) as ANNO
sql eccc.ecc..ecc.
mi esegue l'importazione mi crea le tre colonne ma non riempie i dati
non mi da nessun errore
perchè ???
grazie a tutti
luca
Ciao Luca,
check the "raw" value of the VNDDAT column loaded by your sql statement.
Is it empty as well?
Maybe your VNDDAT column is not a string.
Which data type does it have?
Check the data type of field VNDDAT e.g. in the table viewer:
If it is already a timestamp then you don't need the Date#-function.
regards
Marco