Forum Replies Created

Viewing 15 posts - 151 through 165 (of 247 total)

  • RE: Finding Bad Data in CSV Import

    Eh, nevermind, it's "Invalid character value for cast specification". That's something different. Sorry.

  • RE: Finding Bad Data in CSV Import

    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...

  • RE: TSQL LAB 2 - Writing Conditional WHERE Clauses

    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...

  • RE: Access

    Gawd, I feel awful for actually knowing the answer. :sick:

  • RE: What is the equivalent to Yes/No data type in SQL?

    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....

  • RE: A great site like this - but for ORACLE.

    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...

  • RE: RaiseError in TRY/Catch block after XML Schema Collection Validation.

    Are you spelling the "raise error" correctly? It's "Raiserror", not "RaiseError".

  • RE: More Conversion Fun

    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...

  • RE: T-Sql rant

    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...

  • RE: a<>b OR not(a=b)

    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...

  • RE: a<>b OR not(a=b)

    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...

  • RE: Too Good at Data Analysis

    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...

  • RE: Rowversion

    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...

  • RE: How to insert more rows into sql server table using stored procedure?

    ...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...

  • RE: How to insert more rows into sql server table using stored procedure?

    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...

Viewing 15 posts - 151 through 165 (of 247 total)