Reputation: 11
I'm a beginner with Lotus so I really need help about it.
my company gave me a database in lotus. This database include around 18,000 images which I must import in a new DB developed in MySQL.
When I tried to open it with notes designer/notes the fallowing message is showed:
You have insufficient access to perform this operation
, I think there is a password that I
do not know.
for privacy reasons I can not post nothing about the db, sorry.
So, how can I export all images as easy way as possible?
Upvotes: 1
Views: 834
Reputation: 740
First, you need to ensure you have sufficient access to the database. This means following:
With above in mind, exporting images from DB may require different approach depending on their location:
NotesRichTextItem
class to retrieve NotesEmbedded
object from each document. Alternative way would be to convert all rich-text field in document to MIME format using Call notesDocument.ConvertToMIME( conversionType, options)
and process it after with NotesMIMEEntity
class;To access design of a database located on a Domino server you will need Designer rights.
Hopefully this will help.
Upvotes: 1