By tag: 2005
0
kicks
Seup Your environment 4 WF with ASP.NET in VS 2005
what you need to know to set up your environment to use workflow foundation while still using visual studio 2005
0
kicks
How To: Rename SQL Server 2005 Database Using TSQL
For some reasons, DBA’s need to rename their Databases. One of the reasons might be to comply to Best Practices Policy changes.
Here we are going to rename our Database named “Bad_Ass_DB” into “Best_Practice_DB”. This is how Database renaming with TSQL is done in SQL Server 2005....
0
kicks
SQL Server 2005 Security Update (KB948109) fails to install with error
Gotcha to watch out for with the SQL security update.
0
kicks
SQL Server 2005: Immediate Deadlock notifications
Deadlocks can be a pain to debug since they're so rare and unpredictable. The problem lies in repeating them in your dev environment. That's why it's crucial to have as much information about them from the production environment as possible. This is one way of getting it immediatly when it happens,
0
kicks
New CTP for "Rosario"
Visual Studio 2005 (codename Whidbey) and Visual Studio 2008 (codename Orcas) ... What's Next in VS? it will be "Rosario" to check its new Features and Specifications and download its VPC
0
kicks
How to Query Active Directory using LDAP in SQL Server 2000 / 2005 ?
This article is about configuring SQL Server to query Active Directory using LDAP.
It also lists the possible columns that can be used with LDAP query.
0
kicks
Restoring VS2005's 'prop' snippet in VS2008
Automatic properties are nice, but sometimes they just won't do. Visual C# 2005 included a 'prop' code snippet for a full property with backing filed but 2008 changed the snippet to generate an automatic property. Here's how to restore the 2005 snippet.
0
kicks
Step by Step building a project template and wizard in VS 2005
Step by Step building a project template and wizard in VS 2005
0
kicks
SQL Server 2005 : Access Tables / Entities across Servers
Updating / Accessing data from another server is very easy using SQLServer 2005.
Its very handy to restrict access to Production Server.
0
kicks
Unique Data Columns in SQL Server 2005: A Quick Look
Some basic differences among SQL Server 2005 unique columns (primary key, unique key, unique identifiers etc).
0
kicks
Integrating Profiler and PerfMon Log Files
How to create a PerfMon counters log file and SQL Profiler Trace file, how to read them both and how to correlate the two files in SQL Profiler.
0
kicks
Back to Basics: Count, Count, Count, Sum or how to Count
There are at least 4 ways you can COUNT in SQL Server: COUNT(*), COUNT(ColumnName), COUNT(DISTINCT ColumnName) AND SUM()
All 4 combined can be used to speed up queries especially for reporting.
0
kicks
Migrating Web Application Projects between VS 2005 and VS 2008
If you move Web Application Projects between Visual Studio 2008 and Visual Studio 2005 and a machine that doesn't have Visual Studio 2005 installed you will find that the project doesn't load due to a build target difference.
0
kicks
Using SQL Server 2005’s OUTPUT to return generated identity with ADO.N
This article focuses especially on ADO.NET-side of handling the returned values from the SQL Server 2005's OUTPUT. It is a good alternative for the scope_identity() etc.
0
kicks
Introduction to Locking in SQL Server
Locking is a major part of every RDBMS and is important to know about. It is a database functionality which without a multi-user environment could not work.