Viewing 15 posts - 61 through 75 (of 86 total)
Yeah, I too feel the same, Clustering the Column2 might not be the right choice for my requirement, what I did is I created the Covering Index with the ON...
December 19, 2013 at 3:56 am
@Gail,
I am Sorry, just I am going to try your Idea, I was little bit busy (sorry to say this...) with daily task, I would let you know how...
December 18, 2013 at 5:12 am
As far as I understood, your table should be implemented with a Primary Key (Clustered preferrable), because then only Query Analyzer could sort the Data in a faster way, then...
December 18, 2013 at 12:45 am
Hi,
Yes, you have mentioned it in the SELECT Statement, but what's the reason is, it is simply a namespace error,
Check for the column Name in the MainTable.
Thanks,
Prabhu
December 16, 2013 at 1:17 am
thanks for your curiousness, I think it is around 1.something, (comparitively much better than earlier)
December 11, 2013 at 10:36 pm
Hi G.F,
yes,
it works as Charm..
Thanks,
Prabhu
December 11, 2013 at 5:47 am
multiple identifier "exhibitor.dbo.maintable.Mid"
you could have used this Column "Mid" from the table "MainTable" from the Exhibitor DB,
the SQL tells you that, particular column you are trying to use is...
December 11, 2013 at 5:15 am
NOLOCK = gives you data May be Committed or Uncommitted,
READPAST = Does not lock, but gives you only committed data
December 11, 2013 at 4:34 am
Yes,
DECIMAL(10,5) would be the good choice, as "10" stands for the Total Integer count allowed and the "5" stands for the scale where you can enter the max of .99999
but...
December 11, 2013 at 4:31 am
Correction:
It is Quite Good to use NOLOCK, but make sure you are NOTexpecting Data Consistency.
December 11, 2013 at 4:18 am
As the NOLOCK would ridoff the Lockings on the Situation, and as per your statement
"Not Used in Any REPORTING"
It is Quite Good to use NOLOCK, but make sure you are...
December 11, 2013 at 4:16 am
Hi Guys,
Thanks for the replies,
I would give you the Execution plan (XML File), give me couple of minutes.
Thanks,
Prabhu
December 11, 2013 at 3:43 am
Hi,
Here is where the problem:
update #regions set countryId = (select countryId from tbl_ip2countries where ipFloat between ipFrom and ipTo)
The above update statment will be executed on (roughly 2000 rows as...
July 29, 2013 at 7:19 am
Hi Gila,
Yeah, Its true, when I removed two un-wanted indexes over my table, I found the Eager Spool is removed from the Execution plan.
Thanks,
Prabhu
July 29, 2013 at 7:12 am
Viewing 15 posts - 61 through 75 (of 86 total)