I have a MS Access 2010 Data Project (adp) connected to MS SQL Server 2008. Based on Microsoft's website, I should be able to modify the SQL backend from within the MS Access 2010 Data Project.
Once you connect to an SQL Server database, you can view, create, modify, and delete tables, views, stored procedures, user-defined functions, and database diagrams by using the Database Designer, Table Designer, Query Designer, Query Builder, and SQL Text Editor.
However, I can't modify all my columns the way I want to. Let's say I have a table with
Col1 varchar(255)
I can't change that in Design View to varchar(max). Max is not an accepted length in MS Access. Also, per Microsoft's documentation, text should not be used, since it's deprecated. So, I would like to avoid that as a solution.
Another option would be to make the change directly on SQL Server. However, this won't work for me. There will be other developers working on this. None of the other developers will have access to SSMS. Mostly because they're Access developers, who have never seen SSMS or even touched SQL Server before.
How can I make this change in MS Access Data Project? Are there any other gotchas that I should be aware of with this client/server model?