Respuesta: Como se hacen consultas en dos tablas diferentes no tengo la relación en las tablas.
Do Until oInStream.AtEndOfStream
sRows = oInStream.readLine
arrRows = Split(sRows,";")
sql2="insert into SGL_ANA_TEMPO(" &_
" MUESTRAID, " &_
" ABREV, " &_
" DILUCION, " &_
" FECHA_PREPARACION, " &_
" HORA_PREPARACION, " &_
" ESTADO, " &_
" RESULTADO, " &_
" UNIDAD, " &_
" ANOTACIONES, " &_
" COMENTARIO, " &_
" LIMITE_INFERIOR, " &_
" LIMITE_SUPERIOR,"&_
" CODIGO_DE_BARRAS_VIAL, "&_
" CODIGO_DE_BARRAS_TARJETAS, "&_
" REGISTRADO_POR,"&_
" MODO,"&_
" DURACION_INCUBACION,"&_
" DURACION_INCUBACION_1,"&_
" DURACION_REFRIGERACION "&_
" ) " &_
" VALUES("&(arrRows(0))&", " & _
" '"&(arrRows(1))&"', " & _
" "&(arrRows(2))&" , " & _
" subStr('"&(arrRows(3))&"',5,10), " & _
" subStr('"&(arrRows(3))&"',16,5), " & _
" '"&(arrRows(4))&"', " & _
" '"&(arrRows(5))&"', " & _
" '"&(arrRows(6))&"', " & _
" '"&(arrRows(7))&"', " &_
" '"&(arrRows(8))&"', " & _
" NVL('"&(arrRows(9))&"',NULL) , " & _
" NVL('"&(arrRows(10))&"',NULL), " & _
" "&(arrRows(11))&", " & _
" "&(arrRows(12))&", " & _
" '"&(arrRows(13))&"'," & _
" '"&(arrRows(14))&"'," & _
" subStr('"&(arrRows(15))&"',1,11), " & _
" subStr('"&(arrRows(15))&"',13,5), " & _
" '"&(arrRows(16))&"')"
con=con +1
con2=con
if(con>1 )Then
'response.write sql2
'response.end
set rs1=cn.execute(sql2)
commit="commit"
set com=cn.execute(commit)
end if
%>
y este es mi código donde le inserto los datos del excel a la base de datos
trabajo con oracle |