Forum Replies Created

Viewing 4 posts - 181 through 184 (of 184 total)

  • RE: Creating a unique Clustered Index on a view with NOLOCK option.

    In my first times I used to NOLOCK hint but it reads uncommited transactions and it is problem when you want to take stock amount or sales amount but...

  • RE: Query Execution time take nearly 30 min

    Sorryy query is here....

    SELECT wait_duration_ms,sys.dm_os_waiting_tasks.session_id,

    sys.dm_os_waiting_tasks.wait_type,STATUS,

    (select text from sys.dm_exec_sql_text(sql_handle))

    FROM sys.dm_os_waiting_tasks

    INNER JOIN sys.dm_exec_requests ON sys.dm_os_waiting_tasks.session_id=sys.dm_exec_requests.session_id

    where STATUS <> 'background'

    ESAT ERKEÇ

    not DBA not MVP

  • RE: Query Execution time take nearly 30 min

    Hi;

    I think run this query and look at the your sql statment wait type if wait type start LCK it means lock if another think post...

  • RE: query timed out

    I think you can create a temp table and insert the proc dataset in this table and then you can export this table.

    Esat Erkeç

Viewing 4 posts - 181 through 184 (of 184 total)