Re: Access and SQL



Whenever you upsize an Access/Jet application to SQL Server, you have
to be aware of the fact that data which used to reside on the client
computer now consumes both server and network resources. When
constructing your Access front-end, you need to follow the golden rule
of "fetch only needed data". Never do a 'select * from' or open the
table directly in the UI. FWIW, you would be better off storing the
pictures on a network drive and only storing the path to the file in
the database. OTOH, if you had done that to begin with, then you
wouldn't have had a problem with your Jet database exceeding 2GB.

If you don't want to store the pictures on the file system, then in
your application, only load a single picture on demand, not all of
them at once.

--Mary

On Tue, 10 Jan 2006 13:10:02 -0800, "Scott T"
<ScottT@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:

>I have an access database that is currently at the 2GB limit that I would
>like to convert to SQL. I used DTS to load the database into SQL and created
>an .adp project in Access to get at it. The problem occurs when I try and
>open the .adp project it kills whatever PC I am on because it loads the
>entire 2GB database into memory on the client. The database only has one
>table inside it .. but that table contains pictures which constitute the 2GB.
>Why does it try and load the entire table into memory, when before I
>converted it to SQL it loaded just fine?? Any suggestions on improving the
>performance?
.



Relevant Pages

  • Re: Access and SQL
    ... Andrew J. Kelly SQL MVP ... >I have an access database that is currently at the 2GB limit that I would ... > Why does it try and load the entire table into memory, ...
    (microsoft.public.sqlserver.clients)
  • Re: WSS and Database Size
    ... To expand on what Dave said, SQL won't shrink databases by itself. ... eventually be used by the database anyway and using existing white space is ... sites have ALOT of pictures, but the pictures are 4-8 times larges ...
    (microsoft.public.sharepoint.windowsservices)
  • access 2000 project and opening record set
    ... I have a access 2000 project with connection to a SQL Server 2000 database. ... In the load form event I want to do some pre -processing. ...
    (microsoft.public.access.formscoding)
  • Re: How to use SQL to load supertype and subtype table data
    ... > I'm loading data into a database but having trouble (probably ... > then using that primary key as the Foreign Key to load data into my ... > very different local database ... > to use SQL and not a native API ...
    (comp.databases)
  • xp_getfiledetails
    ... App loads XML file data into sql backend. ... must be reloaded into the database via the application. ... The developer will provide a process to either load the data into the ...
    (microsoft.public.sqlserver.server)

Loading