Link ODBC table in Access

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Luke29
    New Member
    • Oct 2007
    • 1

    Link ODBC table in Access

    I want to link to an oracle table in Access using vba code and can do this using DoCmd.TransferD atabase. But I do not want to link to all the columns in the source table. Is there a way to link to only certain columns?

    Cheers
  • shrimant
    New Member
    • Sep 2007
    • 48

    #2
    Originally posted by Luke29
    I want to link to an oracle table in Access using vba code and can do this using DoCmd.TransferD atabase. But I do not want to link to all the columns in the source table. Is there a way to link to only certain columns?

    Cheers
    Create a View with selected columns and link to the View

    Comment

    Working...