Viewing 15 posts - 46 through 60 (of 302 total)
Sorry. BOL means "Books On Line" which is the help documentation for SQL Server.
December 3, 2007 at 9:46 am
I don't recommend a VMWare instance for a production SQL Server. A virtual machine only gets a portion of disk space, memory, and CPU so performance isn't very good....
November 27, 2007 at 1:20 pm
When you say the statement below, you were basically rebuilding Log Shipping every weekend.
Backup;
Copy and Restore on Secondary;
Start applying Logs on Secondary.
When you have a very large database, rebuilding Log...
November 20, 2007 at 1:46 pm
What I've had to do is split up the reindex or defrag jobs so that there aren't so many large log files to ship to the secondary. I put...
November 19, 2007 at 11:14 am
We run server-side traces on all of our SQL boxes for auditing purposes, and I am amazed at how little the systems are impacted. They run 24x7 on SQL...
November 14, 2007 at 11:23 am
I'm glad to see this topic discussed. We have the same problem here that anyone who can say 'sequel' ends up requesting Management Studio, Enterprise Manager, or Query Analyzer....
November 13, 2007 at 11:04 am
I've run across the same problem with Log Shipping, but sp_help_revlogin makes it easy. Just create the procedure on the primary database server (in master) and run it in Query...
September 4, 2007 at 10:50 am
First run "select * from sysobjects where replinfo = 1" to see if replication still exists. If so, run sp_removedbreplication. You might need to enable replication in SQL Server first. ...
August 17, 2007 at 10:57 am
We too use Remedy for DBA requests--I insist on an email request first so that I can copy & paste the information myself. This way I can sort through them...
August 13, 2007 at 10:21 am
I tried SQLZip and it worked fine on smaller databases. When I used it on large, busy databases with sets of 2 or more files the restores errored. I don't...
June 14, 2007 at 9:10 am
You may want to adjust the schedule on the job that copies the files so that you can control which files are actually restored. Or you could probably rename the...
June 6, 2007 at 9:45 am
I agree that log shipping should work. I have a similar situation where the server B needs to have data as current as 4 a.m. and the database needs to be available...
June 6, 2007 at 7:50 am
You also need to make sure that the protocols are enabled. Go to the SQL Server Configuration Manager under Configuration Tools and make sure that TCP/IP and Named Pipes are...
May 24, 2007 at 10:53 am
I don't know why you would want to close any of the connections--are they causing any problems? I see connections from the various BES services or applications for synchronization, messaging,...
May 24, 2007 at 10:44 am
I see that you switched from Oracle 9i to version 10--that's good. We had version 9i on a SQL 2000 cluster and there were issues with that particular driver (mostly...
May 24, 2007 at 10:37 am
Viewing 15 posts - 46 through 60 (of 302 total)