jokiz
(x-a)(x-b)(x-c)...(x-z)
Browse by Tags
All Tags
»
SQL
(
RSS
)
.NET
ADO.NET
C
com+
concurrency
continuous integration
debugging
design guidelines
NAnt
NHibernate
oop
rants
stored procedures
techie
tips
version control
visual studio
Sql Server Enterprise Manager context menu
Published 03-16-2006 4:37 PM |
jokiz
sql server and iis both uses mmc so they both are grouped together in windows xp. my question is why did ms designed the mmc such that the help menu is below the close context menu (which should have been the bottom menu as far as most windowed program...
TDS Protocol
Published 02-26-2006 2:24 AM |
jokiz
For most of you who have been using stored procedures and following the MS guidelines in .NET Application Development, you must have been using SET NOCOUNT ON as stated in Chapter 12 of the Improving .NET Application Performance and Scalability . Although...
SELECT COUNT(QUANTITY)
Published 02-14-2006 3:24 AM |
jokiz
i just got back from an interview with another local company after being invited by their CEO to explore my opportunities with them. it was unexpected that i scheduled for an interview today and you can find the reason on my personal blog (if you have...
VS 2005 and SQL 2005 Standard Editions
Published 01-26-2006 7:24 AM |
jokiz
I just got my copies. Thanks keith!
dropping all users before restoring a database
Published 01-11-2006 3:44 PM |
jokiz
during development, i always make use of backup-restore of test data and restoring a database requires that there is no other active connection to it. i have these three ways to deal with it. 1. use sp_who2 to determine the spid (what is spid again?)...
searching for columns with a specific data type
Published 12-08-2005 12:12 PM |
jokiz
i got tired of dealing with the text data type column used by the dba for optional fields in our DB like remarks and description. i keep getting errors in concatenation and specifically for union queries involving a field with the said data type since...
ANSI_NULLS OFF inconsistencies
Published 11-20-2005 5:09 PM |
jokiz
Basically I have this nullable column which I wanted to filter my resultset from. Let's take the authors table of the pubs database as an example. SELECT * FROM authors where au_fname = ISNULL(@firstname, au_fname) Seeing the query this way, I thought...
Datatype Precedence in SQL Server
Published 11-08-2005 10:37 PM |
jokiz
Wasn't really familiar with this feature of SQL Server until today. I have a 4-character field (BidTypeID) in SQL server which actually contains integers (pardon the design issues here people) which i have configured as flaggable enumerations in C#. My...
sql profiler filter by workstation
Published 09-12-2005 10:55 AM |
jokiz
i have been using profiler to easily monitor the commands being issued to our development database server. i haven't really read anything about it (aside from the autoscroll button post of the sql godess). i wanted to just filter commands being issued...
C style comments and keyword GO in T-SQL
Published 06-30-2005 6:57 PM |
jokiz
I've just encountered a weird error caused by a GO keyword lost inside a commented block using C style comment (/* */). My hunch is that the GO keyword (which is normally on a separate line) is treated differently by T-SQL parser. I will research on this...
Stored Procedure Versioning
Published 06-18-2005 3:48 PM |
jokiz
I have been wanting to put stored procedures in our current project under source control. Although changes to SPs will be minimal, we all know what we can get when we keep history of parts of our code and the ease of comparing them side by side. Searching...
SQL BOL(Books Online) Update
Published 06-17-2005 9:22 AM |
jokiz
I have just updated my SQL 2000 BOL for the first time and so far, I have noticed the annotations which are majority perf issues (my major concern in programming). You might just want to update yours as well... http://www.microsoft.com/sql/techinfo/productdoc...
COM+ 1.0 and SERIALIZABLE ISOLATION LEVEL
Published 06-16-2005 6:44 PM |
jokiz
Knowing the scenarios involved with the different Isolation Levels for SQL Server, I was surprised to find out a number of stored procedures being used in a project I'm involved with, has retrieval operations with a NOLOCK switch. I was searching for...
Default JOIN type
Published 06-16-2005 10:50 AM |
jokiz
Just bumped into a stored procedure made by a teammate using just a JOIN operator on two tables: FROM authors JOIN titleauthors ON ... Confused me a bit until I asked her what it does and she told me that it defaults to an INNER JOIN operation. As usual...
Disabling AutoScroll for SQL Profiler
Published 06-09-2005 7:04 PM |
jokiz
The SQL Profiler is one of the tools that I used in monitoring an SQL Server. The problem I have before was since I always watch the central database during development, I just want to watch a specific block of execution so I use the Pause or Stop buttons...
More Posts
« Previous page
-
Next page »
Search
Go
This Blog
Home
Contact
Tags
.NET
agile
ASP.NET
blogging
bug
C#
continuous integration
controls
design guidelines
designer
keyboard shortcuts
lokal
mobile
ms word
NHibernate
rants
resharper
SQL
subversion
tdd
techie
tips
version control
visual studio
windows forms
Community
Blogs
Blogs
Media
Forums
Archives
December 2008 (1)
December 2007 (3)
October 2007 (3)
September 2007 (2)
August 2007 (4)
July 2007 (9)
June 2007 (5)
May 2007 (12)
April 2007 (7)
March 2007 (8)
February 2007 (11)
January 2007 (15)
December 2006 (10)
November 2006 (8)
October 2006 (9)
September 2006 (20)
August 2006 (23)
July 2006 (17)
June 2006 (30)
May 2006 (27)
April 2006 (21)
March 2006 (24)
February 2006 (14)
January 2006 (5)
December 2005 (4)
November 2005 (7)
October 2005 (2)
September 2005 (7)
August 2005 (5)
July 2005 (6)
June 2005 (14)
May 2005 (4)
April 2005 (18)
March 2005 (17)
February 2005 (14)
January 2005 (8)
News
Subscribe to jokiz by Email
Syndication
RSS for Posts
Atom
RSS for Comments
Email Notifications
Go