Viewing 15 posts - 1 through 15 (of 85 total)
Mike,
Sorry, never have had occasion to work with a clustered SQL Server, so I'm not one who can help.
Vince
February 25, 2010 at 6:36 am
A quick note on that trailing comma. Instead of
select @col_list = @col_list + col + ', '
which leaves the trailing comma that must be taken off, you might...
January 26, 2010 at 8:01 am
Check the startup parameters for the SQL Server service, particularly the -m and -l parameters. See if they reference C: or D:. Change to D: if C: and...
December 22, 2009 at 1:45 pm
Well, re-reading the script it tries to get the path of the executing batch file using this line:
set ScriptPath="%~dp0"
%0 is the full path of the currently executing batch file, and...
October 28, 2009 at 11:27 am
Thanks, Kevin Hards and t berry. Knowing I've helped you guys feels good.
Vince
April 23, 2009 at 8:46 am
Just to add another version - I used Jason's code and added a parm for number of days to add, plus or minus:
[font="Courier New"]
CREATE FUNCTION dbo.GetNextBusinessDay (@Date datetime,
...
March 20, 2009 at 6:52 am
I believe your stopping the other services manually is what made the difference. I should follow through by adding a check to stop all those services to the batch...
February 5, 2009 at 7:24 am
Jeff,
I believe the reference was to this article.
http://www.sqlservercentral.com/articles/Administering/moreintelligentbackupandrestore/2137/
Love your work by the way.
Vince
January 22, 2009 at 6:32 am
Clint,
Sorry, I haven't had time to convert it to SQL 2008. I've gotten "this close" to installing 2008 on a test box here, but other day-job priorities have...
January 22, 2009 at 6:30 am
Agreed this is a fascinating amount of quality work. I haven't had the time to review it, but I share the concerns of the author in moving DTS packages...
December 22, 2008 at 8:13 am
Sorry, much too long ago. I've not really worked much with SSIS since this post. But rereading my post seems like I provided detailed instructions. Have you...
November 11, 2008 at 6:50 am
I'd like to say you can run the script with no worries, but I can't. It usually works just fine, but if it doesn't work you might not be...
July 21, 2008 at 12:50 pm
Did you mean for the first backslash to be doubled? Both your example and the error produced show a single leading backslash.
{UserDbs} will move through the user databases on...
March 27, 2008 at 8:50 am
I would suggest the following:
EXEC sp_ABRestoreDb '{UserDbs}', '\\remoteserver\backups\Databases\&\&_db_*'
& in the filename parameter is replaced by the current database name. You can use it as many times as you need...
March 27, 2008 at 7:12 am
Paul,
Backup History doesn't affect things at all, which sounds like what you want. I frequently use the routines to restore production to qa or development environments.
I'm not sure what...
March 27, 2008 at 6:01 am
Viewing 15 posts - 1 through 15 (of 85 total)