Home > Computing and Information Technology > Databases > Database software > Microsoft Access Developer's Guide to SQL Server
25%
Microsoft Access Developer's Guide to SQL Server

Microsoft Access Developer's Guide to SQL Server

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Microsoft Access 2000 Developer's Guide to Microsoft SQL Server provides much needed information and guidance for the Access power user or developer who wants to exploit the power of SQL Server. Written by Access experts and Microsoft MVPs Mary Chipman and Andy Baron, this hands-on guide provides you with the practical knowledge you need to harness the enterprise-level power and scalability SQL Server offers, while using the Access tools you are familiar with. More than just a migration guide, you will benefit from the authors' expert discussions of topics including the new Microsoft Database Engine (MSDE), Transact SQL, building stored procedures and views, converting your applications to SQL Server, working with SQL Server security, and building Access interfaces to SQL Server databases.

Table of Contents:
Introduction. 1. Converting Your Access Database to SQL Server. Reasons to Upsize. Number of Users. Size of the Database. Performance. Transaction Logging. Data Integrity. Security. Administration. SQL Server Tools. Getting Started with the Upsizing Wizard. Versions of SQL Server Supported by the Upsizing Wizard. Access 2000-SQL Server 2000 Compatibility Issues. Unattended Upsizing. Upsizing Wizard Choices. What Gets Upsized. What Gets Ignored. How Indexes Are Handled. How Data Types Are Mapped. Upsizing Queries to an Access Project (ADP). Upsizing Forms to an Access Project (ADP). Upsizing Reports to an Access Project (ADP). Upsizing Gotchas: What to Watch Out For. What About Security? Using the Upsizing Wizard to Create Linked Tables. Upsize and Link to an Access MDB. The Upsizing Report. Testing the Result. Upsize to an Access Project. Upsizing with Previous Versions of Access. Upsizing Using Data Transformation Services (DTS). Using Linked Servers for Data Access. Beyond Upsizing: What's Next? How Access Handles Linked SQL Server Data. New Data Type Choices. Code Cleanup. Forms and Reports. Security. Summary. 2. SQL Server Fundamentals. SQL Server Editions. Features Supported. Pricing and Licensing. SQL Server Graphical Components. Enterprise Manager. Query Analyzer. Performance Monitor. Data Transformation Services (DTS). Service Manager. Client Network Utility. Server Network Utility. Books Online. The Server. Registration Properties. Server Properties. The System Databases. System Stored Procedures. Management. Database Maintenance Plans. Replication. Security. Support Services. Meta Data Services. About Multiple Instances of SQL Server. The Database. Files and File Groups. The Transaction Log. Database Components. What's New in SQL Server 2000. Installing SQL Server. Before Installing SQL Server. Setting Up the System Accounts. Domain User Account Requirements. Installing Database Components. Summary. 3. Understanding SQL Server Security. Why Security Is Important. Access Security Versus SQL Server Security. Letting Users In. Authentication Basics. Logins and Permissions. The Benefits of Windows NT/Windows 2000 Authentication (Integrated Security). The Benefits of SQL Server Authentication. How NT Authentication and SQL Server Authentication Work Together. Logins and Built-in Accounts. Granting Database Access to Logins. Understanding Fixed Server Roles. Understanding Fixed Database Roles. Object Owners. Working with User-Defined Database Roles. Understanding Application Roles. Keeping Track of Logins and Roles. Removing Users and Logins. Resetting SQL Server User Passwords. Understanding Permissions. The Three Types of Permissions. Implementing Security Using Stored Procedures. Implementing Security Using Views. Implementing Security Using User-Defined Functions. Implementing Column-Level and Row-Level Security. Encrypting Functions, Views, and Stored Procedures. What About Access Security? Security in an Access Database (MDB). Security in an Access Project (ADP). Upsizing Access Security Permissions on Tables. Defining the Goal. Determining the Methods. Using DAO to Retrieve Access Permissions. Using ADO to Set SQL Server Permissions. Summary. 4. Introduction to Access Projects (ADPs). About Access Projects. Advantages of Access Projects. Disadvantages of Access Projects. Creating a New Access Project. Connecting to SQL Server. Designing SQL Server Objects in an Access Project. Forms in Access Projects. Using Form Properties. Working with the Form's Recordset. Managing Your SQL Server Through an Access Project. Summary. 5. Linking to SQL Server Using Access Databases (MDBs). Advantages of Using a Jet Database (MDB) Front End. How Jet Uses ODBC. ODBC Components. Setting Up a DSN with the ODBC Data Source Administrator. Working Efficiently with Linked Tables. Linking Tables. Size Matters. Creating Efficient Bound Forms. Form Properties. Restricting Data with Prefiltering. Loading a Single Record from an Unbound Form. Filling List Boxes and Combo Boxes on Demand. Minimizing the Number of Recordsets Open. Using Pass-Through Queries. Creating a Pass-Through Query. Running a Stored Procedure from a Pass-Through Query. How to Pass Parameters to a Pass-Through Query. A Generic Procedure for Modifying Pass-Through Queries. Caching Data in Local Tables. Creating Local Tables. Refreshing Data in Local Tables. Tweaking ODBC Settings to Tune Performance. Using the Options Dialog Box. Using the Windows Registry. Using an MSysConf Table. Summary. 6. ActiveX Data Objects (ADO) Fundamentals. A Short History of Data Access Technologies. ODBC (Open Database Connectivity). DAO (Data Access Objects). Remote Data Objects (RDO). OLE DB. ADO (ActiveX Data Objects). Getting Started with ADO. Setting a Reference to the ADODB Object Library. Creating an ADO Connection Object. Declaring and Creating a Connection Object. Opening the Connection Object. Connection Properties and Methods. Creating an ADO Recordset Object. The Recordset's Open Method. Opening a Recordset. Updating Data Using Recordsets. Navigating, Searching, Filtering, and Sorting. Creating an ADO Command Object. Command Object Properties and Methods. The Execute Method. Executing a Simple Command. Executing a SQL Statement with Parameters. Executing a Stored Procedure. Executing a Stored Procedure with Parameters. Mixing and Matching the Three Objects. Opening Recordsets with Command Objects. Reusing Command Objects with Recordsets. Going Solo with the Connection Object. Returning Multiple Recordsets. Advanced ADO. Creatable Recordsets. Persistent Recordsets. ADO Events. SHAPE: Creating Hierarchical Recordsets. Streams and Records. Other ADO Libraries. Microsoft ADO Extensions for DDL and Security (ADOX). Microsoft Jet and Replication Objects 2.1 (JRO). Microsoft ActiveX Data Objects Recordset (ADOR). Microsoft ActiveX Data Objects (Multidimensional) (ADOMD). ADO.NET. Choosing the Best Tool for the Job at Hand. When DAO Is the Best Choice. When ADO Is the Best Choice. Summary. 7. Designing and Creating a SQL Server Database. Designing a Relational Database. Review of Relational Database Design Principles. Implementing Your Design in SQL Server 2000. How Databases Are Stored in Files. How the Transaction Log Works. Creating Databases Using the Enterprise Manager. Creating and Modifying Tables. Setting Relationships Between Tables. Summary. 8. Introduction to Transact-SQL (T-SQL). Defining Transact-SQL. A Brief History of the SQL Standard. The Evolution of SQL Server. What You Can Do with Transact-SQL. Working with Transact-SQL. Referring to Objects. Selecting Data. The SELECT Statement. The WHERE Clause. The ORDER BY Clause. Summarizing and Aggregating Data. The GROUP BY Clause. The HAVING Clause. Joins. Inner Joins. Outer Joins. Full Joins. Self-Joins. Using Subqueries. Union Queries. Updating Data with Action Queries. Using the INSERT Statement to Add Rows to a Table. Using SELECT INTO to Create a Temp Table. Using the UPDATE Statement to Modify Data. Using the DELETE and TRUNCATE Statements to Delete Data. Using Transact-SQL Functions. Working with Nulls. Date Functions. String Functions. Functions to Return Information. New! User-Defined Functions. Programming in Transact-SQL. Batches. Variables. Control of Flow Syntax. Other Querying Techniques. Top Values Queries. Creating Distributed Queries with Linked Servers. Summary. 9. Creating and Optimizing Views. Defining Views. View Syntax. What Views Are Good For. Rules for Creating and Using Views. Views and Security. Creating and Modifying Views. Creating Views Using the Create View Wizard. Creating Views Using the Enterprise Manager. Creating Views Using an Access Project. Creating Views Using the Query Analyzer. Using ALTER VIEW to Modify a View. Views, Subqueries, and Outer Joins. Sorting and Top Values in Views. Views with Functions. Using System Functions. Using Views with User-Defined Functions. Horizontally Partitioned Views. Using Derived Tables and Nested Views. Using Views to Update Data. Restrictions on Updating Data Through Views. Indexed Views. When to Use Indexed Views. When Not to Use Indexed Views. Requirements for Indexed Views. Indexed Views and Inline Functions. Optimizing Views and Queries. How SQL Server Processes Commands. Indexing Guidelines. Using the Query Analyzer to Tune Performance. Summary. 10. Programming Effective Stored Procedures. Stored Procedure Fundamentals. Understanding Batches, Scripts, and Stored Procedures. Basic Stored Procedure Syntax. Stored Procedures and Security. Tools for Creating Stored Procedures. Executing a Stored Procedure. What's Under the Hood. Compiling Stored Procedures. Understanding Transactions. Creating Parameterized Stored Procedures. Declaring and Using Variables in Stored Procedures. Input and Output Parameters. Error Handling in Stored Procedures. Preventive Error Handling. Returning Success/Failure Information. Handling Runtime Errors. Creating UPDATE, DELETE, and SELECT Stored Procedures. Creating an UPDATE Stored Procedure. Creating a DELETE Stored Procedure. Creating a SELECT Stored Procedure. Some General Guidelines for Writing Stored Procedures. Debugging Stored Procedures. Starting the Transact-SQL Debugger. Advanced Stored Procedure Topics. Using Temp Tables. Using Cursors. Stored Procedures and User-Defined Functions. The System Stored Procedures. Extended Stored Procedures. Summary. 11. Scaling Up with Unbound Access Applications. What Is an Unbound Application and Why Build One? Using Stored Procedures. Stored Procedures and Business Rules. Coding Conventions for Stored Procedures. Deciding Between Access Databases and Access Projects. Unbound MDBs. The Sample Application. ADO Connections: Using a Global Connection Object. Displaying Data in Unbound Forms. Creating an Efficient Search Form. Saving Changes to the Data. Unbound ADPs. Handling ADP Connections. Displaying Data: Creating Unbound Forms. Handling Subform Data. List Box and Combo Box Techniques for Unbound ADPs. Summary. 12. Building Access Reports from SQL Server Data. General Guidelines for Creating Efficient Reports. Fetch Less Data. Tune the SQL Server Tables. Preaggregate Data with Views. Preaggregate Data with Stored Procedures. Preaggregate Data with User-Defined Functions. Using Access Features to Filter Data. Opening a Report Using DoCmd.OpenReport. Reporting in Access Projects. Using Input Parameters. Using Server Filter By Form. Using the ServerFilter Property. Basing Reports on Views. Basing Reports on Stored Procedures. Creating a Crosstab Report. Basing Reports on Functions. Reporting in Access Databases. Basing Reports on Views. Basing Reports on Pass-Through Queries. Reporting on OLAP Data. OLAP Fundamentals. Working with OLAP Data in SQL Server. Setting Up a Linked Server. Querying the Linked Server. OLAP Reporting in Access Projects. OLAP Reporting in Access Databases. Summary. 13. Internet Features in Access and SQL Server. Publishing SQL Server Data to the Web. The Web Assistant Wizard. The SQL Server Web Stored Procedures. The Web Job. XML in SQL Server 2000. A Brief Introduction to XML. XML Features in SQL Server 2000. Before You Start. Using URL Queries in Access. Modifying Data Using Updategrams. Using OPENXML in Transact-SQL. Access Internet Features. Creating HTML and Active Server Pages from Access. Access 2000 Data Access Pages (DAPs). Using the Office Web Components. Deploying Data Access Pages. Summary. 14. Architecting Distributed n-Tier Applications. Overview of n-Tier Development. Explaining COM (Component Object Model). Microsoft Transaction Server (MTS). COM+. Microsoft Message Queue (MSMQ). Microsoft Internet Information Services (IIS) and Active Server. Pages (ASP). Web-Based Architectures. Where Does Access Fit In? Designing an n-Tier Application Around Access. Data Access with Class. Designing the Sample Application. Creating Middle-Tier Components. Using Visual Basic to Create COM Components. Moving Data Classes to Visual Basic. Installing the Middle-Tier Components in COM+. Client Setup. Resource Pooling of Middle-Tier Components. Security and Connection Pooling. Application Roles and Authentication. Summary. 15. Deployment, Tuning, and Maintenance. Tuning. Monitoring Performance. Getting Started with the SQL Server Profiler. Using the System Monitor/NT Performance Monitor. Using the SQL Server Agent. Backup and Maintenance. Transactions and Data Consistency. Analyzing Your Backup Needs. Don't Forget the System Databases. Performing a Database Backup. The Database Maintenance Plan Wizard. Restoring from a Backup. Restoring to a Point in Time Deployment. Microsoft Office Developer (MOD) Features. The Access Runtime. Running the Package and Deployment Wizard. Copying or Moving Your SQL Server Database. Summary. Appendix A. Resources. Books. Web Sites. Useful Downloads. Magazines and Journals. Index.


Best Sellers


Product Details
  • ISBN-13: 9780672319440
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Sams Publishing
  • Height: 229 mm
  • No of Pages: 864
  • Series Title: Sams White Book
  • Weight: 1396 gr
  • ISBN-10: 0672319446
  • Publisher Date: 20 Dec 2000
  • Binding: Paperback
  • Language: English
  • Returnable: Y
  • Spine Width: 48 mm
  • Width: 186 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Microsoft Access Developer's Guide to SQL Server
Pearson Education (US) -
Microsoft Access Developer's Guide to SQL Server
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Microsoft Access Developer's Guide to SQL Server

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA