Viewing 15 posts - 211 through 225 (of 372 total)
hoseam (10/18/2013)
I don't have a backup
Then you cannot get the table back. I hope this was not production...
October 18, 2013 at 6:56 am
Thank you Perry, I also have MS involved and they could not get the DB switched over to NONE either. I will email results once I have them.
October 18, 2013 at 6:53 am
Well to make a bad story sound meh, I was pushed into AlwaysOn \ contain and it was the wrong thing to do, I tried to fight it but alas...
October 17, 2013 at 1:10 pm
Steve Jones - SSC Editor (10/17/2013)
That should work. However a contained db shouldn't cause you any issues. It should function as non-contained in most situations.
Steve,
??? on the second...
October 17, 2013 at 11:55 am
Steve Jones - SSC Editor (10/17/2013)
TDE will encrypt the data files and backups. Without the password, people will not be able to...
October 17, 2013 at 10:47 am
encrypt the database and no one can see it. Do you stil want it in excel? SSRS cannot encrypt.
October 17, 2013 at 10:14 am
so what I have gathered so far;
1. stop sql agent (thanks I totally forgot)
2. RUn script as seen below;
USE (mydatabase)
GO
ALTER DATABASE (mydatabase)
SET SINGLE_USER;
GO
ALTER DATABASE (mydatabase) SET CONTAINMENT = NONE
GO
ALTER DATABASE...
October 17, 2013 at 9:34 am
so I would run this;
USE (mydatabase)
GO
ALTER DATABASE (mydatabase)
SET SINGLE_USER;
GO
ALTER DATABASE (mydatabase) SET CONTAINMENT = NONE
GO
ALTER DATABASE (mydatabase)
SET MULTI_USER;
GO
USE MASTER
GO
SP_CONFIGURE 'CONTAINED DATABSE AUTHENTICATION', 0;
October 17, 2013 at 7:47 am
yes you can. AlwaysOn can be used with a FCI 2012 as a DR plan. I found an article on this a few months ago.
October 9, 2013 at 12:26 pm
Is this the log shipping you re-created yesterday because you deleted the agent job?
October 9, 2013 at 12:22 pm
Let me break this down for you;
1. Backup DB on stand alone server.
2. Restore DB on Primary node (AlwaysOn)
3. Run the create script I get from running the SP_revlogin
4. Users...
October 9, 2013 at 12:18 pm
MS does not support 3 Node Virtual machines thus mine is a 2 node...
October 9, 2013 at 10:26 am
It has rolled, it works either way, it's more a preference not a best practice
October 9, 2013 at 7:12 am
matter of fact, your answer may be on here,,,
http://www.sqlservercentral.com/Forums/Topic1101492-146-1.aspx#bm1103005
October 8, 2013 at 2:50 pm
Viewing 15 posts - 211 through 225 (of 372 total)