PC Review


Reply
Thread Tools Rate Thread

Aaron Kempf's MCITP DBA proof

 
 
a a r o n . k e m p f @gmail.com [MCITP: DBA]
Guest
Posts: n/a
 
      5th Jan 2011
https://mcp.microsoft.com/authenticate/validatemcp.aspx

transcript: 944364
AccessCode: helloworld
 
Reply With Quote
 
 
 
 
Access Developer
Guest
Posts: n/a
 
      6th Jan 2011
"a a r o n . k e m p f @gmail.com [MCITP: DBA]" <(E-Mail Removed)>
wrote

> https://mcp.microsoft.com/authenticate/validatemcp.aspx
>
> transcript: 944364
> AccessCode: helloworld


Very _good_, Mr. Kempf. How come you just ignored so many requests to
provide a link to your certifications before?

So you have a certification that is 3 years and 11 months old, on a release
of a product that is "a few releases" out of date. My recollection is that
after some service packs to MS SQL Server 2005, there was MS SQL Server 2008
(for which there were some service packs) and that the current version of MS
SQL Server is 2010 (and there have been some service packs) and that it is
quite different/enhanced from MS SQL Server 2005.

You blather a lot about Jet (and you ignore ACE), and about ADPs being
better than MDBs but I don't see anything there that pertains to those at
all, nor to any developer skills.

Do you have certifications on any current software?


 
Reply With Quote
 
a a r o n . k e m p f @gmail.com [MCITP: DBA]
Guest
Posts: n/a
 
      6th Jan 2011
dude.. you're the retard that's saying that there is a SQL 2010?

stop talking **** about stuff that you don't understand.

there is NOT a version of SQL Server called 2010!


On Jan 5, 5:16*pm, "Access Developer" <accde...@gmail.com> wrote:
> "a a r o n . k e m p f @gmail.com [MCITP: DBA]" <aaron.ke...@gmail.com>
> wrote
>
> *>https://mcp.microsoft.com/authenticate/validatemcp.aspx
> *>
> *> transcript: * * * * *944364
> *> AccessCode: * * helloworld
>
> Very _good_, Mr. Kempf. *How come you just ignored so many requests to
> provide a link to your certifications before?
>
> So you have a certification that is 3 years and 11 months old, on a release
> of a product that is "a few releases" out of date. *My recollection is that
> after some service packs to MS SQL Server 2005, there was MS SQL Server 2008
> (for which there were some service packs) and that the current version ofMS
> SQL Server is 2010 (and there have been some service packs) and that it is
> quite different/enhanced from MS SQL Server 2005.
>
> You blather a lot about Jet (and you ignore ACE), and about ADPs being
> better than MDBs but I don't see anything there that pertains to those at
> all, nor to any developer skills.
>
> Do you have certifications on any current software?


 
Reply With Quote
 
a a r o n . k e m p f @gmail.com [MCITP: DBA]
Guest
Posts: n/a
 
      6th Jan 2011
the difference between SQL 2005 and SQL 2008.. is NOT that big

the difference between SQL 2000 and SQL 2005 is -HUGE-.

I'm incredibly well versed at Integration Services.. Analysis Services
-AND- Reporting Services.
My boss from Expedia told me that I was much better datamart developer
than anyone at Microsoft Consulting Services.

I've been writing SQL fulltime for 12 years. You haven't.
Stop talking **** about stuff you don't understand.

-Aaron





On Jan 5, 5:16*pm, "Access Developer" <accde...@gmail.com> wrote:
> "a a r o n . k e m p f @gmail.com [MCITP: DBA]" <aaron.ke...@gmail.com>
> wrote
>
> *>https://mcp.microsoft.com/authenticate/validatemcp.aspx
> *>
> *> transcript: * * * * *944364
> *> AccessCode: * * helloworld
>
> Very _good_, Mr. Kempf. *How come you just ignored so many requests to
> provide a link to your certifications before?
>
> So you have a certification that is 3 years and 11 months old, on a release
> of a product that is "a few releases" out of date. *My recollection is that
> after some service packs to MS SQL Server 2005, there was MS SQL Server 2008
> (for which there were some service packs) and that the current version ofMS
> SQL Server is 2010 (and there have been some service packs) and that it is
> quite different/enhanced from MS SQL Server 2005.
>
> You blather a lot about Jet (and you ignore ACE), and about ADPs being
> better than MDBs but I don't see anything there that pertains to those at
> all, nor to any developer skills.
>
> Do you have certifications on any current software?


 
Reply With Quote
 
Access Developer
Guest
Posts: n/a
 
      6th Jan 2011
"aaron.kempf [MCITP: DBA]" <(E-Mail Removed)> wrote

