Viewing 15 posts - 496 through 510 (of 628 total)
Just to know what are the values they passing. And needs to pass different parameters for testing purpose.
May 30, 2014 at 11:47 pm
I haven't tested yet. But there are some temp tables in the SP. It is also causing for recompile
May 30, 2014 at 4:05 pm
Yes.
Sorry my bad some spelling mistake for declared table variable & Updating tablevariable.
Thanks everyone!
May 30, 2014 at 12:13 pm
Yes. I am aware of Go statement but here I am not using any batch terminator.
Declare @Myvar Tab(Id int, Latesttime DateTime)
Insert into @Myvar (Id, LatestTime)
(select Id, Latesttime from TableA...
May 30, 2014 at 11:48 am
No here I am talking about the exact duplicates. I have two indexes with only one same column for both. But having one with high user seeks and one with...
May 30, 2014 at 11:11 am
Actually I think I am doing some thing wrong here.
Actually I declared variable as table and inserted some values into that table variables from select statement of output from two...
May 30, 2014 at 10:46 am
Thanks for you replies.
I am thinking about applying union and exists. I have to see the columns & data types. If it works, I will check the time difference.
Actually his...
May 29, 2014 at 6:00 pm
Actually I tried with Outer Apply but it increased the execution time. Actually that SP is not taking that much time from SSMS but from the application it is little...
May 29, 2014 at 11:07 am
I am not sure why did they use no lock hint. They use without blocking. Might be they don't need accurate data. The dev lead think that we can do...
May 29, 2014 at 7:19 am
I am new to the environment. I think might be ID they use for the most of the queries. Is it better to leave that table with out creating any...
May 28, 2014 at 3:04 pm
So we don't need to consider about the user seeks here. Ok. Thank you.
May 27, 2014 at 1:54 pm
Yes you are right. Showing that the indexes are using and can't drop when you have partially duplicates.
If we have exact duplicates and both has user seeks
one has...
May 27, 2014 at 12:45 pm
They ask me to find the exact duplicate and partially duplicate Indexes. Also I need to drop the indexes that are duplicated either exactly or partially. So I have to...
May 27, 2014 at 11:59 am
Viewing 15 posts - 496 through 510 (of 628 total)