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
L Hide Selected Email Address from Address Book Using Outlook 5
Y QQ on Scheduled Delivery of an Email Using Outlook 0
T Replace Text in Email Subject Outlook VBA and Custom Forms 3
Rupert Dragwater Cannot reestablish gmail (email address) account in Outlook 365 Using Outlook 12
M Outlook 365 adding standard message in body of template email Outlook VBA and Custom Forms 3
E Create Rule to Forward Email if Subject Begins With Using Outlook 2
V iCloud For Windows v15.x - Missing Email Features ? Using Outlook 4
M Thunderbird email client - I wonder Using Outlook 1
D Outlook Desktop App Email Software Using Outlook 0
P Email and calendar entry text now shifts right about 3 tabs worth of space Using Outlook 1
J Outlook macro to run before email is being send Outlook VBA and Custom Forms 3
T Outlook 2010 Creating a email 'Group' in OL 2010 Using Outlook 2
D Send email from Outlook Alias using Mac? Using Outlook 0
T How to set Default FONT for Email composing ? Using Outlook 0
H Finding text in open email Outlook VBA and Custom Forms 12
T Why do Outlook Desktop 2021 tasks from my wife's email show up in my task pane? Using Outlook 2
A Opening a link from an email automatically Outlook VBA and Custom Forms 0
D Outlook 2021 New email reminder Using Outlook.com accounts in Outlook 1
Rupert Dragwater How do I remove an email ending with @gmail.com Using Outlook 4
M A plug in (or method) to keep email message formatting after it expires Using Outlook 1
L VBA to Triage Incoming Email Outlook VBA and Custom Forms 0
R Legacy Outlook on Mac Email Cache Using Outlook 0
P Email address auto-completes work fine on laptop, but no longer on desktop Using Outlook 3
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

Similar threads

Back
Top