Forum Replies Created

Viewing 15 posts - 4,216 through 4,230 (of 49,571 total)

  • RE: Reduce core on SQL Server 2005

    Do what? You're going to have to give more info.

    Do you mean reducing the number of cores SQL uses?

    Do you mean reinstalling Windows with the server core option

    Something else?

  • RE: Row number over guid

    Elapsed time will mostly be display of data if you used SSMS (it's terrible about displaying data). Try inserting into a temp table to remove that factor.

  • RE: Clause in ON vs Clause in WHERE what's the best for performance

    scorpman (11/18/2015)


    Hi,

    I have a question, in terms of performance what's best in a query with LEFT JOIN:

    - Put the clause in ON of the LEFT JOIN

    - Put the clause in...

  • RE: Server Hacked

    I'd honestly recommend reinstalling the server. If those executables have been added, it suggests that whoever got access did so at the Windows level. You have no idea if there...

  • RE: Help with Punctuation marks in SQL

    Edit -> Advanced -> View White Space

  • RE: Row number over guid

    John Mitchell-245523 (11/23/2015)


    Oops, you're quite right! I'd still be interested to know what the performance difference is - I can't see it being significant. I shall post back...

  • RE: which way should I write JOIN Query ?

    As written, they're identical. If you were using a LEFT join, they'd have different meanings and different results. Nothing to do with performance.

  • RE: Data Profiling using T-SQL queries

    Could you explain further what it is you're looking for?

  • RE: Issue with database permission

    sysaltfiles is a system table, it's not accessible. What exactly do you want the user to be able to do?

  • RE: SQL 2014 estimated rows for calculated tables

    In-memory as-in Hekaton tables? The thread title says "Calculated" tables (which I read as derived tables), so which exactly?

  • RE: Temp table

    Does what not involve deadlocks?

    we call this proc at front end from one of the report and this report used by different users or same user in different session...

  • RE: Database Server Memory always showing 98%

    Then leave it as-is. There's nothing you've mentioned in this thread that's a problem. As mentioned before, SQL will use all memory that it's allowed to use. This is expected,...

  • RE: Temp table

    I wouldn't bother. If a temp table is created in a procedure, it's automatically dropped when the procedure ends, so there's no chance of getting errors if the procedure runs...

  • RE: Triggers on identity column

    Well, you can't update identity columns, so when do you want that trigger to fire? On what operation? When what happens?

  • RE: DDL Trigger Error

    All modification statements are part of a transaction and any trigger fires within that transaction.

    If the transaction is committing, then it's because a rollback isn't running. Maybe the raiserror is...

Viewing 15 posts - 4,216 through 4,230 (of 49,571 total)