Viewing 12 posts - 1 through 12 (of 12 total)
Thank you guys...
This time I pressurized the client to consider adding unique keys to the tables those don't have one already. And I think they are considering, because they...
June 19, 2012 at 10:57 pm
Yes I know, but my problem is... we have a whole DB's tables to be migrated and client is reluctant to creating extra identity columns for DB size issues when...
June 19, 2012 at 3:46 am
I think, that won't work... As I already said that the table_ name comes from a user input. I am do not know which table it is going to ask...
May 29, 2012 at 10:23 am
Gail,
I tried everything, but nothing is faster or slower... everything is taking equal ms.. some times...
February 20, 2012 at 4:31 am
What I checked from the execution plan in the DEV environment is that, it is taking a clustered index scan for the NOT IN operation. whose cost is 27%. There...
February 20, 2012 at 3:23 am
Thank you Grant for the prompt response.
Regards,
Snigdha
February 6, 2012 at 3:46 am
This column has some 350 distinct values among 7000 rows in total. Is it a good candidate for creating a index on it? It also has around 3000 NULL values....
February 6, 2012 at 2:30 am
Hi everybody,
Thanks for your replies. I will make the scenario little bit clear now....
February 2, 2012 at 10:08 pm
Thank you Sir!
As you said, that's an old tradeoff :). I will have to monitor the index size...
January 17, 2012 at 5:56 am
Thanks a lot guys for your responses!
I tested every option, the third one only gives an index seek for every required search condition. the second one gave me either index...
January 17, 2012 at 2:21 am
Try this...
select ILE.[Item No]
Item.[Item Name]
ILE.[Customer No]
Customer.[Customer Name]
ILE.[Location Code]
Location.[Location Name]
ILE.[Country Code]
Country.[Country Name]
ILE.[State Code]
State.[State Name]
Dimension.[dimCategory Code]
Dim Category.[dimCategory Name]
from ILE
left outer join Items on (ILE.[Item No] = Items.[Item No])
left outer join...
September 26, 2011 at 1:01 am
Viewing 12 posts - 1 through 12 (of 12 total)