Forum Replies Created

Viewing 15 posts - 2,326 through 2,340 (of 5,843 total)

  • RE: Scalar UDF different performance on different server

    shahgols (11/7/2013)


    Hi all,

    I have a query that calls on a UDF. In staging, has the same number of records and schema, it runs in 25 seconds. On...

  • RE: NUMA - Node

    eyespi20 (11/6/2013)


    SELECT node_id, node_state_desc, memory_node_id, online_scheduler_count,

    active_worker_count, avg_load_balance

    FROM sys.dm_os_nodes WITH (NOLOCK)

    WHERE node_state_desc <> N'ONLINE DAC' OPTION (RECOMPILE);

    What information does this give...

  • RE: SQL Server 2012 backup file size too large

    You have RECOVERY MODE in FULL and you are not doing a transaction log backup. Without doing some form of transaction log backup the tlog will grow indefinitely.

  • RE: NUMA - Node

    sudhakara (11/5/2013)


    Hi,

    I need to verify memory size of each NUMA node in the system. Please share me the method how to confirm that all the NUMA nodes are configured correctly....

  • RE: SQL server 2012 HA and DR solution design for sharepoint

    bipan (11/5/2013)


    Hi Experts,

    We need to setup HA and DR solution in sql 2012 for Sharepoint.

    what is the best practice for implementing this.

    Should I have SQL clustering and High avaibilty groups...

  • RE: Express edition Performance tunning

    I thought there was a way to install the tools for SQL Express... but maybe said tools don't include Profiler.

  • RE: Query against snapshot databases create more physical io requests

    Ahh, I misread your initial post. I didn't note the PHYSICAL reads being different, just logical. I get the same output you do essentially.

    I would chalk it up...

  • RE: Log Shipping broken by Veeam

    a simple Binoogle search for 'veeam and transaction log shipping' will reveal several relevant pages about the "Do not truncate logs" setting.

  • RE: Query against snapshot databases create more physical io requests

    When I first read your post I was sure there would be some second query that was doing updates, which would cause extra IOs (in a manner of speaking) for...

  • RE: Query against snapshot databases create more physical io requests

    I see no different on my laptop. sql2012 dev build 3349

  • RE: Optimize an INSERT Statement

    Grant Fritchey (10/30/2013)


    Right with you til #5 Kevin. NEVER use ALWAYS and ALWAYS avoid NEVER. 😛

    Nice!! :w00t:

    I suppose there are times to use SELECT * (other than in (NOT)...

  • RE: Optimize an INSERT Statement

    T.Ashish (10/30/2013)


    I have received this script for optimization.

    I really have no clue on how can we optimize an INSERT statement, So I thought it would be good to share the...

  • RE: Deadlocks

    thisted (10/29/2013)


    So, possible solutions. I identified an index That is on the table, but isn't being used that I plan to remove. I also am looking...

  • RE: SPS 2013 on SQL 2012

    layakali.sql (10/29/2013)


    We are gearing up to deploy SP 2013 on SQL 2012. As HA/DR is required, we are looking at Synchronous DB mirroring and log shipping on a physical database...

  • RE: Deadlocks

    A SELECT statement requests a lock on one or more items, just like an UPDATE/DELETE/INSERT does. It is a SHARED type of lock, but a lock nonetheless. So...

Viewing 15 posts - 2,326 through 2,340 (of 5,843 total)