Forum Replies Created

Viewing 15 posts - 14,011 through 14,025 (of 14,953 total)

  • RE: Identity Columns

    Edit: Removed redundant parts of my post, leaving nothing left. 🙂

    (In other words, yeah, I chose the is_identity answer, because that's the one I'd be most likely to use.)

  • RE: passing parameters to function w/ inner join

    Have you tried using my approximate solution? Should give you results in under a second.

  • RE: Easy or Hard

    I think creating barrier to entry is the wrong way to go. Sure, it makes it easy to write bad software (see my signature), but nothing we do...

  • RE: job properties-->new job?

    Definitely doesn't do that to me. Are you sure you're clicking Properties?

  • RE: Process Order in 'WHERE'

    There isn't a guaranteed sequence. SQL Server will decide how to resolve the query, and which sequence to apply Where statements in, based on how much work it thinks...

  • RE: How do you Create Table using the current Date for the name of the Tabe

    I believe DTS can do most of this work for you, if you want it to. You might want to look into using that.

  • RE: Working with strings

    There was an article on this page a little while back about generating running totals. The technique outlined in it should be able to do what you need.

  • RE: Data import from MS Access/SQL Server DB

    Take a look at OpenRowset in Books Online. It can connect to non-linked servers. Will that do what you need?

  • RE: Join issue

    Have you tried casting the columns as Int in your join?

  • RE: Single row from MAX

    It looks to me like you have different values in CurrentLevelXID column, and you are grouping by that column.

    Instead of grouping by all the columns, you should use a derived...

  • RE: Seeing Double

    You might get a concurrent select improvement if you had duplicate indexes on different drives/arrays and each select used a different one. Haven't tried that, don't really have a...

  • RE: querying a string

    Matt Miller (4/25/2008)


    Jeff Moden (4/25/2008)


    GSquared (4/25/2008)


    That's going to work better than spaces around the "like" statement. Of course, if you want it to include "pros" (plural), or "professional"/"professionals", you...

  • RE: Extracting Rows from Delimited Strings

    Jeff Moden (4/25/2008)


    Gus,

    This is an SQL Server 2000 forum... 😉

    Well, that'll certainly change a few things! (Like maybe I'll start paying attention.... nah ... that'll never happen.)

    For that, you'll...

  • RE: Selecting a blob

    Since it's binary, it won't have the contents in there in a selectable format. (At least, I'm pretty sure it doesn't.)

    SQL 2008 is supposed to be able to deal...

  • RE: stored procedures parameters from system catalog

    See my reply to your "regex" post for how to do this in 2005. There is a way to do it in 2000, using the system tables, but I...

Viewing 15 posts - 14,011 through 14,025 (of 14,953 total)