Writing a book means: Learning the word “NO”

As a book-writing newbie, I have had to learn to say “no” when I’m used to always saying “yes”. For example, I just turned down an invitation to speak at a conference in India. I’ve never been to India. I hope I’ll get invited again.

But you know it’s serious when I had to say “no” to watching the first NEW episode in forever of Two and a Half Men last night. It pained me to hear Rich laughing his butt off while I stayed in front of my computer and tried to keep focused.

It’s gotten to the point that I was grumbling about having to go to a Dr. appointment on Monday. But I figured, heck, if I die, I can’t work anyway, so I might as well go and make sure I’m okay. Luckily it wasn’t a doctor who work in the mental health field. Surely they would have locked me up immediately!

Then of course there’s the skiing and other forms of exercise that I’m not getting. Thankfully (for me, not for the Mad River Glen’s finances) the snow has been dreadful lately.

My saving grace was that the power went out yesterday for an hour. SO I went outside and took a “brisk walk” (is that a sign of age? Not even a run!).

I was thrilled this evening when Rich presented me with an altered part to an old bike trainer that I was hoping to use at least to get some spinning in. The trainer didn’t fit my bike. So Rich altered the part and now it fits. Yay. Of course, I’m not on it, I’m working (well, blogging only for a momentary diversion).

It just occurred to me that this blog post sounds like an Andy Rooney commentary. Egad! Well back to work. Tick tick tick.

Congratulations to Red-Gate

Red-Gate is one of those companies that you just can’t help but love. They produce phonemenally useful and popular developer /data developer tools, and the community facing people are a joy to work with. It doesn’t surprise me that this stems from a company with a good soul. So it’s no surprise (but still quite nice) to read that they have been chosen (for the 2nd year in a row) as one of the “Top 100 Best Small Companies to Work For” in the U.K. by the Sunday Times. Read more on Red-Gates’s website.

Crystal REports 2008 Service Pack provides integration with VS2008

In my article, What Visual Studio Developer Should Know about Crystal Reports 2008, for ASPAlliance, I pointed out the fact that CR2008 integrates with VS2003 and VS2005 but NOT VS2008 and that this would be eventually be rectified with a Service Pack.

Thanks to Guy Barrette’s blog post “Will the real Crystal Reports 2008 stand up?“, (and because I still can’t figure out how to subscribe to the Crystal Reports team blog), I learned that the service pack that fixes this is out.

The Crystal Report’s blog post about the service pack [Crystal Reports 2008 Service Pack 0] details the changes. Those related to Flash integration and Business Objects Enterprise connectivity aren’t of interest to me, per se, but the VS2008 integration definitely is. It also says that CR2008 now runs on Windows 64 bit O/S.

The blog also points out that “It is also now available through the Update Service.  Use Help > Check for Updates within Crystal Reports 2008 to update your version. “ but since my 30 day trial ran out I didn’t realize this. Now it’s time for me to see if the other showstopper problem for me has been resolved.

I’ll report back.

EF & LINQ to SQL queries against spatial data (not SQL Server 2008 though)

[thanks to Roger Jennings for the correction about spatial data]

Samir Bajaj, a developer on the Entity Framework team has begun his blog with a bang.

He describes a sample application (available on MSDN Code Gallery) that can switch  between LINQ to SQL or ENtity Framework, highlighting the differences between the two.

The application targets an business case that he is very familiar with  – searching  a database filled with drawings which are based on a collection of shapes. Samir has a background working for a CAD company and explains that it is a common task to search for drawings that contain particular shapes.

Thanks to SQL Server 2008’s new spatial data, this gets really interesting.

Added: While SQL Server 2008’s spatial data may have been an inspiration, it will not be not supported by LINQ to SQL or EF in the near future, so Samir is using his own techniques with SQL Server 2005.

Check out his blog post and then the app, called Sketchpad (requires SQL Server 2008 CTP)

More goodies for Developers in SQL Server 2008

A few days ago I wrote that I had learned about some of the new goodies in SQL Server 2008 that would be of interest to developers after watching Rick Dyess’ video, What about Developers? SQL Server 2008 and the Development Environment”

It must have been a busy day last December when another similarly enlightening email arrived in my inbox. Michael Campbell wrote a post for .NET Briefing entitled “SQL Server 2008: What’s New for Developers?”

Surprisingly there’s only a small overlap between the features that Rick highlights and those which Michael highlights, which means I get to learn more stuff! 🙂

While I have this in my inbox, I can’t find the post anywhere on the originating blog on the WindowsDevPro website, so I’ll highlight the things Michael wrote about:

The MERGE statement in t-sql lets you provide data for the database without having to predetermine if it’s an insert or an update. Today you first have to query to see if the primary key exists or not. If not, do an Insert, otherwise do an update. Very cool.

Table-Valued parameters lets you pass shaped data as parameters to a stored procedure. Cool again, or as Michaeal calls it, “wicked”.

While Rick also talked about the HierarchyID, Michael pointed out something interesting about it: What’s cool, or interesting, about this data type though, is that it’s an intrinsic CLR data-type – meaning that Microsoft is starting to leverage Common Language Runtime functionality natively. I wonder what other CLR additions we’ll see in the future.”

Intellisense, though I’m already a big fan of Red-Gate’s SQL Prompt, which constantly saves me from having to go poke around tables that I haven’t worked with in eons before I start building my queries, not to mention the help wiht operators and functions. I wonder how the built in Intellisense compares?

GROUPING SETS which work with teh GROUP BY clause to simplify grouping that you might otherwise perform by using a UNION ALL clause on a bunch of GROUP BY clauses.

XXL User Defined Data Types (the XXL is my term, not official). UDDTs can exceed 8000 bytes.

Thanks Mikey! 🙂