Bonjour,
Je voudrai exécuter la commande SQLLDR avec .net
malgré que la commande tourne bien sur cmd
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 Dim startInfo As ProcessStartInfo Dim pStart As New Process() pStart = New Process() startInfo = New ProcessStartInfo("C:\\oracle\\product\\10.2.0\\client_1\\BIN\\sqlldr.exe", " user/pwd@schema control=c:\\oracle\\sqlloader\\job.ctl LOG=c:\\oracle\\sqlloader\\job.log") pStart.StartInfo = startInfo pStart.Start() pStart.WaitForExit()
Partager