Viewing 15 posts - 151 through 165 (of 247 total)
Eh, nevermind, it's "Invalid character value for cast specification". That's something different. Sorry.
October 6, 2009 at 7:07 am
Are you sure your dest column is wide enough to handle all the incoming text? Not sure, but it sounds like this...
The column status returned was: "The value could...
October 6, 2009 at 7:05 am
This was a great article, but typically when I start seeing needs like this, I start wondering if maybe a better solution would be to try something completely different. Once...
September 25, 2009 at 10:40 am
PaulB (6/5/2009)
Grant Fritchey (6/4/2009)A little more flexibility than bit, but then it has a little more flexibility than bit.
not sure if this is a circular reference or quantum-logic 😀
Perhaps Mr....
June 11, 2009 at 7:18 am
You forgot:
5) Access to the site will require a custom-built browser that is arcane, follows no known standards, and is difficult to install, requiring tweaking of hidden system files to...
June 10, 2009 at 7:16 am
Are you spelling the "raise error" correctly? It's "Raiserror", not "RaiseError".
April 3, 2009 at 10:20 am
I am puzzled how I hadn't seen the default length of 30 before, yet the great majority of over 800 respondents to this QOD got it right.
Some of us learned...
March 18, 2009 at 6:48 am
Aaarrgh! Stop already! This thread is like a giant bag of potato chips -- I just can't stop reading it!
Or are we going for a record number of posts on...
March 16, 2009 at 8:11 am
I certainly don't disagree, in fact I think you're in line with the point I was trying to make. That is, prefer readability and maintainability if possible. You may not...
March 6, 2009 at 8:44 am
I think that you could argue with your "senior programmer" that "a <> b" is more readable and maintanable and is thus the preferable method. A "senior programmer" should understand...
March 6, 2009 at 7:54 am
Let's see...I think it was in Hitchiker's Guide to the Galaxy...they took a galactic census but had to toss out the results when they discovered that the average galactic citizen...
October 14, 2008 at 6:56 am
HanShi (8/12/2008)
@Chirag: on the internet I've found "Min_active_rowversion() was introduced in SP2 for SQL Server 2005".
That's all well and good, but the question doesn't say "In SQL Server 2005, what...
August 12, 2008 at 6:47 am
...and, if you pass the data in as XML (or whatever other method you choose to pass in a chunk of data that you want to work on) then you...
April 16, 2008 at 6:54 am
You don't need a trigger...
[font="Courier New"]DECLARE
@userid UNIQUEIDENTIFIER,
@GroupID UNIQUEIDENTIFIER
SET @user-id = NEWID()
SET @GroupID = NEWID()
INSERT INTO User_Group_Map (UserID, GroupID) VALUES (@UserID, @GroupID)[/font]
Wrap it in a stored proc...
April 16, 2008 at 6:49 am
Viewing 15 posts - 151 through 165 (of 247 total)