Viewing 15 posts - 106 through 120 (of 237 total)
You can have SA as the job owner even if the account is disabled. Thats what I do
January 24, 2014 at 7:54 am
Stored Procedure which creates a scheduled backup job to run the SP that backs the database up..
To run this
Exec dbo.createbackupProc [Database name], [Number of stripes]
/****** Object: StoredProcedure [dbo].[CreateBackupProc] ...
January 10, 2014 at 9:50 am
Declare @subdirinput nvarchar(200)
DECLARE @Databasename NVARCHAR(50);
DECLARE @Subdir NVARCHAR(150);
SELECT @Databasename = (SELECT DB_NAME());
select @subdirinput = (select variable from dba.dbo.variables where process = 'backuppath') -- Change this to Backup Path
declare @splits1 varchar(5)
select @splits1...
January 10, 2014 at 9:03 am
Splits is for the amount of backup files you want to crearte by the way, having multiple files per backup speeds up the backup process.. 5 to 8 seems to...
January 10, 2014 at 8:40 am
Ignore this post... sorted it . Had a blonde moment
January 10, 2014 at 8:38 am
users get
"Verify that sufficient permissions have been granted and Windows User Account Control (UAC) restrictions have been addressed."
Permissions have been granted to both the site settings level and report folder...
January 6, 2014 at 7:45 am
Yep that is all set.
It works fine for me, locally and remotely. But i am system admin on the box. It works fine for other users if I add...
January 6, 2014 at 7:38 am
I am still struggling with this, it works fine if the user is local admin on the box but will not work at all if they are not.
January 6, 2014 at 6:47 am
Virtual log files are created each time your log file needs to grow, so there is a direct link between VLFs and the growth settings.
You want to keep the number...
December 18, 2013 at 9:39 am
Do you have a report which is trying to use the credentials with the wrong password?
December 12, 2013 at 7:42 am
Kurt, Making those adjustments still came back with the same error - very strange I can't see where it is getting it from.
Ed, "using select QUOTENAME(name) from sys.indexes" worked...
December 12, 2013 at 2:19 am
Appreciate your feedback guys, I will make the changes this afternoon.
Thanks for taking the time to test it Kurt, appreciate it and I prefer your way around nulls too.
I appreciate...
December 10, 2013 at 4:40 am
Viewing 15 posts - 106 through 120 (of 237 total)