> there is NOT a version of SQL Server called 2010!


I encourage you, and anyone else who's interested, to Google or Bing
"Microsoft SQL Server 2010". If you weren't/aren't aware of that product in
the pipeline, you are nothing but a pretender to SQL expertise, no matter
what outdated certifications you claim. But, it seems reasonable if the
release date is further delayed, they'll rename it to "2011".

FYI, you haven't a clue to my SQL background. I will say that the ten years
experience about which you brag (true or not) is not impressive.

Larry Linson, Microsoft Office Access MVP


 
Reply With Quote
 
Access Developer
Guest
Posts: n/a
 
      6th Jan 2011
Salad,

Server databases are useful when

* dealing with VAST amounts of data (I doubt an MDB would be sufficient for
the Taxpayer table in whatever DB the IRS uses to keep income tax data, or
the history of purchases at a huge retailer like Amazon) as both MDB and
ACCDB are size-limited.

* dealing with large numbers of concurrent users (255 or more is the
physical limit of users that can be actively using an MDB, and I believe the
same limit applies to ACCDB, but 100 users is a practical maximum, IMNSHO).
You can handle more than 255 users when you use split front- and back-end
databases, but no more than 255 can be using the shared back-end MDB
database concurrently.

* the data is "mission critical" real-time data where extremely rapid
recovery is a requirement -- server databases typically have built-in
logging and recovery functions and, generally, are not corrupted by random
communications and power outages as a file-server database may be. This
generally is "abbreviated" as "reliability and recoverability". The work
needed to create a similar logging and recovery facility for Jet would be
significant; I've seen a few databases where the implementers chose just a
few critical tables and did that, but in many of those cases, I suspect
using an inexpensive (or "free") server DB would have been a better
investment.

In my personal experience, reliability and recoverability were the most
common requirements mandating a server database.

* if you have users on a WAN, especially if you have many users, because
more (not nearly all, especially if the application is well-implemented with
indexes) data has to be moved from the data store to the user's machine
(where the Jet or ACE database engine actually executes) where appropriate
use of a server DB can result in just the request (e.g., SQL) and result
data being transmitted.

* if you need extensive analytical capabilities for large amounts of data
(Mr. Kempf is correct on this, but fails to mention that to get all the
analytical and reporting features of MS SQL, you need the not-inexpensive
paid version).

* (this is a very common occurrence) your client's or your company has
adopted a server database as their corporate standard, and the IT department
insists it be used, or refuses to provide support for any other database you
choose. I've worked on some databases where this was the case, even where
the contractor doing the work would have preferred to use a different server
DB (e.g., MS SQL Server).

All that said, there are a very large number of database applications where
the MDB or ACCDB database is perfectly adequate -- individual and small
workgroup applications with fewer than 100 users which are on a single
machine or a LAN, which do not have immediate recovery needs (even though
the information may be critical to the business, most call an application
'mission-critical' only if it does have the stringent recovery
requirements). And, unless you are analyzing huge amounts of data, it can
be surprising what you can accomplish with a combination of Access (Jet,
ACCDB) and Excel. Access reporting is certainly the most capable reporting
function I have ever used on a PC, so I'd need a lot of convincing that
wouldn't be sufficient if someone proposed a _requirement_ for MS SQL Server
Reporting Services.

I've been using Access almost daily since 1993, and somewhat over half the
"paying work" I've done has been with Access front-ends to server databases,
all but a few used MDB, Jet local tables, and linked ODBC-compliant tables
on a server. Not only did I _not_ find ADPs to be "easier or better" but
found the ones I dealt with to be clumsy and inefficient because most had
been implemented by "refugees from the VB world" who did not understand
databases, and, thus, did not make even minimal, much less effective, use of
Queries, and such Access-specific features as Subforms.

(To be fair, I have also worked with a few MDB databases that appeared to be
a "classic VB application" implemented in Access, over the years.
Fortunately, in most of those MDB cases, we had authority to redo the most
inefficient parts. I have also had the good fortune to be in a position to
turn down some work on databases with all unbound forms and code accessing
the data, when I knew that customer expectations regarding requirements,
time, and effort were so unrealistic we could not have a successful project
outcome.)

Regards,

Larry Linson, Microsoft Office Access MVP


"Salad" <(E-Mail Removed)> wrote in message
news:3eKdnS8zId-(E-Mail Removed)...
> Access Developer wrote:
>
>> "aaron.kempf [MCITP: DBA]" <(E-Mail Removed)> wrote
>>
>> > there is NOT a version of SQL Server called 2010!

