Strangenut
Sign in
|
Join
|
Help
Home
Blogs
Media
Forums
Groups
Blogs
Tags
.net
ASP.NET
beginner
c#
C# 2008
CLR Stored Procedures
database
IIS7
Indexes
performance tuning
query execution plans
scott gu
silverlight
SQL Server
stored procedure
T-SQL
Visual Studio
xaml
View more
Blogs
RSS Syndication
Opml
Blogs on this Site
Sort By:
Most Recent
|
Most Viewed
|
Most Commented
How to access a control on a Master Page from an ASP.NET page using the Master Page
Today I had to figure out how to access a label control on the masterpage my page was using. It isn't quite as straightforward as one might imagine, but still not difficult. For this, I am using C# 2008 (v3.5) For this particular page, I have an <asp...
Posted to
.NET Programming Blog
by
dacrowlah
on 11-13-2008
Filed under:
C# 2008
,
ASP.NET
,
Visual Studio
,
.net
Writing Your First CLR Stored Procedure
In SQL Server 2005 and 2008 the Common Language Runtmie (CLR) is tightly integrated with the database engine, allowing you to write stored procedures in any .NET language such as C# and VB.NET. CLR stored procedures have some distinct advantages over...
Posted to
SQL Server Blog
by
dacrowlah
on 10-31-2008
Filed under:
T-SQL
,
database
,
SQL Server
,
c#
,
stored procedure
,
CLR Stored Procedures
How to enable CLR Stored procedures on SQL Server 2005 and 2008
In order to make CLR stored procedures run, you must first enable the CLR in SQL Server, other wise you will just get this error: Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option. Enabling the...
Posted to
SQL Server Blog
by
dacrowlah
on 10-26-2008
Filed under:
T-SQL
,
database
,
SQL Server
,
beginner
,
stored procedure
Making the case for stored procedures
On a few of the mailing lists I am on for developers (primarily ones related to web development), there is a recurring topic that always gets people into rather heated debates: to use stored procedures or prepared statements? Now, either one you choose...
Posted to
SQL Server Blog
by
dacrowlah
on 10-26-2008
Filed under:
query execution plans
,
T-SQL
,
performance tuning
,
database
,
SQL Server
,
beginner
,
stored procedure
Getting a range of values from an arbitrary starting point in T-SQL
Recently a friend of mine called with a question about how to do something in T-SQL that he wanted to do for the leaderboard for a game he wrote. The issue was that tens of thousands of people are playing his game (on the iPhone) and the screen real estate...
Posted to
SQL Server Blog
by
dacrowlah
on 08-07-2008
Filed under:
T-SQL
,
database
,
SQL Server
The Basics of Database Normalization - Explained
Data Normalization , refers to creating a structure to store your data in that results in reduction/elimination of redundant data. In a pure normalized form, a piece of data exists only in one place. Anywhere that the data is displayed is only making...
Posted to
SQL Server Blog
by
dacrowlah
on 07-30-2008
Filed under:
database
,
SQL Server
,
beginner
Engineering Managers: Top Ten Things Your DBA Should Be Doing
Recently I got a request for a top 10 list of things that a DBA should be doing on a daily basis from an engineering managers perspective. Well, here is what I came up with, and please note, that this list is dependant on the poor guy being a full-time...
Posted to
SQL Server Blog
by
dacrowlah
on 06-24-2008
Filed under:
T-SQL
,
database
,
SQL Server
How to alter a table that is being published for replication
Many times I have found myself needing to make changes to an existing table that is being published for replication. Here is a script that I have been using for a few years now that has served me well and never caused issues. Hope you find it useful....
Posted to
SQL Server Blog
by
dacrowlah
on 05-06-2008
Filed under:
T-SQL
,
database
,
SQL Server
Paging and Available Memory for Operating system, what you need to know?
Found this great article on interpreting PERFMON statistics. Being able to make sense of this is critical to doing advanced performance tuning on your SQL Server. This type of stuff goes more towards system administration more than programming. I myself...
Posted to
SQL Server Blog
by
dacrowlah
on 04-26-2008
Filed under:
performance tuning
,
database
,
SQL Server
New Log Reporting, Database Management, and other cool admin modules for IIS 7
Found this post over on ScottGu's blog today, highlights some of the new featuresof IIS7. Man, I can wait to play with this! From Scotts blog: One of the core priorities we focused on when building IIS 7 was to enable a rich .NET extensibility model...
Posted to
SQL Server Blog
by
dacrowlah
on 04-26-2008
Filed under:
scott gu
,
IIS7
Just a quick post for Easter 2008
Ok, so it's a little late, but just uploaded some pics of me and some friends at Dolores Park in San Francisco dressed as easter peeps. There is also a YouTube video with many cameos of us :-)
Posted to
SQL Server Blog
by
dacrowlah
on 04-14-2008
ClearTrace - great free tool for troubleshooting database performance issues
ClearTrace is a free tool available for download that will analyze SQL Server trace files and trace tables to give you a normalized view of query performance. It offers various sorting capabilities From the site: ClearTrace imports SQL Server 2000 and...
Posted to
SQL Server Blog
by
dacrowlah
on 04-10-2008
Filed under:
performance tuning
,
database
,
SQL Server
How to manually override the path of a full-text index in SQL Server
Recently I had to migrate our primary databases to a new server. Yaay for the faster hardware, everything went smoothly until the next day when users started reporting that searches were failing. Turned out to be the full text catalogs do not move over...
Posted to
SQL Server Blog
by
dacrowlah
on 04-10-2008
Query to get the parameter list along with datatypes and maxlength for SQL 2005
Today we had a need for a query that would return information on a stored procedure and give us a list of parameters, datatypes, and max values. This functionality is built into the data adapter but we wanted a little bit more flexibility on how we used...
Posted to
SQL Server Blog
by
dacrowlah
on 04-10-2008
Filed under:
T-SQL
,
database
,
SQL Server
,
stored procedure
What is a table scan?
In the world of RDBMS' you may hear the term "table scan" thrown around, this is a term used to describe an event that occurs when you search for data in a table, and your query either doesn't take advantage of an existing index, or...
Posted to
SQL Server Blog
by
dacrowlah
on 02-24-2008
Filed under:
query execution plans
,
performance tuning
,
SQL Server
,
Indexes
,
beginner
1
2
Next >