Viewing 15 posts - 1 through 15 (of 29 total)
Thank you for the response. The job must run 30 minutes minimum after the job last. Run. I will add the additional steps. You made a good...
October 9, 2015 at 9:02 am
I managed to find the solution:Adding "-Recoverymode Standby" , this will allow me to restore transaction
"C:\Program Files\Idera\SQLsafe\SQLsafeCmd.exe" Restore test1 F:\Backup\test1_db_dump.safe -Replace -Move test1_data2 G:\Mssql\Data\test1_data2.NDF -Move test1_Log H:\MSSQL\Log\test_Log.LDF -SecurityModel Sql -Recoverymode...
April 26, 2011 at 8:53 am
I appreciate all the help and suggestions, I went with this selection that was provided. Many thanks
DECLARE @DbName VARCHAR(100),
@SP_Name VARCHAR(100),
...
December 20, 2010 at 7:03 am
I received this cursor, that works fine if the procedure does not exists, what I want to acccomplish is to alter the procedure, how can I change this cursor
DECLARE...
December 15, 2010 at 8:12 pm
The method would work but I cannot use this solution as I need for this procedure for each database. do you have any other solution or method to carry...
December 15, 2010 at 6:59 pm
I appreciate the assistant but the suggestion did not work. Using sp_executesql what is your recommendation on proceeding.
December 15, 2010 at 6:57 pm
In this server I have around 24 databases with similar schema.
August 5, 2010 at 11:05 am
I appreciate the help from everyone who participated, this is what I end with as a solution, please note or make any suggestion for improvement.
USE master;
GO
SET NOCOUNT ON;
GO
DECLARE AllDatabases CURSOR...
August 5, 2010 at 11:02 am
okay, I appreciate all the time an effort from everyone who participated, this is what I ended up with as a test.
USE master;
GO
SET NOCOUNT ON;
GO
DECLARE AllDatabases CURSOR FOR
SELECT name...
August 5, 2010 at 10:57 am
This solution work but it only deletes the rows from the database being reference.
USE master;
GO
SET NOCOUNT ON;
GO
DECLARE AllDatabases CURSOR FOR
SELECT name FROM sys.databases WHERE database_id > 4
OPEN AllDatabases
DECLARE @DBNameVar NVARCHAR(128)
DECLARE...
August 5, 2010 at 10:41 am
I undestand that part but this is what the cursor is built for, it when check the database in that instance. How can I get though this. The concept is...
August 5, 2010 at 10:25 am
I worked the solution in but I get this error
CHECKING DATABASE jaime
Msg 208, Level 16, State 1, Line 1
Invalid object name 'WORKLISTLOG'.
August 5, 2010 at 10:16 am
I appreciate the suggestion by I need to be able to apply this to all my database in one statement. Can you help my original statement
August 5, 2010 at 9:58 am
Thanks and I will look in to this.
What I have so far is this. I have taking the statement that backups the database and modified it. The issues I have...
February 24, 2010 at 10:57 am
Viewing 15 posts - 1 through 15 (of 29 total)