Viewing 15 posts - 46 through 60 (of 162 total)
You'll need to provide a bit more info.
Are you running again with same parameters?
Are the execution plans the same?
Is anything happening on that table (large updates/inserts/deletes) in between the two...
June 23, 2011 at 9:11 am
That was my initial thought, but then he says the COPY job has run successfully. So either the file is not there (possible to copy manually [if exists] - depending...
June 22, 2011 at 9:55 am
Personally i'd reconfigure for that DB and start again. Although somebody may post a solution that won't require that?
June 22, 2011 at 8:52 am
What version is the remote server? You're using SSMS 2008 right?
Can you ping the remote server and get a reply?
Check
the credentials you're using are correct,
the server will accept...
May 6, 2011 at 8:11 am
Personally i'd go with the 4 disk RAID5 for database files, and 2 disk RAID1 for OS and LogFiles. But as always...it comes down to "it depends"; load, usage etc
May 4, 2011 at 9:43 am
You can add fields to a table which is an article and part of a transactional publication, and the field will be applied to the subscriber. I don't think you...
March 11, 2011 at 9:54 am
Shouldn't he be using ".ndf" for his secondary files? I thought you could have only one ".mdf"?
December 13, 2010 at 7:26 am
Big big thanks to SSC for providing acces to these webinars. I find them to be of great benefit and always look forward to the next. 😀
Cheers
Nick
December 10, 2010 at 4:50 am
Thanks Jason, i just wanted to be sure I wasnt missing something on the aggregations from the exec_query_stats. Excellent 🙂
November 25, 2010 at 1:53 pm
Partial Backup caught me out on this one, had the others. So there's a "learning opportunity" for me. 😉
October 8, 2010 at 5:42 am
You can get a lot out of the index DMV's
sys.dm_db_index_operational_stats
sys.dm_db_index_physical_stats
Although these are for showing locking information / fragmentation level etc, if you don't supply a databaseid (param 1) you'll get...
September 29, 2010 at 4:02 am
Excellent point. I think he did restart the service.
I would still advise running a trace to try and identify timeout issues, may not necessarily be a soley CPU issue.
September 29, 2010 at 3:54 am
SELECT TOP 50
SUM(QS.TOTAL_WORKER_TIME) AS TOTAL_CPU_TIME,
SUM(QS.EXECUTION_COUNT) AS TOTAL_EXECUTION_COUNT,
COUNT(*) AS NUMBER_OF_STATEMENTS,
SQL_TEXT.TEXT,
QS.PLAN_HANDLE
FROM SYS.DM_EXEC_QUERY_STATS QS
CROSS APPLY SYS.DM_EXEC_SQL_TEXT(SQL_HANDLE) AS SQL_TEXT
GROUP BY SQL_TEXT.TEXT,QS.PLAN_HANDLE ORDER
BY SUM(QS.TOTAL_WORKER_TIME) DESC
This query will show...
September 29, 2010 at 3:46 am
If this was an AdHoc query it may be difficult to spot. If this is caused from "normal" routine usage then I suggest you run a SQL Profiler trace and...
September 29, 2010 at 3:38 am
Viewing 15 posts - 46 through 60 (of 162 total)