user3142278
user3142278

Reputation: 11

export image from lotus domino database

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

Answers (1)

Egor Margineanu
Egor Margineanu

Reputation: 740

First, you need to ensure you have sufficient access to the database. This means following:

  • If database resides on a server, ensure you are allowed to access the server and have Reader access to the database (you may need higher rights, see below for details);
  • If database resides on your workstation, you must ensure it's not locally encrypted by someone else or doesn't have Enforce ACL enabled;

With above in mind, exporting images from DB may require different approach depending on their location:

  • Are they stored as design elements (Image Resource), then all you have to do is to open the database in Domino Designer, go to Image Resources, select desired image resource and perform Resource -> Export;
  • Are they stored in documents, then this becomes a more complex task. You may use LotusScript or Java to iterate and process all documents containing images. For this, you would 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

Related Questions