Forum Replies Created

Viewing 15 posts - 20,866 through 20,880 (of 22,202 total)

  • RE: I got burned today at a SQL Server Interview!

    Evidently, geeks with weapons!

    :w00t:

  • RE: Coexistance with SQL 2005

    The good news is, it's working. I just finished the install and I'm looking at the February CTP, finally.

  • RE: Suppressing rows with NULL Values

    Get rid of the TOP 1 sub select in the SELECT clause, that's effectively a cursor in your code.

    Try using a LEFT JOIN?

  • RE: I got burned today at a SQL Server Interview!

    The axe is such a clumsy weapon. How about a katana? Unless the interviewers are wearing armor, then I'm going for a good broadsword.

    No pork chops!

    How about just coming as...

  • RE: Coexistance with SQL 2005

    Oh, and it happened to one other guy at my company too. He was able to get his uninstalled. Mine wasn't. I'm probably going to be rebuilding my lap top....

  • RE: Coexistance with SQL 2005

    I ran into a problem. It didn't prevent 2005 from working, but it did cause parts of the GUI in SSMS to stop working. I would be very cautious about...

  • RE: Suppressing rows with NULL Values

    Because you're grouping on everything, you'll get the max date for a distict select. You might want to look at something like:

    SELECT c.consultantid

    ...

  • RE: Result Set SQL Statement

    Do I have to setup a stored procedure, or just write a select satement?

    Yes.

    Oh, a little more? Fine.

    You can do either. The preferred approach when building applications is to create...

  • RE: Basics of SQL

    Another question far too dense to answer in a forum like this.

    However, a few pointers (and, as with everything in SQL Server, there are exceptions to every one of these...

  • RE: Select first row of multiple

    Another variation on what everyone else has done would be this:

    SELECT a.OH_DOC_TYPE,

    a.OH_DOC_NUM,

    a.OH_PO_NUM,

    ...

  • RE: Alternative to STATS_DATE?

    I doubt it's going to help, but you can call this in a cross database query. I used the example from BOL:

    SELECT 'Index Name' = i.name, 'Statistics Date' = STATS_DATE(i.object_id,...

  • RE: Insert Statement

    Darn it. Late to the game.

    Everything Matt said.

    😀

  • RE: Running query time estimate

    Nope. Not through anything available in the system for your basic queries. There is a way to output status on restores & backups & such.

  • RE: Insert Statement

    You can do this:

    INSERT INTO MyTable1

    DEFAULT VALUES

    Then, with that, you can capture the values you inserted like this:

    CREATE TABLE #Id ( id INT )

    INSERT INTO onecolumn

    OUTPUT inserted.id

    ...

  • RE: Suppressing rows with NULL Values

    It means your joins are probably returning more than one row from one of the tables. That's a pretty normal occurrence when using left joins. I'd first investigate the data...

Viewing 15 posts - 20,866 through 20,880 (of 22,202 total)