Viewing 15 posts - 91 through 105 (of 501 total)
You could always restore the backup so you can then back it up splitting it across multiple backup files to ensure they are less than 10GB.
October 21, 2013 at 2:00 pm
It could be related to having too many VLFs in the log file. See the article below and the related articles in the "Resolution" section.
October 9, 2013 at 2:08 pm
I have a Windows 2012 cluster running a default instance of SQL 2012 and a named instance of SQL 2008R2 without issue. The named instance will eventually go away once...
July 24, 2013 at 2:15 pm
It's known as a double hop issue. You need to setup delegation or use a SQL login for the linked server.
http://msdn.microsoft.com/en-us/library/ms189580(v=sql.105).aspx
July 11, 2013 at 1:49 pm
I was actually thinking about doing this same thing today with a SQL 2012 cluster but since it's active/passive, I didn't want to license both node by installing RS on...
April 24, 2013 at 1:46 pm
Here's an idea from the SQLCAT team. I assume it would work with data files as well. I would test this thoroughly in a test environment first.
April 8, 2013 at 1:53 pm
You could grant view definition rights in the test and production environments to the developers for the dbo schema. This way they would not need to grant view definition to...
March 6, 2013 at 3:10 pm
Under the advanced tab for the job step where you specified the output file, there is a checkbox for "Append output to existing file". Without this box checked the output...
March 5, 2013 at 2:11 pm
If you are trying to find out which node SQL is running on(the active node), you can use the query below.
select SERVERPROPERTY('ComputerNamePhysicalNetBIOS')
February 5, 2013 at 2:26 pm
Check out sysjobs and sysjobsteps in the msdb database.
February 5, 2013 at 2:17 pm
December 3, 2012 at 1:51 pm
If all the stored procedures are in the same schema you could grant execute on the schema like so.
GRANT EXECUTE ON SCHEMA::[dbo] TO [UserOrRoleName]
October 29, 2012 at 2:01 pm
It is a system stored procedure and I've never had any issue executing it to reduce the size of the current error log. You can read more about it if...
October 22, 2012 at 2:23 pm
Thanks for the explanation Gail! That was what I was looking for.
October 16, 2012 at 3:24 pm
Viewing 15 posts - 91 through 105 (of 501 total)