Viewing 10 posts - 1 through 10 (of 10 total)
Yes, If I add clustered index - performance degradation disappears.
thanks.
December 20, 2013 at 3:02 am
Thanks for your replies.
But update statistics did not help
Table has no indices, I'll try clustered index and report results here.
I use the following scripts to model the issue:
1. Create table
create...
December 18, 2013 at 7:49 pm
s_osborne2 (7/18/2013)
Hi,I'd say the best way to keep downtime to a minimum is setup your new server and configure log shipping between the two servers.
Simon
I've tested that approach. Downtime is...
July 19, 2013 at 12:44 am
Eugene Elutin (5/21/2012)
That may help:It's still applicable to 2008.
Eugene,
This helps in search scenario, not grouping.
Do you know any other fulltext solution that allow fast grouping?
May 23, 2012 at 2:05 am
Thank you very much guys, all your advices are very informative, thanks again.
January 9, 2012 at 2:18 am
Both table variables and temp tables are created in tempdb and are kept in memory if it is possible. But:
Temp table has statistics and query plans are better (sometimes much...
March 6, 2011 at 11:47 am
Peter,
I'm not sure about elegancy but building XML by concatenating strings and tags requires encoding of string values. I'd recommend using XQuery here:
Select
No as 'Invoice/InvoiceNumber',
CustomerNo as 'Invoice/CustomerNumber',
...
March 6, 2011 at 8:15 am
Hi,
1. Both methods are not what you really need. You need to review OUTPUT clause of DELETE statement. It allows you to backup and delete rows with single statement
DELETE MainTable
OUTPUT...
March 5, 2011 at 12:06 am
Peter Lagerberg (3/4/2011)
Hi,I get the data as text values, not xml tags
Hi,
Your explanations are not very easy to understand... But you can try cast(Text as XML) as "*"
Simple working example:...
March 4, 2011 at 12:10 pm
bnordberg (10/14/2009)
March 4, 2011 at 1:59 am
Viewing 10 posts - 1 through 10 (of 10 total)