Forum Replies Created

Viewing 15 posts - 20,881 through 20,895 (of 22,202 total)

  • RE: Massive clean-up project

    Bloody hard and tedious work awaits.

    You have to update all the data and find the different variances for the company names. Worst possible problem to have. Follow the steps outlined...

  • RE: A Problem in creating "Update" procedure

    I think Sarvash hit the issue with the single quotes.

    Instead of "3/3/2008" in your SQL code. It should be '3/3/2008'

    Single quotes define a string, not double quotes, in TSQL.

  • RE: how to design

    That's a huge collection of really fundamental questions that just aren't going to be answered easily in a little post in a discussion group.

    In terms of database design, you should...

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

    Yeah, Brandie is right, kick your monitor "accidently" across the room. Keep Mr. Murphy happy!

    I am definately going to try the "Fear is the mind-killer" chant next time we're deep...

  • RE: Tracking Concurrent Logins

    Ah, well, that makes sense then. Still, I think you'd be able to avoid the scan. Look at the execution plan and see what criteria are being used by the...

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

    TheSQLGuru (3/7/2008)


    I guess someone has to play devil's advocate here, so here goes:

    Brandie, you are totally off the mark. Do whatever you can to make the most money so...

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

    All you can do is call them on it. If you're not satisfied with their answer, then evaluate your options.

  • RE: Tracking Concurrent Logins

    Based on the query above, I'm seeing slightly different results. I'm getting an index seek on the userlogin when I've got it indexed and a scan on the tableofdates (shock,...

  • RE: Need help with a Select Statement.

    And COUNT and possibly GROUP BY

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

    The company I'm at currently has an annual review process. You may or may not get a raise, but you'll at least know what the boss thinks of you and...

  • RE: Tracking Concurrent Logins

    Did you try putting an index on the time table? I think it'll make a bit of a difference. Same with your user login table.

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

    May as well pile on...

    Good Job Brandie. I couldn't agree more.

    Enjoying the work allows you to bring passion to the job. That passion will translate to accomplishments within...

  • RE: Stored Procedure

    Use the OUTPUT clause from the DELETE statement to insert the data as it gets removed.

  • RE: The next step in the design process?

    From what you described, I'd move on to coding now. As you code, when you get portions of the app working, run Profiler while you test the app so that...

  • RE: Tracking Concurrent Logins

    I tried it. It worked.

    I took your table & loaded it with data (still beta testing Red Gates SQL Data Generator). I then created this table:

    CREATE TABLE tableofdates

    ...

Viewing 15 posts - 20,881 through 20,895 (of 22,202 total)