Mailing Lists

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mick Kehoe

    Mailing Lists

    Hi All

    We are running SQL Server & Outlook with an exchange server. We are
    looking for a way to import the address book & email details into a
    database table.

    We have managed to do this with MS Access by using the import option
    exchange(). Is there a similar way this can be done in SQLServer 2000
  • Simon Hayes

    #2
    Re: Mailing Lists


    "Mick Kehoe" <mick@kehoe.dem on.co.uk> wrote in message
    news:86917a0f.0 409220431.21399 510@posting.goo gle.com...[color=blue]
    > Hi All
    >
    > We are running SQL Server & Outlook with an exchange server. We are
    > looking for a way to import the address book & email details into a
    > database table.
    >
    > We have managed to do this with MS Access by using the import option
    > exchange(). Is there a similar way this can be done in SQLServer 2000[/color]

    I'm not familiar with Exchange, however if you can export the addresses to a
    CSV file, then DTS or bcp.exe can import the data. Alternatively, if you
    already have them in Access, then you could use DTS or a linked server to
    pull them into MSSQL.

    Simon


    Comment

    • David Rawheiser

      #3
      OLE DB Provider for Exchange

      From MS SQL 2k Books On Line ...

      The Microsoft® OLE DB Provider for Exchange exposes data stored in a
      Microsoft Exchange 2000 Web Store in tabular form. This data can be queried
      using an SQL-like language that is very similar to the SQL subset supported
      by the OLE DB Provider for Microsoft Indexing Service.

      Microsoft SQL ServerT 2000 distributed queries can be used to query data
      from the Exchange Web Store through this OLE DB Provider and can be joined
      with tables in SQL Server. The Exchange Web Store should be located in the
      same computer as SQL Server. Web Stores located in other computers cannot be
      accessed using the OLE DB Provider for Exchange.

      "Simon Hayes" <sql@hayes.ch > wrote in message
      news:41517712$1 _1@news.bluewin .ch...[color=blue]
      >
      > "Mick Kehoe" <mick@kehoe.dem on.co.uk> wrote in message
      > news:86917a0f.0 409220431.21399 510@posting.goo gle.com...[color=green]
      > > Hi All
      > >
      > > We are running SQL Server & Outlook with an exchange server. We are
      > > looking for a way to import the address book & email details into a
      > > database table.
      > >
      > > We have managed to do this with MS Access by using the import option
      > > exchange(). Is there a similar way this can be done in SQLServer 2000[/color]
      >
      > I'm not familiar with Exchange, however if you can export the addresses to[/color]
      a[color=blue]
      > CSV file, then DTS or bcp.exe can import the data. Alternatively, if you
      > already have them in Access, then you could use DTS or a linked server to
      > pull them into MSSQL.
      >
      > Simon
      >
      >[/color]


      Comment

      Working...