Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Is any one using MS Access?

Is any one using MS Access?

Scheduled Pinned Locked Moved The Lounge
sharepointquestion
99 Posts 57 Posters 4 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B BryanFazekas

    I had to google 'Access replication'. Cool! How does Compact work? Same as normal, when the last user logs out? While I don't currently have a need for a multi-user Access app, I will keep this in my bag of tricks. Thanks!

    M Offline
    M Offline
    Member 11273627
    wrote on last edited by
    #84

    By the way, when I say Replica - I just mean an exact copy of the front end. Not replicated data. Everyone shares one back end set of tables. So the data is not moved around to each person's DB physically.

    1 Reply Last reply
    0
    • S SPoss

      Just updated office 365 and along with it Access 2016. I've never used it. Does anyone use it? What for? and should I?

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #85

      I've used Access for years to query Access (.MDB), Excel, FoxPro (.DBC; .DBF), SQL Server, Oracle, MySQL and Postgresql databases. Using the available database drivers, one can query, join, translate, save and / or export data (i.e. ETL) from multiple heterogeneous sources at the same time. For years, the Access "engine" ("Jet") has been used as a database API in VB and VBA for accessing SQL Server databases. I don't develop apps with it; but do use it to help develop apps; particularly when it comes to data / frequency analysis. There are technical reasons / restrictions why Access should not be used as a server in a "big database" production environment, but it's not due to any limitations in its abilities; e.g. "ad-hoc" Access reporting is a lot easier than SQL Server Reporting Services, IMO.

      1 Reply Last reply
      0
      • S SPoss

        Just updated office 365 and along with it Access 2016. I've never used it. Does anyone use it? What for? and should I?

        M Offline
        M Offline
        Mr Elenesski
        wrote on last edited by
        #86

        It's beyond totally gross for implementation of anything; especially if you have an object-oriented C# background; such as myself. My version was Visual Basic (shudders). However, I have used MS Access, implemented solutions and it does have some benefits. If you want to use it for a real-time production system; Access isn't a solution for that. It's best to think of access as a database system for a small number of users; Excel with a better programming/forms interface. I've used it in a corporate setting for some simple multi-team workflow processes to be managed, as part of a development effort. Why not write a Windows form application, etc.? It boiled down to corporate standards; the cost/time to provision a server with all of it's security policy overhead was simply unjustified. Access, at least in that space, was ubiquitous which means anybody could install/run it, and it was there to fit a need, when filling out email forms was error prone and led to a lot of misunderstandings.

        1 Reply Last reply
        0
        • D den2k88

          DanW52 wrote:

          Power users

          Never, ever, give power to a user. Nothing good can result.

          GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver "When you have eliminated the JavaScript, whatever remains must be an empty page." -- Mike Hankey

          B Offline
          B Offline
          Baron Software
          wrote on last edited by
          #87

          Microsoft Access is still used in offices that need a simple method to generate a Windows front end along with a database for storage. If you do not use it for that you can use it for importing excel spreadsheets or CSVs into a database, execute queries, gather numbers, modify the query into a SQL statement, connect to a SQL Server and append the information into database. SQL servers can be connected using ODBC drivers, thus allowing you to extract data for the purpose of gaining statistical information. Access has it uses in any type of office that has a SQL server or if you need to have a multi-user Windows application but do not have a budget for a programmer or DBA. It is simple to set up and use. You can also interface into almost any Office product (Word , Excel, etc.) to provide a data source for mail merges, letters, etc. Sure it is a resource hog taking up network bandwidth, disk space but I bet after viewing hundreds of locations there are MS Access Applications in use. You can always visit baronsoftware.com for further information.

          1 Reply Last reply
          0
          • D den2k88

            DanW52 wrote:

            Power users

            Never, ever, give power to a user. Nothing good can result.

            GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver "When you have eliminated the JavaScript, whatever remains must be an empty page." -- Mike Hankey

            T Offline
            T Offline
            tchris
            wrote on last edited by
            #88

            SO TRUE!!!

            1 Reply Last reply
            0
            • W WildlingCoder

              Access is part of about 90% of my development projects. Usually as a RAD front end to MySQL, PostgresSQL, Oracle, SQL Server, and sometimes more than one at the same time. How many dev tools do you know that can connect to SQL Server, MySQL and Oracle at the same time? The ACE DB Engine is really only good for apps with tables less than 100K records, or so, but Access makes a great desktop front-end. Access != ACE (Access <> ACE for the VB fans). Yes, it's best use is for desktop apps connected to shared data for 20 or less people (up to 50 with a RDBMS back-end). The Sharepoint/web integration is basically hell, since you can only use macros (no VBA). Using macros is like trying to build a house when the only tool you have is a bag of sporks. Although, the new JavaScript integration in 2016 may help change that. As I've grown as a coder, it took me a while to understand certain concepts that are now must have features in modern languages/ide's: Managed Code, VBA in Access has always been managed. Lambda Expressions, oh, you mean you can just create a function and call it from anywhere? You know, like a function in an Access module rather than class. Binding fields in a table to controls on a form is ridiculously easy (built-in sanitizing, character limits that match the field, data-types, a plethora of events to add validations, etc.). Don't worry if this frightens you, its lack of layers scares many. But, then again, you may not want to listen to me as I am a wildling coder. After some excellent instruction in high school, I did not go the the ivory towers and have spent most of my career on the other side of the wall between IT and everyone else... solving problems as quickly and efficiently as I can, with only the tools I have available to me.

              "But then, something happened that the ring did not intend." - Fellowship of the Ring

              C Offline
              C Offline
              clearwaterPicker
              wrote on last edited by
              #89

              Though I wouldn't want to try to support a commercial multi customer app in Access (did that), it's a very useful companion tool to any development and great, especially due to integration with excel, as a tool in data conversions. I use .NET, node and other modern tools, and cram until my head aches to try to stay up to date, but I also use Access as a flexible utility, data monitor, checker, builder, relater. i can whip up a form to watch or query certain data that i need to look at on the fly when developing. plus i have a few customers that still use and like access. if it ain't broke, don't fix it.

              1 Reply Last reply
              0
              • D DanW52

                Power users can make good use of Access if they limit themselves to what they know, and they don't try to make it a multi-user application.

                H Offline
                H Offline
                hernandezpaul
                wrote on last edited by
                #90

                Agreed, that is how I use it, only when it makes sense for a specific purpose.

                1 Reply Last reply
                0
                • S SPoss

                  Just updated office 365 and along with it Access 2016. I've never used it. Does anyone use it? What for? and should I?

                  B Offline
                  B Offline
                  BrainiacV
                  wrote on last edited by
                  #91

                  We will pry MS Access from my boss's cold dead hands. Our major backend processing uses it and we have to adapt our SQL Server processes and tables to it's limitations. Attempts to get him to recode to SQL Server have fallen on deaf ears. I've always wondered why Microsoft has not put an Access frontend to SQL Server. Drag and Drop query creation is far less intimidating than SQL and you still have the option to edit the Drag and Drop SQL generated. The Report generator would be nice for SQL Server as well.

                  Psychosis at 10 Film at 11 Those who do not remember the past, are doomed to repeat it. Those who do not remember the past, cannot build upon it.

                  1 Reply Last reply
                  0
                  • S SPoss

                    Just updated office 365 and along with it Access 2016. I've never used it. Does anyone use it? What for? and should I?

                    C Offline
                    C Offline
                    Charles Wolfe
                    wrote on last edited by
                    #92

                    I have been using ACCESS for 20+ years. I have a client whose entire business runs on Access based software and she has had no problems for 18 years except when MS decided to not have backwards compatibility with certain functions or features as it released new versions. I have used it to keep my consulting business client work status and billing records for most of the 20 years. A colleague and I have been using it in as part of a commercial science researcher utilized product (VB for code and Access for the database) for 10 years without any Access problems; VB has given us may more problems as MS changed, dropped, etc. functions, function calls, etc. I noted at least one commenter stated that is is a terrible product and that a great many terrible applications have been written by bad programmers using it. Well, I have done software quality assurance for JPL/NASA and I can tell you that I've seen terrible programs written in over 20 programming languages and some utilizing a number of databases for back ends. I've seen terrible Oracle and DB2 code. A terrible software architect will design terrible software; and it goes all the way down to the terrible coder creating terrible code. This is not the criteria to use when deciding if some language or database system is the correct one to use for some purpose. ACCESS is great for simple database applications. It can be used for some rather complex ones also. It depends on the design of the database, the design of the code, the amount of time you are willing to spend learning relational database design and learning to code in Access's programming language. ACCESS is worth taking a look at and getting a decent book is the first step. I've not bought a new ACCESS book since Office 2007, so can't recommend one to you.

                    Charles Wolfe C. Wolfe Software Engineering

                    1 Reply Last reply
                    0
                    • S SPoss

                      Just updated office 365 and along with it Access 2016. I've never used it. Does anyone use it? What for? and should I?

                      R Offline
                      R Offline
                      rmorales87
                      wrote on last edited by
                      #93

                      I work as a file clerk for a government agency, and I worked with a guy who developed an Access application that parsed reports from our department mainframe into various smaller/localized reports, research tools, and worksheets for use by other clerks in our office. Some of these reports even make it all the way to department managers and HQ. It's a really handy little thing but he's not a strong programmer and the guy who actually designed it isn't around anymore. I made the mistake of mentioning I had programming skills... and here I am getting caught up in it. So when you're not able to install real technology, Access can fill the void. But it's painful. If you can convince your IT to let you use real programming tools and database libraries you'd be much better off.

                      1 Reply Last reply
                      0
                      • S SPoss

                        Just updated office 365 and along with it Access 2016. I've never used it. Does anyone use it? What for? and should I?

                        M Offline
                        M Offline
                        Mbithy Mbithy
                        wrote on last edited by
                        #94

                        Was my first database, it's been 3+ :sigh: years since I last used it.

                        1 Reply Last reply
                        0
                        • G georani

                          I use MS-Access. There is no other choice if you need a multi-user database shared over a network, and you can not install SQL Server or any other database server. You cannot achieve this with SQLite or SqlServer Compact Edition.

                          M Offline
                          M Offline
                          mtiede
                          wrote on last edited by
                          #95

                          I believe even Microsoft has said to NOT use Access for multi-user database shared over a network.

                          T 1 Reply Last reply
                          0
                          • M mtiede

                            I believe even Microsoft has said to NOT use Access for multi-user database shared over a network.

                            T Offline
                            T Offline
                            thewazz
                            wrote on last edited by
                            #96

                            where? i'd like to see that.

                            M 2 Replies Last reply
                            0
                            • T thewazz

                              where? i'd like to see that.

                              M Offline
                              M Offline
                              mtiede
                              wrote on last edited by
                              #97

                              Unfortunately, it was a LONG time ago when I read that. I think it was around the time Sql Server Express came out. Google or Bing will reveal many non-Microsoft people who have had trouble with corrupted Access database files when trying to share on a network. In fact, that was what caused me to first try Sql Server Express. I was brought in to help fix an Access application that was getting corrupt access network files. So I switched the whole Access application to using Sql Server Express instead and they never had another problem. At that time Sql Server Express was limited to 5 simultaneous usage, but I think they have taken that and other limits off in the more recent versions.

                              1 Reply Last reply
                              0
                              • T thewazz

                                where? i'd like to see that.

                                M Offline
                                M Offline
                                mtiede
                                wrote on last edited by
                                #98

                                Ah, Bing was my friend and found this: https://view.officeapps.live.com/op/view.aspx?src=http%3A%2F%2Fdownload.microsoft.com%2Fdownload%2F5%2Fd%2F0%2F5d026b60-e4be-42fc-a250-2d75c49172bc%2Fwhen_to_Migrate_from_Access.doc[^] Check round about page 8.

                                1 Reply Last reply
                                0
                                • D den2k88

                                  There is a Hell sepcifically for the people who thought of it. Not a circle - an entire Hell. Just for them.

                                  GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- ++>+++ y+++*      Weapons extension: ma- k++ F+2 X If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver "When you have eliminated the JavaScript, whatever remains must be an empty page." -- Mike Hankey

                                  M Offline
                                  M Offline
                                  Member 3156407
                                  wrote on last edited by
                                  #99

                                  Access front end SQL Server back end served me well for years in a large corporate environment. The report creation is a wiz , a lot easier to knock out a report that Reporting Services. I agree a large user base over a network is a bit iffy which is why I ported from an Access db back end , that said we managed up to 50 users across a network with no issues. I eventually ported it to SQL and ultimately it was "taken over" by a dot NET app , mostly because the IT dept couldn't cope with an Access App that worked !!

                                  Mike

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups