Raymond Lewallen

A few things .Net, a few things Sql

<September 2008>
SuMoTuWeThFrSa
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011


Navigation

General

Subscriptions

Post Categories



Database issues (RSS)

Sql Server 2000 and 2005
Generate Sql Server data dictionary table
View the article here at my new blog.

posted Friday, March 04, 2005 11:07 PM by rlewallen

Sql dependency report from query analyzer
View the article here at my new blog.

posted Wednesday, February 16, 2005 3:10 PM by rlewallen

Exception Handling in Sql Server 2005
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/raymond.lewallen/archive/2005/01/20/46560.aspx.

posted Thursday, January 20, 2005 11:56 AM by rlewallen

Random Password Generators and sourcecode
This page has been moved to CodeBetter.Com. Please update your links accordingly. The new post URL is: http://codebetter.com/blogs/raymond.lewallen/archive/2005/01/13/43938.aspx.

posted Thursday, January 13, 2005 10:21 AM by rlewallen

.Net and Sql Server webcasts from Microsoft in January
For those of you who don't go look, here is a list of .Net and Sql Server related webcasts from Microsoft coming this month:

1.   
Wednesday, January 05, 2005 8:00 AM (GMT-08:00) Pacific Time (US & Canada)
Audience: IT Professional 
2.   
Wednesday, January 05, 2005 9:00 AM (GMT-08:00) Pacific Time (US & Canada)
Audience: Developer 
3.   
Friday, January 07, 2005 9:00 AM (GMT-08:00) Pacific Time (US & Canada)
Audience: Developer 
4.   
Tuesday, January 11, 2005 9:00 AM (GMT-08:00) Pacific Time (US & Canada)
Audience: Developer 
5.   
Tuesday, January 11, 2005 1:00 PM (GMT-08:00) Pacific Time (US & Canada)
Audience: Developer 
6.   
Thursday, January 13, 2005 9:00 AM (GMT-08:00) Pacific Time (US & Canada)
Audience: Developer  
7.   
Tuesday, January 25, 2005 1:00 PM (GMT-08:00) Pacific Time (US & Canada)
Audience: Developer  
8.   
Wednesday, January 26, 2005 8:00 AM (GMT-08:00) Pacific Time (US & Canada)
Audience: IT Professional   
9.   
Tuesday, February 01, 2005 1:00 PM (GMT-08:00) Pacific Time (US & Canada)
Audience: Developer 

posted Wednesday, January 05, 2005 12:55 PM by rlewallen

SQL Server 2005 Technical Overview
Wednesday, January 5th, Technet webcast for the SQL Server 2005 Technical Overview
Microsoft SQL Server 2005 is the next version of the SQL Server product family. This new edition offers a number of enhancements to meet the needs of today's environment. This session presents the key areas of SQL Server of interest to the IT professional. We look at various security enhancements including the authentication changes, and we discuss the increased granularity of permissions that the new product allows. We look at availability and the changes to improve service availability and replication of data. We also cover the improvements in the manageability of the product.

posted Tuesday, January 04, 2005 7:10 PM by rlewallen

Don't forget the T-SQL Enhancements in SQL Server 2005 chat today
Today, December 16th from 2:30 - 3:30 PM PST.

In this chat, we shall be discussing the enhancements in T-SQL implementation of SQL Server 2005, like Exception Handling, Pivoting, XML specific and more.


You can find more information by clicking here.

posted Thursday, December 16, 2004 7:57 AM by rlewallen

A Simple Walkthrough for deploying a SQLCLR Stored Procedure
Brad over on the VS Data Team has posted a walkthrough for deploying a SQLCLR stored procedure.

Honestly, using .Net to create stored procedures to me is just a bad idea, in my opinion. Now you have application developers creating simple stored procedures and want their assembly added to the database, when they may not have the first clue about how performance may be impacted on the server. The developer may have no knowledge of index structures, triggers, foreign keys etc, and could very well be causing a bottleneck with the code they write when its simply doing nothing more than inserting, updating, deleting or selecting data. Leave the database and its purpose to the DBA's. Just because you can create a stored procedure in C# and put it in the database doesn't mean you should. Database programming is more than just creating a stored procedure to update data. If you understand the database architecture and the performance impacts your code will have and can avoid those bottlenecks when implementing your code, then by all means code your heart out, no harm done. I'm going to leave my simple stored procs in the database, written in T-Sql.

Now, to take the other side of the argument. There are some very complex business logic models out there in the world, and sometimes Sql server just can't put that data together cleanly enough, and sometimes, not at all. You end up with a stored procedure or a view that is gigantic, has case statements all throughout, has dozens of subqueries, even more joins and is just a nightmare to have to deal with. In these cases, this is where SQLCLR becomes useful to me. C#/VB is much more capable and just downright easier to code those complex business models when you need some data structures put together, and I am very much looking forward to migrating code already in .Net that handles these situations over to SQLCLR to be executed on the database server where it can become more closely knitted with the database itself.

posted Wednesday, December 15, 2004 7:30 AM by rlewallen

From Microsoft: Research Survey for leading edge developers
Via Kimberly Tripp, Microsoft has put out a research survey to get feedback on just how satisfied you are with your current development environments and data platforms.

It took me about 10 minutes to fill out.

posted Wednesday, December 08, 2004 5:07 PM by rlewallen

The earliest date held by Sql Server
Click here to view this article. It has been moved to my new blog.

posted Wednesday, December 01, 2004 1:48 PM by rlewallen




Powered by Dot Net Junkies, by Telligent Systems