Forum Replies Created

Viewing 15 posts - 20,296 through 20,310 (of 22,202 total)

  • RE: Expired date sort

    Do you mean something like this:

    SELECT...

    FROM...

    WHERE...

    ORDER BY CASE WHEN @MyVariable = 52 THEN Column1

    WHEN @MyVariable =...

  • RE: Clustered index sort order matters when loading?

    It doesn't sound like you need to worry about page splits.

    I've seen situations where dropping the index and recreate it work better and I've seen places where it made things...

  • RE: Clustered index sort order matters when loading?

    Short answer, it depends. If the data comes in ordered the same was as the index you'll minimize the amount of work the index has to do as it inserts...

  • RE: Looking for SQL Function equivalent to First in Access

    You should look to use the TOP (1) with an ORDER BY statement. You can modify the ORDER by to get a descending value, going from highest to lowest, by...

  • RE: US Client Expectation

    Native speakers of any language talk much faster than non-native speakers. Ask him to slow down a bit too. That usually helps.

  • RE: how can i avoid a column in a table from getting deleted?

    Do you mean delete data from the column? You don't mean the end-users of the app have DDL privileges?

    Assuming you want to protect the column... Only allow the users access...

  • RE: US Client Expectation

    Unfortunately, that can be a serious problem. I know we've passed up on bringing in consultants because their English was so bad that we couldn't understand them.

  • RE: US Client Expectation

    The key question would be, is he using slang or technical jargon? If he says that something is "cool" then he's using slang to imply that it's good or acceptable...

  • RE: Trigger Vs Output Clause

    Writing twice is writing twice. I've found the OUTPUT clause to be a bit more flexible in some ways than a trigger and it has the added value of being...

  • RE: SQL server 2005

    Open the configuration manager. Click on "SQL Server 2005 Services" on the left side of the screen. You should see a list of services include "SQL Server" or "SQL Server...

  • RE: Losing data in one specific table all the time

    Have you run Profiler to watch the code come across? You can at least see what procedure calls are being made with what parameters and then test those same calls...

  • RE: upgrade to 2008

    Since 2008 hasn't been released yet, I wouldn't suggest making that migration now. But since it's supposed to be released in August (assuming they don't slip again), if you can...

  • RE: Removing Referential Integrity for Performance?

    It is possible for the RI checks to be performance hit, sure. But if you've set up your tables & indexes appropriately, they shouldn't be. Doing an RI read on...

  • RE: WITH (NOLOCK)

    It's my understanding that if you mark a database as read only, no locking occurs. So if you have a warehouse type of app where you won't be modifying the...

  • RE: "different collation" error trying to set parameters

    I'm not sure. I've never seen it go off without there being a collation value set either on the table or column or parameter. If you're getting collation errors on...

Viewing 15 posts - 20,296 through 20,310 (of 22,202 total)