Forum Replies Created

Viewing 15 posts - 331 through 345 (of 1,583 total)

  • RE: Is SMTP services or IIS is mandatory for Database mail?

    selvakumar.sms (3/12/2014)


    Other server we are using window authentication credentials only.

    Depending on how your exchange/default SMTP server is configured, you may want to try changing your SMTP Authentication mode to "Anonymous...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: OPTION(RECOMPILE)

    There's nothing really wrong with using a parameter in a WHERE clause, however in cases where the parameter could drastically change the results, then it could have an impact on...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: SQL Server developer entry level jobs

    Monster.com, Indeed.com, Dice.com, LinkedIn, Google can give you a wide-range of candidate sites...

    Requirements are typically a "wish" list, however I wouldn't apply for a position where you have 3 out...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: How to use begin try and transaction with in a loop which call other stored procs.

    Man I don't know if that's real code of pseudo code (which I hope it is) because I've never seen BEGIN LOOP 😀

    Something like this might work (if you give...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Deadlocks - SQL Server Monitors for Deadlocks Right?

    SQL server makes you aware the deadlock occurred, but it's not causing the deadlocks, your code is causing the deadlocks (whether that be TSQL, application code, etc.

    Deadlocks typically...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Best way to store top 1 record of a table to reduce lookup

    Agreed. Thanks for the clarification!

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Best way to store top 1 record of a table to reduce lookup

    Sorry, I meant that if the column he's looking to find is a part of/ or is the clustered index, then the structure of the data is already sorted, so...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: rebuild index

    To add to what sqlbuddy has said, check the fragmentation percentage first, if it's quite low, don't bother rebuilding it unless you're seeing some performance degradation because of it. ...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Best way to store top 1 record of a table to reduce lookup

    If the "key" is a part of your clustered index then your top 1 select statement should pose very little overhead. If that's not an option, within your trigger...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: query timed out expired

    Yes, this is a server-level setting.

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: query timed out expired

    Check the "Remote Query Timeout" setting under your Connections tab for the SQL Server, you can set a default timeout from there, or set it to 0 (no timeout)

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: I need to delete 20 million rows from a table...

    You should be able to snag the total pages used from the DMV below:SELECT used_page_count, row_count

    FROM sys.dm_db_partition_stats

    WHERE index_id = 1

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: I need to delete 20 million rows from a table...

    TRUNCATE will be faster and be minimally logged (it will only log the page deallocations in the transaction log), if the data isn't needed this is the route to take.

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Snapshot Replication

    I believe there is an issue with your Log Reader Agent (you probably already know this) - it could be because something is blocking it on the publisher so check...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Greying out certian dates based on data

    Are you asking this from an SSRS report point-of-view? SSIS? Web application?

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

Viewing 15 posts - 331 through 345 (of 1,583 total)