Viewing 15 posts - 211 through 225 (of 583 total)
I guess my question would be: why is this an issue? In the report you attached you can see that the SSIS packages are completing successfully so what does it...
December 16, 2013 at 9:34 am
the xp_cmdshell statement is executing successfully because it did complete what you sent successfully. You supplied the dtexec command to xp_cmdshell and by virtue of actually running the command it...
December 16, 2013 at 8:06 am
I dont think you will be able to change the server collation during upgrade. To change the server collation you need to rebuild master.
http://technet.microsoft.com/en-us/library/ms179254(v=sql.105).aspx
December 12, 2013 at 7:39 am
December 10, 2013 at 8:33 am
per core licensing is for SQL 2012. In 2008 R2, per processor licensing is still used. The licensing depends on the amount of virtual cores allocated to the vm and...
December 6, 2013 at 2:58 pm
I would go with option 2 utilizing a file server.
Option 1 goes against best practice of having your service accounts with limited permissions. If you sql server got compromised...
December 6, 2013 at 9:36 am
AVB (12/6/2013)
Yeah that was it. I updated the SQL Server account to a domain account and it now reflects that. Before it was running as Network Service.
you could also have...
December 6, 2013 at 8:14 am
run this to see what user is being used in xp_cmdshell. This should be the service account of the instance you are connected to. Give this account permissions to the...
December 5, 2013 at 3:11 pm
check your server configuration options to see if allow updates is set to 1. if it is set it 0
sp_configure 'Allow Updates'
sp_configure 'Allow Updates',0
reconfigure
here an article describing this. I believe...
December 3, 2013 at 8:48 am
does your undo(.tuf) file exist and is the creation time consistent with the failed load or the last successful load?
Are there any errors in the sql error log or the...
November 26, 2013 at 9:04 am
log shipping secondaries will either be in restoring (norecovery) or standby. Do you set your secondaries to standby (thus restoring is an abnormal state)?
so you can restore the file manually....
November 25, 2013 at 11:15 am
you could try restoring the file manually. If it works then that will prove there are no issues with the file. If it fails you may get a different error....
November 22, 2013 at 10:53 am
possibly the file \\as2\dbbackups\TransactionLog\ReportOtherCarrierLive\OtherCarrierLive_20131121124501.trn is in use and cannot be accessed by SQL server. You can quickly test this by trying to move(not copy) it to a different folder or...
November 21, 2013 at 9:26 am
2013-11-21 13:00:31.95Skipping log backup file '\\as2\dbbackups\TransactionLog\ReportOtherCarrierLive\OtherCarrierLive_20131121124501.trn' for secondary database 'ReportOtherCarrierLive' because the file could not be verified.
This line in the error is where I would start. Do you see the...
November 21, 2013 at 8:51 am
awesome, that did the trick and it's cleaner. I was unaware that you could update CTEs directly. Always a bonus to learn something new.
Thanks Luis.
November 20, 2013 at 9:05 am
Viewing 15 posts - 211 through 225 (of 583 total)