Framework Design, Agile Coach, President Oklahoma City Developers Group, Microsoft MVP C#, TDD, Continuous Integration, Patterns and Practices, Domain Driven Design, Speaker, VB.Net, C# and Sql Server
Browse by Tags
All Tags »
Sql Development »
Most Popular (
RSS)
-
Author Raymond LewallenIn an effort to provide information for those of you who are newcomers to databases, these Database Basics series of posts are targeted directly at you to help you understand and build better databases.
|
-
Author Raymond LewallenIn an effort to provide information for those of you who are newcomers to databases, these Database Basics series of posts are targeted directly at you to help you understand and build better databases.
|
-
Author Raymond LewallenIn an effort to provide information for those of you who are newcomers to databases, these Database Basics series of posts are targeted directly at you to help you understand and build better databases.
|
-
|
I haven’t posted in about a week because I’ve been busy. Tomorrow I leave on vacation, so I won’t be posting for at least another week. So I thought I would leave you with links to some of the most popular and most read posts on my blog, incase you missed...
|
-
|
How to use two new operators in Sql Server 2005 T-Sql
|
-
|
A look into the software life cycle models commonly used.
|
-
|
Here is an updated version of my random string or password generator for T-Sql, made into a stored procedure with some other modifications. The stored procedure /*************************************************************************** * Created By...
|
-
|
Here is another one of those files that just floats around in a SqlScripts directory on my computer. I've found this script useful many times. This was written by Clinton Herring many moons ago. This script will remove a login from Sql Server. What's...
|
-
|
I’ve answered this question many times, and answered it again this weekend. What is the difference when doing a DELETE TableA instead of TRUNCATE TableA ? A common misconception is that they do the same thing. Not so. In fact, there are many differences...
|
-
|
Sometimes you find these really old files floating around on your harddrive and you forget that you ever downloaded them. Here is one such example. I have no idea where I got this or who to credit for its creation, but I've had it for awhile and came...
|
-
|
Here’s a quick example on how to generate a data dictionary for your sql server database. T-SQL Data Dictionary create table #dd ( table_id int NULL, table_name nvarchar(128) NULL, column_order int NULL, column_name varchar(60) NULL, column_datatype varchar...
|
-
|
SQL Server 2005 provides a new exception-handling mechanism in the form of TRY...CATCH. In current version of Sql Server you have to include GOTO statements, and check @@ERROR after every statement is executed to determine if an error had occurred at...
|
More Posts