Viewing 15 posts - 811 through 825 (of 5,103 total)
The real question is: why are you saying that there is write performance problems ?
December 22, 2008 at 2:52 pm
ps (12/22/2008)
WHERE ORDERDATE BETWEEN min(orderdate) AND max(orderdate)
This part of the query is culprit.
You just need to omit this condition. I guess u...
December 22, 2008 at 10:44 am
This is kind of a very open question. We can provide you with solutions to any problem you may encounter but replication is a very vast subject to be explained...
December 22, 2008 at 8:56 am
mshah23 (12/16/2008)
It is touching 8000 all the...
December 19, 2008 at 1:55 pm
Also UPDATE STATISTICS on very large tables could be a double-egde sword if there is data skewness ... You may want do a FULLSCAN for those cases.
December 19, 2008 at 1:53 pm
If you alter a view while users are connected you should also run sp_refreshview @viewname = 'viewname' 😉
December 19, 2008 at 1:15 pm
This is a shot in the dark but the First think I believe you should do is to make sure you have "windows" patched at the same level in both....
December 19, 2008 at 1:10 pm
timothyawiseman (12/13/2008)
December 15, 2008 at 1:36 pm
Seems to me that your real problem is a design issue.
Supposed you have a table of "scheduled" appointments table with (begin_datetime, end_date, salesman_id, appointment_id)
Whatever is not on that table means...
December 15, 2008 at 12:56 pm
The_SQL_DBA (12/15/2008)
December 15, 2008 at 12:10 pm
Excellent war story.
I think Rbarryyoung is right on the money. I believe that the lack of explicit transaction demarcation is the real problem.
Do you mind specifying explicit "begin tran"/"commit...
December 15, 2008 at 11:21 am
Rob X Miller (12/9/2008)
I have a question about the DBReINDEX.
We have a really nice MS Access DB that uses linked tables to SQL Server 2005. Having just started, I ran...
December 9, 2008 at 3:10 pm
Linked servers do not require the use of "openrowset/openquery/opendatasource".
You may want to try that instead.
December 9, 2008 at 2:59 pm
Can you post examples of destination table and source xml file?
With Operowset you can do the parsing on SQL Server itself:
INSERT Table
SELECT CONVERT(xml, BulkColumn, 2)
FROM...
December 9, 2008 at 2:44 pm
rshafer (12/9/2008)
December 9, 2008 at 12:51 pm
Viewing 15 posts - 811 through 825 (of 5,103 total)