Home > Domino Tips > Developer > Agent > How to export data from a Lotus Notes database to a CSV file
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

AGENT

How to export data from a Lotus Notes database to a CSV file


Glen Wheeler
11.13.2007
Rating: -2.83- (out of 5)


Lotus Notes, Domino, Workplace and WebSphere tips and advice
Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


VIEW MEMBER FEEDACK TO THIS TIP
This Lotus Notes Domino agent will export all of the data in a Lotus Notes database into CSV (comma separated values) files that can in turn be imported into Microsoft Excel, Microsoft Access, SQL (structured query language) and most other platforms.
Related resources from SearchDomino.com:
Tip: Export Lotus Notes documents to Microsoft Word via Internet Explorer

Tip: A flexible data export agent for Lotus Notes

Lotus Notes Domino Agent Reference Center

It will produce one CSV file for each form in the Lotus Notes database. The CSV file will contain data for each of the fields on the form from any document in the database using that form. It can easily be modified to export Lotus Notes data from a single form.

Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim fileName As String
Dim fileNum As Integer
Dim headerstring As String
Dim values As String
Dim selection As String
Dim collection As NotesDocumentCollection
Dim doc As notesdocument

On Error Resume Next

Set db = session.CurrentDatabase

Forall form In db.Forms
If Isempty(form.Fields) Then
Messagebox form.Name & " has no fields"
Else
fieldCount = 0
msgString = ""
fileNum% = Freefile()
fileName$ = "c:" & form.Name & ".csv"
Open FileName$ For Output As fileNum%
   
Forall field In form.Fields
msgString = msgString & Chr(10) & _
"     " & field
fieldCount = fieldCount + 1  
headerstring=headerstring & |"| &field &|",| 
End Forall
 
Write #fileNum%,  |",| & headerstring & |"|
headerstring=""
End If
 
selection = |Form="| & form.Name & |"|  
Set collection=db.Search(selection, Nothing, 0)
 
For x = 1 To collection.count
Set doc =collection.GetNthDocument(x)
values=""
Forall formfield In form.Fields
newvalue=doc.GetItemValue(formfield)
values=values & |"| & newvalue(0) & |",| 
End Forall
   
Write #fileNum%,  |",| & values &|"|
values=""
Next

Close fileNum%
End Forall
 
End Sub

MEMBER FEEDBACK TO THIS TIP

I've made two changes to this code:

  1. I've added "\" after the c: in fileName$ string (on or about line 23).
  2. I've added support for forms that have aliases.
My corrected version of the code follows. This was a good snippet once I got those things sorted out.
Sub Initialize
                
Dim session As New NotesSession
Dim db As NotesDatabase
Dim fileName As String
Dim fileNum As Integer
Dim headerstring As String
Dim values As String
Dim selection As String
Dim collection As 
NotesDocumentCollection
Dim doc As notesdocument
                
On Error Resume Next
                
Set db = session.CurrentDatabase
                
Forall form In db.Forms
If Isempty(form.Fields) Then
Messagebox form.Name & " has no fields"
Else
fieldCount = 0
msgString = ""
fileNum% = Freefile()
fileName$ = 
"c:\test\export\" & 
form.Name & ".csv"
Open FileName$ For Output As fileNum%

Forall field In form.Fields
msgString = msgString & Chr(10) & _
  "     " & field
fieldCount = fieldCount + 1  
headerstring=headerstring & |"| &field &|",| 
End Forall
                                                
Write #fileNum%,  |",| & headerstring & |"|
headerstring=""
End If
                                
selection = |Form="| & form.Name & |"|  
Set collection=db.Search(selection, 
Nothing, 0)
                                
For x = 1 To collection.count
Set doc =collection.GetNthDocument(x)
values=""
Forall formfield In form.Fields
newvalue=doc.GetItemValue(formfield)
values=values & |"| & newvalue(0) & |",| 
End Forall
                                                
Write #fileNum%,  |",| & values &|"|
values=""
Next

'now check aliases
If Isempty(form.Aliases) Then
'Messagebox form.Name & " has no aliases"
Else
Forall aliaz In form.Aliases
If aliaz = form.Name Then
Msgbox aliaz + " is same as " + form.Name
Goto NextAliaz   'alias is same as form name
End If
selection = |Form="| & aliaz & |"|  
Set collection=db.Search(selection, Nothing, 0)
 
For x = 1 To collection.count
Set doc =collection.GetNthDocument(x)
values=""
Forall formfield In form.Fields
newvalue=doc.GetItemValue(formfield)
values=values & |"| & newvalue(0) & |",| 
End Forall
              
Write #fileNum%,  |",| & values &|"|
values=""
NextAliaz:
Next
End Forall
End If

Close fileNum%
End Forall
                
End Sub

—John P.

******************************************

For this code to work, the form name must not have any aliases.
—Karel Y.

Do you have comments on this tip? Let us know.

This tip was submitted to the SearchDomino.com tip library by member Glen Wheeler. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.

Rate this Tip
To rate tips, you must be a member of SearchDomino.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


RELATED CONTENT
Agent
Verify scheduled agent status with Domino Extensible Language (DXL)
Enable or disable scheduled agents without opening the Lotus Notes database design
Creating custom views in Lotus Notes databases
Editing fields in a Lotus Notes view with Ajax
How to automatically create a backup copy of your Domino Directory
Export Lotus Notes documents to Microsoft Word via Internet Explorer
A bevy of Notes/Domino development tips
Best practices for using the Lotus Notes WebQuerySave agent
A flexible data export agent for Lotus Notes
A single form to view and edit any Lotus Notes document

Lotus Notes Domino Agents
Verify scheduled agent status with Domino Extensible Language (DXL)
Top 10 Lotus Notes Domino programming and development tips of 2007
Must-know Lotus Notes Domino agents -- 10 tips in 10 minutes
Enable or disable scheduled agents without opening the Lotus Notes database design
Creating custom views in Lotus Notes databases
Editing fields in a Lotus Notes view with Ajax
Troubleshooting a scheduled agent not running on a Global Notes Architecture (GNA) server
Can I stop Lotus Domino Server from transforming embedded images into attachments?
How to automatically create a backup copy of your Domino Directory
Export Lotus Notes documents to Microsoft Word via Internet Explorer

Lotus Notes Domino Deployment and Migration Advice
How to install Lotus Notes on Linux CentOS-4
How to install Lotus Domino Server on SUSE Linux
How to perform an in-place upgrade of Lotus Domino server hardware
Moving a remote user mail database to new Lotus Domino server
Top 10 Notes/Domino administration tips of 2006
How and why to change replica IDs during a Lotus Notes Domino upgrade
10 tips for running a Lotus Notes Domino 7 upgrade pilot
Reasons to upgrade to Lotus Domino R6.5
Seven Lotus Notes/Domino 7 upgrade resources
Calendar delegation problem with Lotus Notes client 6.5.5 upgrade

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.

HomeNewsTopicsITKnowledge ExchangeTipsAsk the ExpertsWebcastsWhite PapersDomino IT Downloads
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides enterprise IT professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective IT purchase decisions and managing their organizations' IT projects - with its network of technology-specific Web sites, events and magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Reprints  |  Site Map




All Rights Reserved, Copyright 1999 - 2008, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts