Forum Replies Created

Viewing 15 posts - 46 through 60 (of 219 total)

  • RE: Query Plan Weirdness

    It sometimes keep on showing this.Main thing is to make sure that you have that index and that index has improved your query performance. Also, before creating index make sure...

  • RE: Deadlock ?

    What is the reason to keep the select in the transaction? This might be causing the issue.It should be outside of the transaction. What is the isolation level?

    Can you post...

  • RE: Is it possible ??

    I want to know if it is possible to group by XXX XXX:XXX XXX: so the first two values ending in :

    I am not sure I got it. Are you...

  • RE: running DMV's for Performance issue

    if i get it right ( from your other post).. you want to monitor few procs. Then I would suggest that try extended events ( or even traces) and cpature...

  • RE: SQL jobs running too long for some days

    Try DMV's to see the plan and stats of these procedures,if it is still in cache.. Then that might give you idea on how to proceed. Trace will collect too...

  • RE: last day of any year

    hello fellas,i need some code or logic that will always provide the last day of any year.i know its a vague question but any help is appreaciated. thanks

    Last day...

  • RE: SQL jobs running too long for some days

    I assume that these SP's are running only during the batch and are not used during say daytime or like that as these drop and recreate indexes.

    Try to capture the...

  • RE: running DMV's for Performance issue

    Not all DMV's cause performance issue as this data is collected by the sqlserver only overhead is to query them.

    Some DMV's data is not collected by sql server but...

  • RE: Tuning the squel qeury

    You have two join conditions and these columns doesnt have the any statistics defined and thus uses default stats and which are causing the issue.

    AND ( TPTRJO1.STATUS NOT IN (...

  • RE: ANSI JOIN VS Microsoft join

    In Sybase people use the ANSI standrad but still there are people who use old style. For left join almost everyone uses the ansi standard as the old syntax *=...

  • RE: Tuning the squel qeury

    First of all thank you for the information..

    sys.dm_db_index_physical_stats table returns 2026 no of columns and the reason we have nvarchar data type is we need to support characters other than...

  • RE: Tuning the squel qeury

    I can not see the graphical plan but i could see the xml in text pad. It is using parallelism and in number of cases only one thread is bringing...

  • RE: Tuning the squel qeury

    I am not sure why you have so many column defined as nvarchar(64) which could be defined either as float,datetime, int,and normal varchar.

    This is the second instance on this forum...

  • RE: Tuning the squel qeury

    Anthony,

    I need to add one of these link in my signature.

  • RE: Tuning the squel qeury

    Can you please post the ddl of tables and the graphical sqlplan?

Viewing 15 posts - 46 through 60 (of 219 total)