Viewing 15 posts - 331 through 345 (of 1,524 total)
Like Gail stated. The easiest way is to backup the db and restore it into the new SQL Server. Then just drop the tables you don't need.
January 13, 2015 at 11:06 am
TEMP tables are stored in TEMPDB as well. You won't know until you look at some code.
January 12, 2015 at 10:40 am
Just because there is 30gig of free space doesn't mean that that 30 gig is at the end of the file. The data can be spread all over the...
January 12, 2015 at 5:19 am
Steve you are most likely correct. However, if they expect to host companies live production data in the future they have to have an alternate plan to fail over...
January 8, 2015 at 10:28 am
The thing is more and more people and companies are embracing 'the cloud'. I don't like it for the obvious security reasons, no control over who behind the scenes...
January 8, 2015 at 9:29 am
Iwas Bornready (1/8/2015)
I've always been against cloud storage. I hate losing control of my data.
Same here.
I would LOVE to have a 48 hour outage of every system. Imagine how...
January 8, 2015 at 6:40 am
Yes, it isn't enough to just implement some feature. You need to understand it, how to recover it and what you will do in a disaster... and practice a...
January 7, 2015 at 6:38 am
Years ago we had construction going on to update our UPS and power for our Data Center. One business day our entire Data Center went down. Come to...
December 29, 2014 at 8:56 am
They way I do my refresh db jobs is the first step of the job is the kill step, second step is restore. They happen back to back and...
December 23, 2014 at 9:11 am
You don't say what error it is giving you.
I use this SP to kill connections when I restore Prod to test:
Use this as the first step in the restore job:...
December 23, 2014 at 8:48 am
FYI: This works... however, you must stop/start SQL Server for the servername within SQL server to take effect.
December 19, 2014 at 10:25 am
Dang... my bad.... I was attempting to connect to the server with servername:portnumber.... not servername,portnumber
Thanks for the help!
December 19, 2014 at 5:10 am
You are being too vague... but... here is one to start with to see who has what type of rights.
Select
'Login Name'= Substring(upper(SUSER_SNAME(SID)),1,40),
...
December 18, 2014 at 1:08 pm
Why do you feel you should shrink the transaction log every time you run a trans log backup? You are not gaining anything by doing this. If...
December 4, 2014 at 8:07 am
Simply put: The transaction log is growing because you have a lot of a combination of insert, delete, updates going on. By shrinking the log you free up space...
December 4, 2014 at 7:53 am
Viewing 15 posts - 331 through 345 (of 1,524 total)