Viewing 15 posts - 46 through 60 (of 469 total)
Chrissy321 (6/25/2012)
Will a job with the following fail if corruption exists? Or will the job succeed?DBCC CHECKDB(N'master') WITH NO_INFOMSGS
The job would fail and report at least some of the...
June 25, 2012 at 10:40 am
sknox (6/22/2012)
Gazareth (6/22/2012)
I'd like to start a quick poll: who's updated the most rows in a live table accidentally by not including a where clause in their update...
June 22, 2012 at 9:48 am
If bob is given access via the administrators group and is running the app locally on Win7 then he needs to right click on it and select run as administrator....
June 21, 2012 at 1:50 pm
You'll want to either add a new operator (right below alerts) or modify the existing operator. Can I recommend putting an email group in so next time this happens...
June 21, 2012 at 1:46 pm
I'm assuming SQL Agent on Dev2 is what's running the package. Take a look at the error log on Dev1. You'll likely see some login errors for "DOMAIN\Dev2$"...
June 21, 2012 at 1:02 pm
Try plugging this into your favorite search engine. It's one I've had to look up several times because I didn't use it enough to remember the syntax:
http://www.bing.com/search?q=decode+dtsrun&form=MOZSBR&pc=MOZI&adlt=strict
June 21, 2012 at 12:33 pm
The following is the crux of the issue:
An OLE DB record is available. Source: "Microsoft SQL Server Native Client 10.0" Hresult: 0x80040E4D Description: "Login failed for user 'DOMAIN\DEV2$'.".
My first...
June 21, 2012 at 12:31 pm
Grant Fritchey (6/21/2012)
June 21, 2012 at 7:04 am
This could actually make RTM releases more solid. With the cloud users working out a number of the bugs we may see less patching necessary on boxes we host.
June 20, 2012 at 9:22 am
Good question. I knew it wasn't valid any more but had forgotten that it wouldn't error.
June 15, 2012 at 11:01 am
Mathew M.Varghese (6/7/2012)
Device manager processor shows 24 processers.So can i change the Max Degree of Parallelism to 24.
If parallelism is part of the problem you want to decrease the...
June 7, 2012 at 8:37 am
Forgot about that. The CTE and row_number won't work either. The list of wait types that he excludes should still vaguely apply but there were undoubtably changes between...
June 7, 2012 at 6:12 am
See if this turns anything up. It looks through the default trace for any security events (excluding non-repair checkdbs). You may want to exclude some other things. ...
June 7, 2012 at 6:03 am
You should check out Glenn Berry's Diagnostic Queries. The following is pulled from that and provides an easier view of the wait stats:
-- Clear Wait Stats
-- DBCC SQLPERF('sys.dm_os_wait_stats',...
June 7, 2012 at 5:58 am
Have you checked for blocking? The issue could be due to concurrency.
Is there anything else running on the server? You could be hitting memory or CPU constraints based...
June 6, 2012 at 1:28 pm
Viewing 15 posts - 46 through 60 (of 469 total)