Forum Replies Created

Viewing 15 posts - 46,426 through 46,440 (of 59,062 total)

  • RE: Are the posted questions getting worse?

    Ya gotta love it when the ops cooperate.

  • RE: Best Practice: Do not use wireless connections

    jac (12/22/2008)


    I agree that 99.9% of administrative duties can be safely used via a wireless connection, but I think if I have to run that script again (the other 0.1...

  • RE: GROUP BY, then COMPUTE

    Using Luke's good code example, you can label to "sum", as well...

    --create test table

    CREATE TABLE #test (

    id INT,

    amount MONEY)

    --insert sample data

    INSERT INTO [#test]

    SELECT 1,10.00

    UNION ALL

    SELECT 1,20.00

    UNION ALL

    SELECT 2,10.00

    SELECT CASE...

  • RE: Best Practice: Do not use wireless connections

    That's good advice if you're going to do something like that... but, most maintanence doesn't require a single connection like that. Not sure that's enough justification to give up...

  • RE: Updating Identity Column

    kashifyaqoob (12/22/2008)


    It is really helpfull for me. Thanks.

    Be very careful.... anytime you find the need to update or insert your own numbers into an IDENTITY column, you're probably doing something...

  • RE: Updating Identity Column

    Japie Botma (10/21/2005)


    Assuming it is not a live table and you know what and why you want to do this, you can remove the identity from the column, update the...

  • RE: Executing multiple .sql file using execute sql task

    Um.... I don't know much about IIS, but I'm pretty sure that you're going to have to make a trip to OSQL via a command shell call.

    The best thing to...

  • RE: Aggregate bit operator in TSQL

    Here's a real cheater method...

    SELECT SIGN(SUM(Col1+0)), SIGN(SUM(Col2+0)), SIGN(SUM(Col3+0))

    FROM SomeTable

  • RE: Hey, merry xmas and a happy new year fellow SQL dudes (and dudettes)

    Not sure I spelled it right but...

    "Gung hay fat choy"... happy new year!

  • RE: The Set-Based Limit

    Also, if the code really isn't "proprietary", post your procedureal code and let us have a go at it, eh?

  • RE: The Set-Based Limit

    Kit Brandner (12/22/2008)


    Try a 23-character long alphanumeric PIN code with certain characters excluded for legibility that can't be repeated in the database. So Jeff's solution wouldn't work. I suppose I...

  • RE: SQL 2005 write performance

    leonp (12/22/2008)


    1. This is an Informatica workflow from a UNIX server; reading from and writing back to the SQL server on Windows

    2. It has 7-8 processing steps for each of...

  • RE: converting int to char and concatenating

    In most cases, yeah...

    In that case, I dunno what the original problem was.

  • RE: SQL Help in populating a table

    Perry Whittle (12/22/2008)


    Jeff Moden (12/22/2008)


    Thanks for the kudo, J. :blush:

    better than a pork chop 😀

    Heh... ya know? And doesn't the word "kudo" sound cool? Sounds like the name...

  • RE: SQL Help in populating a table

    J (12/22/2008)


    Now, where is that article on the pitfalls of CLR? Eh?

    Here's the problem with that... long before the move to the new forum on SSC, Matt Miller and I...

Viewing 15 posts - 46,426 through 46,440 (of 59,062 total)