Viewing 15 posts - 166 through 180 (of 1,536 total)
So let's say you have DatabaseB running on ServerA.
Create a DNS entry called DatabaseB.db.yourdomain. Repoint your applications so that they use that DNS entry.
When you move the database to ServerC...
January 18, 2012 at 9:08 am
There's no quick fix for this unfortunately. You'll have to edit the connection strings no matter what.
You may want to get ahead of the game and create a DNS...
January 18, 2012 at 8:54 am
There are many possible reasons that it's faster on the other server such as:
- storage performance (be it DAS or SAN); you could be on faster disk on the other...
January 17, 2012 at 10:01 pm
Eric Hu²º¹² (1/17/2012)
Move the tempdb on a separate server.
Eric, you can't move TempDB to another server. It's required for SQL Server to be able to function. All you can do...
January 17, 2012 at 9:56 pm
Are you using a separate distribution server? Can you check the the login has access on that machine?
Also, look through the SQL error logs to confirm which machine is actually...
January 17, 2012 at 9:54 pm
Books online is actually very helpful when it comes to proxies.
http://msdn.microsoft.com/en-us/library/ms189064.aspx
I would recommend setting up a separate account for use as the proxy. You don't want things running under the...
January 16, 2012 at 3:15 pm
And the application logs? Sometimes it can be something that looks seemingly innocent that cause the problem.
January 16, 2012 at 9:48 am
Honestly, no less than 100GB for Windows 2008/R2.
You can get away with 40GB for Windows 2003, but hopefully you won't be running that.
SAS drives are to inexpensive now that there's...
January 16, 2012 at 9:29 am
Have you looked at the OLAP error logs? Anything useful contained within those? How about other events in the Application & System event logs around the time that the OLAP...
January 16, 2012 at 9:17 am
You would actually want your page file on another drive (for performance), although hopefully you'll have plenty of memory and limited paging.
I wouldn't (at this stage) go with anything lower...
January 16, 2012 at 9:13 am
I would recommend creating a credential on your SQL Server. This will be mapped to a domain login.
Then create a SQL Agent proxy account linked to the proxy and...
January 16, 2012 at 12:15 am
Have you been able to perform a manual distributed transaction between servers?
Such as
begin distributed transaction
select * from [ipaddress].master.sys.databases
commit distributed transaction
If not you have a DTC issue that needs to...
January 15, 2012 at 11:43 pm
I would stagger your backups. Hopefully, in production, you are running in full recovery and taking regular transaction log backups meaning that you can restore to any point in time....
January 15, 2012 at 4:11 pm
You could have replication scripted out and use sp_droparticle to drop the articles rather than unpublish the entire database.
January 15, 2012 at 4:08 pm
Viewing 15 posts - 166 through 180 (of 1,536 total)