Forum Replies Created

Viewing 15 posts - 106 through 120 (of 667 total)

  • RE: Are the posted questions getting worse?

    Chad Crawford (5/29/2013)


    Brandie,

    If you go to Crucial.com, you can either enter your mfg/model or use their tool to scan your laptop and they will tell you exactly what type...

  • RE: Are the posted questions getting worse?

    Chad Crawford (5/23/2013)


    uh.... where can I get one of those hammers? I use the "everything looks like a nail" quote often and that is an awesome visual. ...

  • RE: Are the posted questions getting worse?

    Edit: Oops, quoting the wrong post...

  • RE: SELECT INTO ignoring IDENTITY column

    ScottPletcher (5/21/2013)


    This should "turn off" the identity property:

    SELECT *

    INTO dbo.newtable

    FROM dbo.table

    UNION ALL

    SELECT TOP 1 (*)

    FROM dbo.table

    WHERE 1 = 0

    Nice one, Scott! Need to remember this.

  • RE: Are the posted questions getting worse?

    L' Eomot InversΓ© (5/20/2013)


    ... one originally Windows 2...

    Wow, someone else who remembers Windows 2.0. Second piece of software I got to write for my then-employer was for Windows 2.0. Read...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (5/20/2013)


    ... I just hope the Win 8 upgrade I bought allows me a free 8.1 upgrade. I'd hate to spend the money twice.

    According to this link[/url] it will...

  • RE: Help please

    BTW, personally I would find it much more intuitive to work from the left-hand side, where that one would be the one where I'd expect to have more new rows....

  • RE: Help please

    Vertigo44 (4/17/2013)


    I think I got it using a full outer join.

    Yes, it would, but it is not necessarily quite the thing you want, unless you want to see all the...

  • RE: filter duplicate students via T-SQL

    Apart from what Sean said (i.e. the missing DDL, which is basically table create statements plus some INSERT statements of sample data to create your scenario), I assume you also...

  • RE: Are the posted questions getting worse?

    ...Don't mind the goldfish...

    Now we eventually know what that avatar of yours represents πŸ™‚

  • RE: SQL JOINS

    Agree with Hugo (again), but then again I should have read the question properly and wouldn't have a red cross next to my answer. πŸ˜›

  • RE: Are the posted questions getting worse?

    Lynn Pettis (4/11/2013)


    This really makes one want to help, doesn't it.

    Dunno, but it really looks like he was dumped into getting this job done.

  • RE: Inserting into an auto increment PK field

    Something like this?

    CREATE TABLE myTable

    (

    ColA int NOT NULL,

    ColB varchar ( 10 ) NOT NULL

    );

    GO

    INSERT INTO myTable ( ColA, ColB )

    SELECT COALESCE ( MAX (...

  • RE: SQL 2012 and Windows 8

    mister.magoo (4/9/2013)


    ...

    extra thought: were you maybe installing a feature that was not compatible? I just installed the engine and management tools...

    No, it didn't get to the point where one...

  • RE: SQL 2012 and Windows 8

    opc.three (4/9/2013)


    I agree, it ought to work unless they are repositioning SQL Server away from Enterprise use and moving more towards Home use πŸ˜€

    πŸ˜€ indeed!

Viewing 15 posts - 106 through 120 (of 667 total)