Share via

Access 2007 Attachment Type in SQL 2008R2

Anonymous
2017-01-04T14:50:24+00:00

I am currently helping a user move her Access DBs to a SQL 2008 backend.

The migration goes smoothly except for the "attachment" function from access. Basically, her user base uploads pdf, doc, xls etc. from shared drives into the database. I've done some research and noticed that the varbinary(max) data type in SQL might be able to mimic this, however the attachment functionality of her front end Access program still doesn't seem to work when I change the data type. 

Any suggestions would be much appreciated.

Kyle

Microsoft 365 and Office | Access | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

5 answers

Sort by: Most helpful
  1. Anonymous
    2017-01-05T16:39:59+00:00

    I should note that traditionally one stores the actual document in a Shared Drive on the Server and only stores the path to said Drive in the database.  The reason being storing the actual documents within the database does cause it to reach the 2 gig limit (Access) or the 10 gig limit (free SQL Server) more quickly.

    All that said, the developer may be hesitant but I don't see any other choice besides the one I mentioned above.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2017-01-05T13:42:48+00:00

    Yes, we are actually looking into it now. My access developer is hesitant to change code, although that's what I think may have to happen for her application

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2017-01-05T13:15:37+00:00

    Yes, I'm using SSMA, I've also tried the traditional upload with SQL by using the upload feature.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2017-01-05T03:37:02+00:00

    There really is no attachment Data Type on the SQL Server.  The closet thing that comes to mine is FILESTREAM Storage, have a look at...

    https://msdn.microsoft.com/library/hh461480?f=255&MSPPError=-2147217396

    Was this answer helpful?

    0 comments No comments
  5. DBG 11,711 Reputation points Volunteer Moderator
    2017-01-04T19:11:11+00:00

    Hi Kyle,

    How are you migrating the data into SQL Server? Have you tried using SSMA? Just curious...

    Was this answer helpful?

    0 comments No comments