Viewing 15 posts - 196 through 210 (of 372 total)
so you have three datbases on the primary that you are trying to mirror over the the secondary and only one of the three are getting mirrored?
October 29, 2013 at 9:11 am
you will have to more specific.
What is the error message that the user is getting? Is the database in a normal \ suspect \ or recovery state? are all...
October 28, 2013 at 12:56 pm
I also found the issue with trying to restore, the MS artcle does not say that you have to create a master key first. Once I did that I was...
October 28, 2013 at 11:24 am
I got the file to write our once taking the sp_addumpdevice off. Now I am unable to get the cert on the new sql server. always problems...
Thank you Gail for...
October 28, 2013 at 11:05 am
Yes the drive is valid, yes MSSQLSERVER has rights to write to the drive and no it is not there, I have not been able to ever write the key...
October 28, 2013 at 10:38 am
Still getting;
Msg 15240, Level 16, State 1, Line 2
Cannot write into file '\\drive\SQLPrivateKey'. Verify that you have write permissions, that the file path is valid, and that the file does...
October 28, 2013 at 10:25 am
It took mine off, serveral times.
However it still is not working. I took the spaces out. I will PM you since my paths are not getting on here correct.
October 28, 2013 at 10:04 am
The file path is correct, the post keeps chopping it off.
I took the space out, it dod not work.
October 28, 2013 at 9:50 am
USE master;
GO
ALTER DATABASE "mydatabase"
SET RECOVERY FULL;
GO
-- Create mydatabase and MBAM mydatabase devices.
USE master
GO
EXEC sp_addumpdevice 'disk', mydatabase Device',
'\etworkdrive\mydatabase.bak';
GO
-- Back up the full mydatabase. -- This is the script I get the...
October 28, 2013 at 9:34 am
Yes, my service account that SQL uses has full permissions to the drive.
October 28, 2013 at 9:21 am
GilaMonster (10/22/2013)
It's the Database!!! (10/22/2013)
Why would you put a DB on the C:\ of a clustered SQL server?
You can't even do that, a database file for a clustered SQL...
October 22, 2013 at 11:34 am
Perry Whittle (10/28/2012)
October 22, 2013 at 8:37 am
4 nodes A\A;
Install Instances
SQL01\INST1
SQL02\INST2
SQL03\INST3
SQL04\INST4
then install the biniares (add node) on each sql server;
biniares for 2,3,4 on node1
biniares for 1,3,4 on node2
biniares for 1,2,4 on node3
biniares for 1,2,3...
October 22, 2013 at 7:42 am
coming into this thread late, forgive me Gail if I repeat what you have said,
Why would you put a DB on the C:\ of a clustered SQL server? I would...
October 22, 2013 at 7:36 am
Got an answer from MS;
Drop the users in the contained database first, then run the database alter statement, then run the statement on the engine to say 0 contained databases....
October 22, 2013 at 6:58 am
Viewing 15 posts - 196 through 210 (of 372 total)