Viewing 15 posts - 301 through 315 (of 920 total)
The leaf levels of the clustered index contain the data itself, but the tree construction of the index levels above that is similar to the non-clustered index (my understanding, others...
June 12, 2012 at 1:07 pm
30 minutes is a long time for the volume of data you are talking about:
Check to see if the data is spread across the disks appropriately and that disk contention...
June 12, 2012 at 12:35 pm
Could be a candidate for a PIVOT, but hard to tell without table definitions, sample data, and all the stuff the first link on your signature line asks for 😀
June 12, 2012 at 12:28 pm
Please post the create statement for the tables and the indexes (data types are important). If this is an existing query, posting the actual execution plan would also be...
June 12, 2012 at 12:22 pm
An excellent set of articles on all kinds of XML processing. Well worth the time to read:
June 12, 2012 at 10:19 am
Just a guess. This will give you the common ids and a count of how many tables they were found in.
IF OBJECT_ID('TempDb..#Temp1') IS NOT NULL
DROP TABLE #Temp1
CREATE TABLE #Temp1(ID...
June 12, 2012 at 9:49 am
So you only want the ids that are in common between the result sets? Since #3 didn't return any results, that one is not counted?
I'm not sure the results...
June 11, 2012 at 2:47 pm
Not quite sure what you mean. Can you post some of the XML you have that would exhibit the problem and the results you'd want?
June 10, 2012 at 7:02 pm
The proc Lynn gave you returns different values when zip code/state/city combinations that are in the table and zip code/state/city combinations that are not in the table are passed...
June 8, 2012 at 4:39 pm
What do you want the proc to do if an invalid combination is passed in?
What do you want it to do when a valid combination is passed in?
June 8, 2012 at 4:24 pm
On the job step that does the backup, is it set to "Run As' some other account?
June 8, 2012 at 4:20 pm
Just a couple of points.
It doesn't bother you that you did someone's homework for them without asking them to contribute to the work? Zip codes have leading '0' in...
June 8, 2012 at 4:08 pm
When I run the data you gave us above through the SQL I sent you, I get
the attached results. If this is correct, the the SQL I sent...
June 8, 2012 at 3:32 pm
Viewing 15 posts - 301 through 315 (of 920 total)