Second and Third email fields?

Status
Not open for further replies.

chockomonkey

Senior Member
Outlook version
Outlook 2010 32 bit
Email Account
IMAP
Are these accessible in any way through the reporting function?

or do I need to know SQL to get all these email addresses out of here...?
 
I think it's not possible to show the fields email2 and email3 in the report.

I use an access frontend and connect to our remote database (mirrored db instance of the productive db) when I'm planing to make a report. Here I can combine related tabels/ make a query with the foreign key relations, e.g. contact and account table. So we are able to combine user defined account informations with the related business contacts.

The connnection to the database depends on the way you have set the db (local or remote db on a server). For our remote server we configured a sql odbc driver (DSN). Use windows NT authentification to get access. I recommend to only access to a copy of the productive database, cause the relations are not implemented in the db backend.

good luck

Tobias
 
I think it's not possible to show the fields email2 and email3 in the report.

I use an access frontend and connect to our remote database (mirrored db instance of the productive db) when I'm planing to make a report. Here I can combine related tabels/ make a query with the foreign key relations, e.g. contact and account table. So we are able to combine user defined account informations with the related business contacts.

The connnection to the database depends on the way you have set the db (local or remote db on a server). For our remote server we configured a sql odbc driver (DSN). Use windows NT authentification to get access. I recommend to only access to a copy of the productive database, cause the relations are not implemented in the db backend.

good luck

Tobias

Thank you for this post. It definitely got me headed in the right direction! I went a route that I believe is easier for my situation, because I won't need to be doing this all the time.

Thankfully, the Table names used for BCM are pretty self explanatory, but I did get hung up because there is no actual Table for Accounts. Instead, Accounts are brought up with a view.

So once I figured out all the variables I needed, I just wrote this simple SQL Script and executed it in MSFT SQL Server Management Studio Express:

SELECT Active, FullName, Email1Address, Email2Address, Email3Address

FROM dbo.PublicAccountsView

WHERE Active=1;

This yields all the results I wanted, then I just right-clicked on the results and used the "Save Results As..." option to get a .csv file.

So, cheers! Thanks for setting me on the right track and hopefully my input on this matter can help someone too :)
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
C Outlook 2013 Task Recurrence - Third Friday After the Second Tuesday Using Outlook 2
F Want to add second email to Outlook for business use Using Outlook 4
P Comcast IMAP broken but their second level support said to call "the Outlook company" Using Outlook 4
Hobbes Outlook 365 Calendar spreads into second calendar Using Outlook 3
A VBA macro for 15 second loop in send and received just for 1 specific mailbox Outlook VBA and Custom Forms 1
A Outlook downloading 1kb per second or less Using Outlook 0
lotsbg Loads of junk in second email needs fixing Using Outlook 1
M How do I mark emails already received as read when I get a second, different email based on subject? Outlook VBA and Custom Forms 3
M Custom form on one page to post contents on second page Outlook VBA and Custom Forms 0
S unable to send email from my second address (outlook 2007) Using Outlook 2
D Save sent email in second account not default account? Using Outlook 1
J Reminders dismissed on one computer re-appear on Outlook on second computer Using Outlook 1
E Second calendar Template/Form Invitation Using Outlook 9
S Copy Events to Second Calendar or Sync Only "Busy" Events Using Outlook 5
R Duplicating Category Colors For Second User Using Outlook 1
B Two server DAG setup, second server EMC not opening Exchange Server Administration 3
R Adding Second Business Contact Group BCM (Business Contact Manager) 1
C BCM database second user BCM (Business Contact Manager) 1
C Outlook-can I set up second email account using my BCM (Business Contact Manager) 1
R Outlook 365 How to integrate a third-party app with Outlook to track email and sms? Using Outlook 2
e_a_g_l_e_p_i Is there a good third party SPAM filter that intergrates with Outlook 2010 Using Outlook 7
O Third-party VSTO 2005 SE plug-in for Outlook 2007: what should I signwith a publisher certificate? Outlook VBA and Custom Forms 3
P Email address auto-completes work fine on laptop, but no longer on desktop Using Outlook 2
S Create Outlook Task from Template and append Body with Email Body Outlook VBA and Custom Forms 4
H Copying email address(es) in body of email and pasting in To field Outlook VBA and Custom Forms 1
A Search folder and move the email Outlook VBA and Custom Forms 0
P VBA to add email address to Outlook 365 rule Outlook VBA and Custom Forms 0
farrissf Outlook 2016 Optimizing Email Searches in Outlook 2016: Seeking Insights on Quick Search vs Advanced Search Features Using Outlook 0
D Delete selected text in outgoing email body Outlook VBA and Custom Forms 0
F Graphics in email / Mac recipient garbled Using Outlook 0
D Outlook VBA forward the selected email to the original sender’s email ID (including the email used in TO, CC Field) from the email chain Outlook VBA and Custom Forms 2
Witzker Outlook 2019 Macro to seach in all contact Folders for marked Email Adress Outlook VBA and Custom Forms 1
E Outlook 365 Save Selected Email Message as .msg File - oMail.Delete not working when SEARCH Outlook VBA and Custom Forms 0
S Email Macros to go to a SHARED Outlook mailbox Draft folder...NOT my personal Outlook Draft folder Using Outlook 2
R Outlook 365 VBA AUTO SEND WITH DELAY FOR EACH EMAIL Outlook VBA and Custom Forms 0
G Print email attachments when hit subfolder Outlook VBA and Custom Forms 1
C Spam Email? Using Outlook 2
G Automatically delete email when a condition is met Outlook VBA and Custom Forms 1
E Save Selected Email Message as .msg File - digitally sign email doesn't works Outlook VBA and Custom Forms 1
S Email was migrated from GoDaddy to Microsoft exchange. We lost IMAP ability Exchange Server Administration 1
S Paperclip icon shows without attachment in email under Sent folder Using Outlook 0
B Outlook 2019 Automatically move email after assigning category Using Outlook 4
Rupert Dragwater How to permanently remove an email address Using Outlook 9
K vba code to auto download email into a specific folder in local hard disk as and when any new email arrives in Inbox/subfolder Outlook VBA and Custom Forms 0
F Auto changing email subject line in bulk Using Outlook 2
kburrows Outlook Email Body Text Disappears/Overlaps, Folders Switch Around when You Hover, Excel Opens Randomly and Runs in the Background - Profile Corrupt? Using Outlook 0
J Outlook 365 Outlook Macro to Sort emails by column "Received" to view the latest email received Outlook VBA and Custom Forms 0
A Outlook 2019 Help with forwarding email without mentioning the previous email sender. Outlook VBA and Custom Forms 0
J Macro to send email as alias Outlook VBA and Custom Forms 0
M Shift Delete doesn't delete email from server Using Outlook 3

Similar threads

Back
Top