Viewing 15 posts - 646 through 660 (of 972 total)
If you review the install log does it show any errors while trying to install SSMS or any portion of the desktop tools while it was upgrading them?
June 29, 2010 at 7:35 am
Just shoot'n from the keyboard here....Could you enable "Successful Logons" for that instance and then correlate the timestamp of the backup with the logon time to see what client/IP it...
June 23, 2010 at 2:21 pm
The application is it working with could be firing the backups.
If you query the msdb.dbo.backupset table it should give you the username issuing the backup command.
I attached a script I...
June 23, 2010 at 12:32 pm
Well from my reading:-D, workspace memory (or query memory) is used by SQL when doing hash/sort operations. This memory is also pulled out of the buffer pool. So I...
June 21, 2010 at 7:06 am
Did this job work prior? Are you aware of anything that changed if it did previously work (SP, CU installs)? Missed you stated you created it:-P
Is this server a...
June 17, 2010 at 9:35 am
If you have the job set to output to a log does that give you any information?
June 17, 2010 at 9:00 am
Here's one I've used, similar to homebrew01's just pull from few more tables:SELECT distinct t1.name AS 'DatabaseName'
,(datediff( ss, t3.backup_start_date, t3.backup_finish_date)) AS 'DurationInSeconds'
,t3.user_name AS 'UserResponsible'
,t3.name AS backup_name
,t3.description
,t3.backup_start_date
,t3.backup_finish_date
,CASE
WHEN t3.type = 'D'...
June 17, 2010 at 8:55 am
Chris Morris-439714 (6/17/2010)Resign from BP and get a job with TexasOil.
That's funny :w00t:
Anyway...
I was in the same boat 2 companies back. I worked more than the 8 hours in a...
June 17, 2010 at 8:45 am
The SQL ERRORLOG should give you a message with the estimated time remaining, not sure if it gives an updated message or not.
June 7, 2010 at 6:01 pm
Ah HIPAA is such a great tool for job security:-D
I know the previous employer I was at we looked at a few applicances for central logging, but don't recall the...
June 7, 2010 at 1:36 pm
If you go and check Windows Features do you see the box checked (or colored blue) for the .NET framework 3.5. I'm not at my Windows 7 box, but I...
June 7, 2010 at 11:43 am
I remember where I've seen mention of nHibernate now...Grant Fritchey (aka ScaryDBA) talks about it on his blog:
http://scarydba.wordpress.com/2010/04/05/nhibernate-first-look-at-tsql/%5B/url%5D
Which I believe his post is exactly what you maybe seeing.
June 7, 2010 at 11:36 am
SCC has numerous post on database states that you might want to browse.
Are you saying the delete statement took 2 days then the database server was rebooted? Or the database...
June 7, 2010 at 11:29 am
lorisj33 (6/7/2010)
June 7, 2010 at 10:39 am
Viewing 15 posts - 646 through 660 (of 972 total)