It's a user friendly application used to store data (database).
You first build tables of information, and Access can store quite alot of information. From the tables, you then build queries, which find the information you are looking for in the tables of data you have built. Once the queries are built, you can transport the data to Excel (ie. Pivot Tables) or you can build reports and forms right in Access.
Alot of databases are built in Access and are used by multi-users for accessing information quickly.
I work with it every day in my work - it's great. But once you get too much information for Access to hold, you move on to SQL, which is just a pumped up version of Access, but it handles larger amounts of information more quickly.
Hope that makes sense.
2006-12-10 01:47:56
·
answer #1
·
answered by quay_grl 5
·
1⤊
0⤋
Microsoft Access is a large, somewhat complicated, database for storing information. It is being used more and more by people for all sorts of things, but you can also move the information from it to Excel or Word (or lots of other programs) to make the information easier to use once you have completed your work with Access.
2006-12-10 01:40:43
·
answer #2
·
answered by Anonymous
·
1⤊
0⤋
get admission to and Excel are very diverse from be conscious and Powerpoint. you isn't waiting to pretend understanding the thank you to apply them. If the activity calls for somebody who's as much as velocity right this moment, you won't be qualified. this is a sturdy component to comprehend earlier you get employed and lose credibility (and maximum probable your activity) interior of an incredibly short volume of time. whether, you may easily enable them to comprehend your modern MS place of work experience and your ability in be conscious and Powerpoint. Then state which you're keen to earnings the different 2 as quickly as a probability. some employers (like standard autos) furnish MS place of work suites for as low as $10 for his or her workers use AT homestead. it is so as that they might prepare making use of it and shop up with what's used on the activity. (that is MS way of coming up particular that all human beings else retains paying for the time of the nostril the remainder of the time.) besides, the employer you're finding at is additionally keen to hire you to your different skills in case you're keen to take training and are a quickly learner. you may look on line and come across a course available that starts quickly (or right this moment) and is as complete as a probability in as short a time as a probability. (extra on that below.) Then be arranged via rehearsing some thing to assert while this comes up in the interview. as an occasion, state actually (and succinctly) which you at the instant are not acquainted with get admission to and Excel, yet you're a quickly learner, are have checked into and are keen to take a course (call it especially) to deliver you as much as velocity as quickly as a probability. State which you think your different skills could make this mutually helpful employment and which you got here to the interview hoping to have the prospect to teach that. i've got secure a link for Microsoft place of work's very own loose on line self-education website. you additionally can prefer to look up paid centers earlier the following day, so which you will communicate with those if asked. keep in mind that in the event that they outright state which you at the instant are not qualified for that place, you may ask in the event that they have yet another place that would extra helpful in high-quality condition your skills, and to maintain you in techniques sooner or later. Even a referral to a various employer or a tenet on a job extra helpful suited is a helpful commodity at the instant. and that i do wish you may get the activity.
2016-12-13 06:09:55
·
answer #4
·
answered by mohrmann 3
·
0⤊
0⤋
Microsoft Access (current full name Microsoft Office Access) is a relational database management system from Microsoft, packaged with Microsoft Office Professional which combines the relational Microsoft Jet Database Engine with a graphical user interface.
Microsoft Access can use data stored in Access/Jet, Microsoft SQL Server, Oracle, or any ODBC-compliant data container. Skilled software developers and data architects use it to develop application software. Relatively unskilled programmers and non-programmer "power users" can use it to build simple applications. It supports some object-oriented (OO) techniques but falls short of being a fully OO development tool.
Microsoft Access was also the name of a communications program from Microsoft, meant to compete with ProComm and other programs. This Microsoft Access proved a failure and was dropped. Years later Microsoft reused the name for its database software.
Access 1.1 manual.
Microsoft Access version 1.0 was released in November 1992.
Microsoft specified the minimum operating system for Version 1.1 as Microsoft Windows v3.0 with 4 MB of RAM. 6 MB RAM was recommended along with a minimum of 8 MB of available hard disk space (14 MB hard disk space recommended). The product was shipped on seven 1.44 MB diskettes. The manual shows a 1993 copyright date.
The software worked well with very large records sets but testing showed some circumstances caused data corruption. For example, file sizes over 700 MB were problematic. (Note that most hard disks were smaller than 700 MB at the time this was in wide use). The Getting Started manual warns about a number of circumstances where obsolete device drivers or incorrect configurations can cause data loss.
MS-Access's initial codename was Cirrus. This was developed before Visual Basic and the forms engine was called Ruby. Bill Gates saw the prototypes and decided that the Basic language component should be co-developed as a separate expandable application. This project was called Thunder. The two projects were developed separately as the underlying forms engines were incompatible with each other; however, these were merged together again after VBA.
Access is used by small businesses, within departments of large corporations, and hobby programmers to create ad hoc customized desktop systems for handling the creation and manipulation of data. Access is not designed to build full web or browser based systems - tools like PHP/MySQL or Microsoft SQL Server or ASP or Alpha Five are better suited for this.
Some professional application developers use Access for rapid application development, especially for the creation of prototypes and standalone applications that serve as tools for on-the-road salesmen. Access does not scale well if data access is via a network, so applications that are used by more than a handful of people tend to rely on a Client-Server based solution such as Oracle, DB2, Microsoft SQL Server, Windows SharePoint Services, PostgreSQL, MySQL, Alpha Five, MaxDB, or FileMaker. However, an Access "front end" (the forms, reports, queries and VB code) can be used against a host of database backends, including Access itself, Microsoft SQL Server, Oracle, and any other ODBC-compliant product.
Many developers who use Microsoft Access use the Leszynski naming convention, though this is not universal; it is a programming convention, not a DBMS-enforced rule.
One of the benefits of Access from a programmer's perspective is its relative compatibility with SQL – queries may be viewed and edited as SQL statements, and SQL statements can be used directly in Macros and VBA Modules to manipulate Access tables. Users may mix and use both VBA and "Macros" for programming forms and logic and offers object-oriented possibilities.
MSDE (Microsoft SQL Server Desktop Engine) 2000, a mini-version of MS SQL Server 2000, is included with the developer edition of Office XP and may be used with Access as an alternative to the Jet Database Engine.
Unlike a complete RDBMS, the Jet Engine lacks database triggers and stored procedures. Starting in MS Access 2000 (Jet 4.0), there is a syntax that allows creating queries with parameters, in a way that looks like creating stored procedures, but these procedures are limited to one statement per procedure.[1] Microsoft Access does allow forms to contain code that is triggered as changes are made to the underlying table (as long as the modifications are done only with that form), and it is common to use pass-through queries and other techniques in Access to run stored procedures in RDBMSs that support these.
In ADP files (supported in MS Access 2000 and later), the database-related features are entirely different, because this type of file connects to a MSDE or Microsoft SQL Server, instead of using the Jet Engine. Thus, it supports the creation of nearly all objects in the underlying server (tables with constraints and triggers, views, stored procedures and UDF-s). However, only forms, reports, macros and modules are stored in the ADP file (the other objects are stored in the back-end database).
The programming language available in Access is, as in other products of the Microsoft Office suite, Microsoft Visual Basic for Applications. Two database access libraries of COM components are provided: the legacy Data Access Objects (DAO), only available with Access, and the new ActiveX Data Objects (ADO).
Microsoft Access can be applied to small projects but scales poorly to large projects owing to weak security, file size and database locking features.
All database queries, forms, and reports are stored in the database, and in keeping with the ideals of the relational model, there is no possibility of making a physically structured hierarchy with them.
One design technique is to divide an Access application between data and programs. One database should contain only tables and relationships, while another would have all programs, forms, reports and queries, and links to the first database tables. Unfortunately, Access allows no relative paths when linking, so the development environment should have the same path as the production environment (though it is possible to write a "dynamic-linker" routine in VBA that can search out a certain back-end file by searching through the directory tree, if it can't find it in the current path). This technique also allows the developer to divide the application among different files, so some structure is possible.
2006-12-10 01:41:32
·
answer #7
·
answered by Brandon A 2
·
1⤊
1⤋