Sponsor

2006/04/03

New Features for SQL Server 2005 Express

Subscribe to SQL Server Magazine: http://lists.sqlmag.com/t?ctl=25C33:610454

=================================

To ensure that future email messages you receive from SQL Server 2005 Express UPDATE aren't mistakenly blocked by antispam software, be sure to add sql_express@lists.sqlmag.com to your list of allowed senders and contacts.

==== This Issue Sponsored By ==== This email newsletter comes to you free and is supported by the following advertisers, who offer products and services that might interest you. Please take a moment to visit these advertisers' Web sites and show your support for SQL Server Magazine UPDATE.

Double-Take http://lists.sqlmag.com/t?ctl=25C2A:610454

Thawte http://lists.sqlmag.com/t?ctl=25C30:610454

=================================

April 3, 2006

1. Commentary - New Features in SQL Server Express Edition with Advanced Services CTP

2. From the Community - No SQL Express Web Hosts - A Source of Multiuser Confusion

3. Check It Out - SQL Server Agent Replacements

4. Events and Resources - Getting Closer to Real-Time BI with SQL Server 2005 - Migrate, Manage, and Monitor: Top Ten Tips for Upgrading to SQL Server 2005 - Spam Fighting and Email Security for the 21st Century: eBook

5. Featured White Paper - Exchange Backup and Recovery on an HP Blade System

6. New Product - Simplify Database Development

7. Announcements - SQL Server Magazine Spring Savings--Subscribe and SAVE 58% - Save 44% Off the Windows Scripting Solutions Newsletter

==== Sponsor: Double-Take ====

Start your disaster-recovery program before it's too late-- including defining the right plan for you, and mistakes to avoid when planning. Download this whitepaper at http://lists.sqlmag.com/t?ctl=25C2A:610454

1. ==== Commentary ====

New Features in SQL Server Express Edition with Advanced Services CTP by Michael Otey, mikeo@teca.com

Just when you thought you knew what SQL Server 2005 Express was all about, Microsoft releases a new version called SQL Server 2005 Express Edition with Advanced Services Community Technology Preview (CTP), which includes the new features in SQL Server 2005 Express Edition Service Pack 1 (SP1) CTP. No, Microsoft didn't release SQL Server Express with Advanced Services just to keep you guessing. The CTP includes features that were supposed to be in the original SQL Server Express release but were missing because the features weren't finished in time for the November 2005 release date.

For starters, the new SQL Server Express with Advanced Services CTP includes SQL Server Management Studio Express (SSMSE)--you don't have to download this application separately. Additionally, SQL Server Express with Advanced Services provides support for full-text search and the ability to view reports by using Reporting Services. Full-text search operates on words and phrases based on rules of a particular language to enable fast, flexible indexing for keyword-based queries of text data stored in a SQL Server database. The report-viewing feature lets you view Reporting Services reports by using SQL Server Express with Advanced Services instead of other SQL Server 2005 products. This feature can render reports in Microsoft Excel, Adobe PDF, image, print, and Dynamic HTML (DHTML) formats.

Even though SQL Server Express with Advanced Services lets you view Reporting Services reports, the CTP still lacks something that many SQL Server Express users want: the ability to create Reporting Services reports. That's where the SQL Server Express Edition Toolkit fits in. The Toolkit brings the Business Intelligence Development Studio and its report-design capabilities to SQL Server Express. You need SQL Server Express with Advanced Services to render reports you create in SQL Server Express Toolkit. Using the CTP and the toolkit to generate reports makes the reports completely compatible with the other members of the SQL Server 2005 product family.

You can download SQL Server Express Edition with Advanced Services CTP along with the SQL Server Express Edition SP1 CTP and associated toolkits at http://lists.sqlmag.com/t?ctl=25C29:610454

Although the standard SQL Server Express Edition download is 54MB, the new SQL Server Express Edition with Advanced Services is much larger--a little more than 234MB--and SQL Server Express Edition Toolkit is another 213MB. And remember, Microsoft uses the moniker CTP to indicate a beta product, so the company warns you against installing CTPs in a production environment. CTPs are released so that you can try new features before they're released. The final releases for SQL Server Express Edition with Advanced Services, SQL Server Express Edition Toolkit, SQL Server Express Edition SP1, and SSMSE are expected sometime this month. Like the original SQL Server Express and SSMSE, you can download SQL Server Express Edition with Advanced Services and SQL Server Express Toolkit free of charge.

==== Editor's Note ====

Meet Your Favorite IT Experts at Connections Europe in Nice, France, April 24-27 Did you know your favorite Connections conference is coming to Europe in April? Learn from your favorite authors live and in person, and hear directly from Microsoft experts about the next generation of Microsoft technologies. This is an action-packed event with four conferences located together for one rate: ASP.NET, Visual Studio, SQL Server and Exchange plus bonus sessions on Sharepoint and Windows! I'm going to let you know about a special rate -- when you buy your first conference registration at 1,100 euros, you can get additional passes at half off -- so partner up with your friends and take advantage of this great rate. The regular price is 1450 euros, so this is a big bargain, especially when you check out the lineup of speakers! To get your special rate, go to the following site to register today and enter promocode: EXPENL. Hope to see you in Nice! http://lists.sqlmag.com/t?ctl=25C38:610454

****** Sponsor: Thwarte ******

Discover how to ensure efficient ongoing management of your digital certificates, how your business will benefit by addressing unique online security issues and more! http://lists.sqlmag.com/t?ctl=25C30:610454

******************************

2. ==== From the Community ====

In this edition, I thought I'd share some users' thoughts and concerns about using SQL Server 2005 Express Edition in a multiuser environment. The Jump Start column will be back in the next edition of this newsletter.

No SQL Express Web Hosts

I tried to use Microsoft ASP.NET 2.0, Visual C#, and SQL Server Express on a Web-hosting service, but none of the Web hosts I contacted would host sites that were created in SQL Server Express. The hosting services told me that the main reason for not supporting these Microsoft applications on their hosting site was that the SQL Server Express applications created a separate process for each instance, which affected their server usage. I was beginning to use C# and SQL Server Express to rewrite my new Web site, but when I couldn't find a Web host, I went back to the Hypertext Preprocessor (PHP) version of my Web site and am continuing to use PHP open-source programming language to develop in MySQL. So I guess SQL Server Express isn't an option for a small business to use to create a Web site, correct? -- Susan Shemin

Great question, Susan. SQL Server Express uses the same core relational database engine as the other members of the SQL Server product family. After you enable network connections, SQL Server Express can serve a large number of users. In "Is SQL Server Express Multiuser-Capable?" (http://lists.sqlmag.com/t?ctl=25C32:610454 ), I talked about running your own Web server and using SQL Server Express as the back-end database. The information I provided described a somewhat different case than the way you're attempting to build your Web site. In your case, you're referring to using a third-party Web-hosting provider. Unless you buy a dedicated hosting plan (which is often too expensive for a small business) most Web-hosting sites won't let you install your own database server. You must typically use the same applications the Web host uses to develop your Web site. Because many Web hosts use the Linux platform, it's no surprise that MySQL is the database they offer most. Web-hosting sites that offer SQL Server Express do exist (e.g., http://lists.sqlmag.com/t?ctl=25C3B:610454 ) but most Web hosts that offer SQL Server support use the SQL Server 2005 or 2000 Standard or Enterprise Editions and share the installation with multiple clients. The problem of separate processes for each instance is a result of SQL Server Express's User Instance support. This feature is actually a deployment feature that's turned off by default. In the off state, SQL Server Express doesn't create separate database instances for each user. -- Michael Otey

A Source of Multiuser Confusion

Thanks for clearing up that misconception about SQL Server Express being unsuitable for multiuser applications. Do you know why so many people are confused about multiuser capability? Because Microsoft Developer Network (MSDN) indicates that you can't use SQL Server Express in a small workgroup environment. It's actually posted on the MSDN Web site. After reading that information, I worried about the multiuser thing for a long time. One MSDN article in particular that people keep referencing (and this is just one example that I can find quickly) is "Using SQL Express from Visual Basic 6" at http://lists.sqlmag.com/t?ctl=25C36:610454

The article says, "A final consideration for SQL [Server] Express is security. SQL [Server] Express is designed to be an application database, not a server database. The typical usage is to provide storage of application data on the desktop or laptop of the user. For this reason, by default, you can't make a remote connection to SQL [Server] Express. This, by itself, makes SQL [Server] Express safe from a whole host of attacks, such as SQL Slammer types of viruses."

You can see how this information would confuse people. The article tells everyone that the reason you can't access the SQL Server Express database across the network by default is because it's not meant to be used like this. -- Matt Ferguson

Matt, I certainly agree that this information contributes to the mistaken notion that SQL Server Express is not multiuser capable. I think the author of this quote was attempting to stress the security aspects of SQL Server Express by describing why network connections are off by default. SQL Server Express is designed to be a secure, out-of-the-box product with multiuser support that's fully capable of supporting the same multiuser connection and security models that the other members of the SQL Server 2005 family support. -- Michael Otey

==== Hot Spot ====

Scalable Software How much are you spending on IT compliance? Streamline and automate the compliance life cycle with this FREE white paper, and reduce your costs today! http://lists.sqlmag.com/t?ctl=25C2C:610454

3. ==== Check It Out ====

SQL Server Agent Replacements by Michael Otey

One MSDE feature that SQL Server Express lacks is support for SQL Server Agent, a job-scheduling service that lets you schedule automated and recurring jobs such as database backups. However, with SQL Server Express, you can use Microsoft Windows 2000 Task Scheduler to automatically kick off jobs. Additionally, some third-party products can fill this void. You might want to check out Vale Software's Express Agent at http://lists.sqlmag.com/t?ctl=25C39:610454

Let me know what solutions you're using at mikeo@windowsitpro.com.

4. ==== Events and Resources ====

Getting Closer to Real-Time BI with SQL Server 2005 Learn to incorporate new SQL Server 2005 services to create near-real-time business intelligence (BI) information without the need for a data warehouse. Live event: Thursday, April 20 http://lists.sqlmag.com/t?ctl=25C2B:610454

Migrate, Manage, and Monitor: Top Ten Tips for Upgrading to SQL Server 2005 Learn the 10 essential tips you need to know when upgrading to SQL Server 2005, including new features designed to help ease the process. Live event: Wednesday, April 26 http://lists.sqlmag.com/t?ctl=25C2E:610454

Spam Fighting and Email Security for the 21st Century: eBook Learn the best ways to manage your email security (and fight spam) using a variety of solutions and tips. http://lists.sqlmag.com/t?ctl=25C2D:610454

5. ==== Featured White Paper ====

Exchange Backup and Recovery on an HP Blade System Protect mission-critical business information stored on your high-availability Exchange systems when you implement backup and restore strategies. You'll also learn about key configuration and deployment considerations. http://lists.sqlmag.com/t?ctl=25C2F:610454

6. ==== New Product ====

Simplify Database Development by Blake Eno

Upscene Productions announced Database Workbench 2.8.5, a database development IDE that supports SQL Server Express. Database Workbench provides a single UI that performs all aspects of database development. The product provides code and object templates and lets you debug stored procedures and create and alter schema objects. In addition, you can convert existing schemas, generate test data, import comma-separated value (CSV) data, and run and analyze stored procedures. Database Workbench also features a point-and-click Grant Manager solution so you can easily grant rights to your users. For more information, contact Upscene Productions at http://lists.sqlmag.com/t?ctl=25C3C:610454

7. ==== Announcements ====

SQL Server Magazine Spring Savings--Subscribe and SAVE 58% Along with your 12 issues, you'll get FREE access to the entire SQL Server Magazine online article archive, which houses more than 2,300 helpful articles. This is a limited-time offer, so order now: http://lists.sqlmag.com/t?ctl=25C35:610454

Save 44% Off the Windows Scripting Solutions Newsletter For a limited time, order the Windows Scripting Solutions newsletter and SAVE up to $80. You'll get 12 helpful issues loaded with expert-reviewed downloadable code and scripting techniques, as well as hundreds of tips on automating repetitive tasks. You'll also get FREE, unlimited access to the full online scripting article library (more than 500 articles). Subscribe now: http://lists.sqlmag.com/t?ctl=25C34:610454

==== Contact Us ====

About the newsletter--letters@sqlmag.com About the commentary--mikeo@teca.com About technical questions-- http://lists.sqlmag.com/t?ctl=25C31:610454 About product news--products@sqlmag.com About your subscription--sqlupdate@sqlmag.com About sponsoring an issue of SQL Server Express UPDATE--Richard Resnick, rresnick@sqlmag.com

SQL Server Express UPDATE is brought to you by SQL Server Magazine, the only magazine devoted to helping developers and DBAs master new and emerging SQL Server technologies and issues. Subscribe today. http://lists.sqlmag.com/t?ctl=25C33:610454

Manage Your Account You are subscribed as news-and-stuff@arconati.us. To unsubscribe from this email newsletter, click here http://lists.sqlmag.com/u?id=28351AE7DCFB1F6CE450F3AC5FF1CA87

To manage your email account, simply log on to our Email Preference Center. http://lists.sqlmag.com/t?ctl=25C3A:610454

View the SQL Server Magazine Privacy Policy. http://lists.sqlmag.com/t?ctl=25C37:610454

SQL Server Magazine is a division of Penton Media, Inc. 221 East 29th Street Loveland, CO 80538 Attention: Customer Service Department

Copyright 2006, Penton Media, Inc. All Rights Reserved.

No comments:

Post a Comment

Keep a civil tongue.

Label Cloud

Technology (1464) News (793) Military (646) Microsoft (542) Business (487) Software (394) Developer (382) Music (360) Books (357) Audio (316) Government (308) Security (300) Love (262) Apple (242) Storage (236) Dungeons and Dragons (228) Funny (209) Google (194) Cooking (187) Yahoo (186) Mobile (179) Adobe (177) Wishlist (159) AMD (155) Education (151) Drugs (145) Astrology (139) Local (137) Art (134) Investing (127) Shopping (124) Hardware (120) Movies (119) Sports (109) Neatorama (94) Blogger (93) Christian (67) Mozilla (61) Dictionary (59) Science (59) Entertainment (50) Jewelry (50) Pharmacy (50) Weather (48) Video Games (44) Television (36) VoIP (25) meta (23) Holidays (14)

Popular Posts