Viewing 15 posts - 46 through 60 (of 133 total)
SKYBVI (10/27/2010)
r u running ur log shipping 24 hours??
u can skip for 5-6 hours everyday and during that time you can run this reindexing job..
Mine works like this only...
October 27, 2010 at 2:53 pm
Your friend solved the problem using a CTE, which is a feature not available in sql server 2000. The solution can be reworked to work in sql server 2000, but...
October 22, 2010 at 9:39 am
Ah, its refreshing to know that I'm not alone in my quest to quell the uprising of 1,000 page reports. "A data dump is different than a report. SSRS is...
October 22, 2010 at 9:07 am
This isnt really a direct answer to your question but more of a suggested workaround -
Typically when I've come across this issue, I'll move some of that work off...
October 22, 2010 at 7:47 am
We're gonna need more details from you to give you a satisfactory answer. Think we can get you to post some code/table definitions of the poorly performing proc?
A good way...
October 19, 2010 at 12:07 pm
So, assuming I understand you correctly, #t1 is already populated and you just want to split the data into 2 different tables?
SELECT ID, pre
INTO #t2
FROM #t1
SELECT ID, post
INTO #t3
FROM...
October 18, 2010 at 9:00 am
Since a subscription is really just a sql server job, I'd just create a new job that executes a proc. the proc executes "SELECT job_id, [name] FROM msdb.dbo.sysjobs;" and store...
October 15, 2010 at 1:55 pm
upstart (10/15/2010)
Using SET ROWCOUNT will not affect DELETE, INSERT, and UPDATE statements in SQL Server 2008. Avoid...
October 15, 2010 at 1:12 pm
can you post a table definition with index defs on the konten table?
Looks like you are facing into a DELETE..CASCADE performance issue... this delete has to touch alot of objects...
October 15, 2010 at 12:04 pm
The short answer is, there's really no way to tell for sure if query plans will change without testing.
If it were me, I'd probably collect a replayable trace from the...
October 15, 2010 at 11:43 am
Can you provide more details? Maybe post the actual painful query, show the query plan as a view, ordered one way, and as just a query?
SSAS and MDX doesnt solve...
October 15, 2010 at 11:35 am
When I've been tasked with doing similar kinds of deletes, I try to spread the pain out over time, and hence spread it out over transaction logs as well so...
October 15, 2010 at 11:28 am
Trina Blazek-394828 (10/14/2010)
October 14, 2010 at 2:34 pm
Warren Peace (10/14/2010)
October 14, 2010 at 1:03 pm
If the second subreport is not embedded in a tablix, but just in a rectangle on the report it will only be called once. If you have a dataset where...
October 14, 2010 at 11:38 am
Viewing 15 posts - 46 through 60 (of 133 total)