wisemx

Stories submitted by wisemx

6 more months for SQL Server 2008 ReportViewer Control release(betav.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

I was wrong. Actually, I was mislead and believed what I was told about Visual Studio 2008 SP1 and SQL Server 2008 (Katmai) RTM. Apparently, the Katmai report processor was not incorporated into the ReportViewer (or as they now call it the "MicrosoftReportViewer") control during SP1. While it might look like Microsoft had upgraded the ReportViewer (it has the new "Tablix" control and other Reporting Services 2008 features), the RDL generated by the newly released Katmai RDL code generators is NOT compatible with Visual Studio 2008 SP1 version of the ReportViewer control. This means you can't take that set of reports you've generated with the new Katmai BI tools and import them into VS 2008 like you could take Yukon reports and import them into VS 2005 BI tools. They tell me that it's going to be another 6 months before the updated ReportViewer control hits the streets. By then we should have plenty of Katmai reports to import! read more...

add a comment |category: |Views: 33

tags: another

Bill Vaughn: SQL Server 2008 Enterprise Puffery(betav.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

Having been part of a marketing organization within Microsoft and other companies, I can understand why some folks feel it's important to show the Rolls Royce product in its best light. However, when I see how SQL Server Enterprise is being marketed, I'm dismayed. Consider that while Microsoft makes a bundle on SQL Server Enterprise Gold Trim Edition (a much as $25,000), they make quite a bit (if not more) on Workgroup and Standard (about $4000-$5000). And yes, even the free editions (Express and "SQL Server" Compact) bring in a lot of revenue indirectly. read more...

add a comment |category: |Views: 5

tags: another

Bill Vaughn looks at SQL Server 2008 RTM(developer.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

After the nine-hour download of the real SQL Server 2008 RTM from MSDN completed, I began the task of getting it installed on my new development system. It's an Intel Quad Core Duo with (only) 4GB of RAM, so you'll get an idea about how fast it is in comparison to yours when I start talking about timings. I was initially surprised to find that the setup paradigm you've grown accustomed to in SQL Server 2000 and 2005 has been replaced (again). It's too early to pass judgment, but I can say that it's different but intuitive. However, before I got to the first SQL Server setup dialog, I found that the installation script wanted to install version 3.5 SP1 of the .NET Framework. This might already be in place if you have installed Visual Studio 2008 SP1. As you'll see later, it's a great idea to update Visual Studio before you install SQL Server 2008—it won't install if Visual Studio is not at SP1. read more...

add a comment |category: |Views: 6

tags: another

The Curious Incident of the MessageBox in the Silverlight App(mtaulty.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

I've been puzzling over how you'd actually do; MessageBox.Show() read more...

add a comment |category: |Views: 15

tags: another

10 Invaluable CSS Resources(crazeegeekchick.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

First things first. I'm an application (middle tier) developer. My design skills while adequate, are not by any means what I'd like them to be. Like a good geek girl, I've been working on this. I've put together a list of very helpful CSS resources I've stumbled upon in my quest to improve my presentation layer skills. I thought I'd share them: read more...

add a comment |category: |Views: 500

tags: another

Get SQL Server allocation info inside SSMS(sqlblog.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

I just installed the Allocation Information add-in for SQL Server Management Studio. It's very cool having this tool integrated into SSMS. It is a free add-in published on CodePlex. Take a look, it does worth the download in my opinion. read more...

add a comment |category: |Views: 6

tags: another

Microsoft Academic Resource Center(academicresourcecenter.net)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

Welcome to the Academic Resource Center, your source for customizable curriculums and valuable in-class programs. You’ll find ready-to-personalize lesson plans, training materials, sample projects, and competitions designed to motivate students. read more...

add a comment |category: |Views: 9

tags: another

Silverlight: From-To Animation vs. Linear Keyframe(silverlight.net)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

In much of the writing about animation in Silverlight, one question that seems to recurs is this: why bother with a linear key-frame animation if it is less intuitive and more complex than a simple from-to animation Let’s back up and examine that for just a second. read more...

add a comment |category: |Views: 11

tags: another

130 Microsoft blogs from one Microsoft source(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

About BlogMS - Team Blogs at Microsoft Hi All, BlogMS was started in May 2008 in response to customers who wanted to feel closer to the product groups. The overall goal was to improve satisfaction levels among our customers and partners. From this site you will be able to receive regular weekly and monthly updates from product, support and other specialist teams within Microsoft - over 130 blogs in total ! Each week and calendar month a full summary of all the latest articles will be aggregated onto a single post on this site for you to review quickly and with ease. A report will also be attached which you can download with the same information. You will also be able to find a definitive directory of blogs for these teams. Announcements for additions or removals will be made through individual posts. Historically finding and keeping up to date with all the Microsoft teams has been a challenge. I hope you find this new resource valuable saving you both time and energy, and most importantly keeping you up to date with the wide-range of activities and announcements. Once you have identified articles of interest from a particular team - don't forget you can subscribe to RSS syndication feeds directly for that blog, or bookmark your favourite site. This blog site is focused on Microsoft team blogs. It currently does not include Microsoft individual employee or community based blogs. The value of these is well recognised within the community, however adding all of these would become overwhelming very quickly. A full directory of all Microsoft blogs can be found on the following website http://www.microsoft.com/communities/. Sign up and view via webview or directly via RSS. Nick. read more...

add a comment |category: |Views: 11

tags: another

Using [] and ESCAPE clause in SQL Server LIKE query(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

I innocently wrote this SQL SELECT statement to query all rows that have column value started with "[summary]": select * from MyTable where Description like '[summary]%' Then I was wondering why I could get a lot of rows returned and none of them started with "[summary]". Hmm, I think I need to look at the SQL Server reference. Well, I only remember the usage of '%' and '_' wildcards in the LIKE clause pattern. The first one will match empty string or any character(s), while the second one is to match any single character only. Apparently '[' and ']' characters are special wildcard to match any character within specific range, for example: '[a-z]' to match any character from a to z, '[xyz]' to match 'x', 'y' or 'z' character. So in my example above, it will query all rows with Description column started with either of these characters: 's', 'u', 'm', 'a', 'r' or 'y'. Therefore, I should use ESCAPE clause, and re-write the query statement to be: select * from MyTable where Description like '|[summary|]%' escape '|' This query now returns the correct result I want. read more...

add a comment |category: |Views: 15

tags: another

Professional look at Microsoft Tecnical Searches(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

Technical pros impressed with MSDN & TechNet Search After several releases focused on improving our site search's usability and usefulness (see posts here and here), and after seeing both the reaction to demos at TechEd and a few positive blog posts (like this one), we felt like our search app was ready to be put through the gauntlet. We asked 12 IT Pros and developers, both from within our MVP ranks and from without, to use our search engine as their default search for 12 days. For any Microsoft-related search, they used http://search.msdn.microsoft.com or http://search.technet.microsoft.com instead of Google or Live.com and let us know how it went. (Note that MSDN and TechNet search is powered by Live Search results, but with added features.) read more...

add a comment |category: |Views: 0

tags: another

Organize Usings Across Your Entire Solution(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

One of the features I worked on for the Visual Studio 2008 release was the new "Organize Usings" feature. This feature allows you to: Remove Unused Usings - Determines which using directives are not used in the current file and deletes them. Sort Usings - Sorts the using directives in a file. read more...

add a comment |category: |Views: 451

tags: another

Microsoft Poll: What makes a good Web Hosting Company?(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

As the web involves and the landscape of services offered by web hosts change along with it, I have wondered what make a good web host. It seems that today there is a proverbial chicken and egg scenario as relates to the hosting Industry Developers and businesses have needs of a host but many times the host has to determine what those needs are. How do host market to these audiences? How do they determine what they need to offer? How do developers and businesses alike decide what they want from a host? What makes one host better than another? Is it the services? Is it the support? As the industry evolves how are web hosts differentiating themselves? read more...

add a comment |category: |Views: 6

tags: another

New SQL Server Date DataTypes: Date, Time, DateTime2 & DateTimeOffset(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

Great video on the new Date DataTypes in in Sql read more...

add a comment |category: |Views: 34

tags: another

Free Edition of Kentico CMS for everyone!(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

Kentico CMS Free Edition Since the free license for .NET User Groups was very successful, we decided to release a Free Edition of Kentico CMS for everyone! It can be used for both personal and commercial projects. It’s intended for smaller corporate sites, on-line communities and personal sites (it also supports blogging). read more...

add a comment |category: |Views: 16

tags: another

Connect SQL 2005 MS to SQL Server 2008(blogs.msdn.com)

submitted by wisemxwisemx(8074) 3 years, 9 months ago

Connect SQL Server 2005 SSMS to SQL Server 2008 Not sure whether you've had to connect your SQL Server 2005 Management Studio to an instance of SQL Server 2008 yet, but I needed to do this today and got bitten by the fact that it doesn't work until you install the latest cumulative update to SQL Server 2005 SP2. You can download the update here. http://support.microsoft.com/kb/943656 read more...

add a comment |category: |Views: 4

tags: another