Autor Thema: Automatischer Import einer CSV Datei  (Gelesen 2117 mal)

TheNet1996

  • Gast
Automatischer Import einer CSV Datei
« am: 08.08.03 - 14:33:48 »
Hallo Leute,

ich hab ein kleines Problem, ich bekomme jede nacht automatisch von einer Oracel Datenbank einen export im CSV format. Diesen Importier ich in eine Notes Datenbank mit einer xyz.Col datei.

Kann ich dies über einen agenten automatisieren? Sprich auf meinen Notes Solaris Server liegt dauerhat die Collum Datei und die CSV datei wird um eine gewisse uhrzeit automatisch hinkopiert. Nun möchte ich einen Agenten schreiben der mir diesen Inport wie er in der Collum datei definiert ist automatisch anstartet.

Danke


Offline doliman

  • Senior Mitglied
  • ****
  • Beiträge: 332
  • Geschlecht: Männlich
    • www.doleschel.de
Re:Automatischer Import einer CSV Datei
« Antwort #1 am: 10.08.03 - 17:52:40 »
Hi,

schreibe Dir doch einen Importagenten, der Dir aus einer Datei liest. Ich bin mir nicht sicher, ob die mittels einem Agenten die Importroutine von Notes benutzen kannst und die .col Datei dazu übergeben.

Hier habe ich Dir mal ein Beispiel für ein Dateiimport:

Sub Initialize
On Error Goto _Error

Dim bFileOpen As Integer
Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase

Dim view As NotesView
Dim doc As NotesDocument
Set view = db.GetView( "(CleanAddress)" )
Set doc = view.GetFirstDocument

'The Fields we are going to import
Dim Field1 As String
Dim Field2 As String

'The unique field for each record
Dim UniqueID As String


'Name of file to get from user
Dim FileName As String

If Not (doc Is Nothing) Then
FileName = Inputbox$("Enter your import file name: ", "LotusScript Import Routime", "C:\")
If (FileName = "") Then
Messagebox ("Import has been canceled")
Exit Sub
End If
Else
'There is nothing to merge into
Messagebox ("Nothing to import into! Are you sure you have not already imported this file?")
Exit Sub
End If

'Open the file
Dim fileNum As Integer
fileNum = Freefile()
Open FileName For Input As fileNum
bFileOpen = 1

Dim item As NotesItem

'Until we eof
Do Until Eof (fileNum)
Input #fileNum, UniqueID, Field1, Field2

If (UniqueID > "") Then
Set doc = view.GetDocumentByKey(URN)

If Not (doc Is Nothing) Then
doc.Field1 = Field1
doc.Field2 = Field2
Call doc.Save(True, False)
Else
Messagebox("File contains a record that is not in the database " + UniqueID)
End If
Else
Messagebox("File contains an record without a unique id")
End If
Loop

'Close file
Close fileNum
bFileOpen = 0

Messagebox("File imported successfully")

Exit Sub
_Error:
If (bFileOpen = 1) Then
Close fileNum
End If
Messagebox("Error importing data: " + Error$)
Exit Sub
End Sub
Grüßle
                           _///_
                          (o~o)
-------------oOOO--(_)--OOOo-------------
Frank Doleschel

----------------------
Ein Berufsleben ohne Notes ist zwar möglich aber die Alternativen sind erschreckend ;-)

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz