Viewing 15 posts - 1 through 15 (of 88 total)
I look at the error log all day every day
EXEC master.dbo.xp_readerrorlog 0, 1, NULL, NULL, NULL, NULL, N'desc'
August 26, 2015 at 12:21 pm
Thank you both! Sorry for poor wording, misuse of terminology, and bad forum etiquette. :blush:
June 18, 2014 at 12:52 pm
I think I found the answer on http://msdn.microsoft.com/en-us/library/ms180892(v=sql.100).aspx
Rollback operations are also logged. Each transaction reserves space on the transaction log to make sure that enough log space exists...
June 17, 2014 at 7:40 am
How does this script handle multiple files and filegroups?
Edit: Does this script handle multiple file and file groups?
April 23, 2014 at 7:12 am
July 12, 2013 at 12:17 pm
You can use COPY ONLY option if you need a backup for a test system.
July 1, 2013 at 1:32 pm
It's the people like you that I would trust. 🙂
May 29, 2013 at 11:45 am
google SQL Server 2012 license guide. SQL Server 2012 Enterprise edition is only core based and not CAL. The names of the iso's are probably wrong.
May 29, 2013 at 10:28 am
Maybe a proxy account? Or use connection string?
Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;
User ID=myDomain\myUsername;Password=myPassword;
Just throwing some ideas out there.
May 29, 2013 at 8:45 am
Did you ever find an answer? I'm having same issue. Package runs fine when ran manually but when scheduled through sql agent it fails with that error.
November 28, 2012 at 7:20 am
I've found my issue... My restore script was trying to restore a file that didn't exist.
I would have thought that the restore would error out, instead it restored the database...
September 27, 2011 at 9:14 am
Unfortunatly no. default is set to master.
Another note... I've went onto both the production server where the database is being backed up from and the server i'm...
September 23, 2011 at 9:19 am
I have the alter database command running right now and it is blocked by -2.
I've executed:
select req_transactionUOW
from master..syslockinfo
and it gives me 00000000-0000-0000-0000-000000000000
but when i try and...
September 23, 2011 at 9:07 am
Viewing 15 posts - 1 through 15 (of 88 total)