>>
>> I encourage you, and anyone else who's interested, to Google or Bing
>> "Microsoft SQL Server 2010". If you weren't/aren't aware of that product
>> in the pipeline, you are nothing but a pretender to SQL expertise, no
>> matter what outdated certifications you claim. But, it seems reasonable
>> if the release date is further delayed, they'll rename it to "2011".
>>
>> FYI, you haven't a clue to my SQL background. I will say that the ten
>> years experience about which you brag (true or not) is not impressive.
>>
>> Larry Linson, Microsoft Office Access MVP

> Larry, could you, or others provide some info? I have been doing Access
> for some years but I never was with a firm that seemed to need SQL Server,
> the MDB seemed to do a good enough job. But SQL Server is so popular it
> is worth knowing about.
>
> Looking at this link http://www.youtube.com/watch?v=bZX-CwRZE1w the author
> creates an ADP to NorthWind contained on SQL Server.
>
> It looks straight forward and easy to do.
>
> Then there's this link http://www.youtube.com/watch?v=b1Bp1QVcGLw where
> the author creates an ODBC data source. He selects the SystemDSN tab.
>
> What is the preferred method? Or does it matter?



 
Reply With Quote
 
Tony Toews
Guest
Posts: n/a
 
      7th Jan 2011
On Thu, 6 Jan 2011 13:35:13 -0500, "mbyerley"
<mDotByerley@VerizonDottieNettie> wrote:

>As a matter of practice, I use DSN-Less connections to bypass the need to
>mess with the ODBC applet on every machine(or write some special code to do
>it).


Agreed.

Tony

--
Tony Toews, Microsoft Access MVP
Tony's Main MS Access pages - http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
For a convenient utility to keep your users FEs and other files
updated see http://www.autofeupdater.com/
 
Reply With Quote
 
Tony Toews
Guest
Posts: n/a
 
      7th Jan 2011
On Thu, 6 Jan 2011 15:30:03 -0500, "mbyerley"
<mDotByerley@VerizonDottieNettie> wrote:

> I haven't used Access for a FE to SQL Server, so I can't speak to the
>tables showing up. I guess others will chime in on this for you, but the
>connection for SQL server can be made in your startup VBA in Access, so as
>long as your code is directed at a particular server name on the network,
>Tony's AutoFE should not be impaired in any way.


Correct. I have at least several users using the Auto FE Updater with
Access FEs and SQL Server backends. Some of which are household
names.

Tony
--
Tony Toews, Microsoft Access MVP
Tony's Main MS Access pages - http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
For a convenient utility to keep your users FEs and other files
updated see http://www.autofeupdater.com/
 
Reply With Quote
 
Tony Toews
Guest
Posts: n/a
 
      7th Jan 2011
On Thu, 6 Jan 2011 12:44:03 -0600, "Access Developer"
<(E-Mail Removed)> wrote:

> * the data is "mission critical" real-time data where extremely rapid
>recovery is a requirement


Or situations where it simply isn't practical or possible to load in
last nights backup and rekey the data. One example of this would be a
hotel reservations system or 800 number type of call center
applications.

Tony
--
Tony Toews, Microsoft Access MVP
Tony's Main MS Access pages - http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
For a convenient utility to keep your users FEs and other files
updated see http://www.autofeupdater.com/
 
Reply With Quote
 
Rick Brandt
Guest
Posts: n/a
 
      7th Jan 2011
Salad wrote:
> Larry, could you, or others provide some info? I have been doing Access
> for some years but I never was with a firm that seemed to need SQL
> Server, the MDB seemed to do a good enough job. But SQL Server is so
> popular it is worth knowing about.


I look at it from the other direction. Instead of when do you *require* to
use SQL Server I ask "when would you not?".

In my opinion if the organization is large enough to have a real managed
network, (domain controllers, file servers, managed backups, etc.), and has
at least one person charged with managing that network then there is no
reason NOT to use SQL Server. The exception being very trivial single-user
apps. The costs and additional work of doing so are negligible compared to
the benefits gained.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Aaron Kempf channell Microsoft Access 23 21st Jan 2009 08:01 PM
PING AARON KEMPF: PROVIDE THE LINK TO BACK UP YOUR LAME CLAIM So Sorry For Poor Aaron Microsoft Access 40 5th Aug 2008 10:04 PM
A note to Aaron Kempf Tony Toews [MVP] Microsoft Access 5 24th Mar 2008 03:46 PM
The Infamous Aaron Kempf..... WhytheQ Microsoft Excel Programming 0 18th Oct 2006 01:53 PM
An invitation to Aaron Kempf... =?Utf-8?B?VG9tIFdpY2tlcmF0aA==?= Microsoft Access 2 15th Nov 2005 08:52 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:29 PM.