Viewing 15 posts - 16 through 30 (of 42 total)
I know you have said that the data files are on other partitions, however if any of your databases use Full Text Searching then the catalogues are stored in \Program...
January 22, 2009 at 3:42 am
We ended up with downtime for users which was unfortunate, as the cluster has the DBs for our web and email filtering software so the organisation lost connectivity while this...
November 24, 2008 at 1:50 am
Vivien Xing (8/13/2008)
"Yes, with full table scan details" is just an answer with more details.
Reindex, of course, a full table scan....
August 14, 2008 at 3:10 am
Glad to see a clearer explanation from Simon, had a better understanding after that.
August 12, 2008 at 2:42 am
Alvin Ramard (8/6/2008)
DMC,P.S. I've been told that "good" SAN mirroring tools should be able to accomplish this.
We use a NetApp solution to mirror data from the primary to a...
August 7, 2008 at 1:31 am
DMC,
As far as I am aware, and I have little knowledge of SANs, is that SAN replication is preformed by the filers, so the servers etc. are not aware the...
August 6, 2008 at 9:38 am
You can run this query:
xp_servicecontrol 'querystate', 'SQLSERVERAGENT'
August 6, 2008 at 9:16 am
I would also look at using an index, and not use *, however, with you mentioning deadlocking, maybe you could use:
SELECT *
FROM table_name
WITH(NOLOCK)
WHERE .....
There is a tool with SQL 2005...
August 6, 2008 at 4:03 am
Maybe you could use triggers to capture just the data changes (inserts, deletes and updates) only to another table and then bcp that file to the share?
July 23, 2008 at 2:34 am
siverson (7/22/2008)
July 22, 2008 at 9:58 am
This may sound a bit random, but could you create a bcp file for the tables that are needed and copy from A to a network share on B and...
July 22, 2008 at 9:52 am
There is a free product by Idera called 'SQLsafe Freeware Edition' that allows compressed backups over the network. You can download it from http://www.idera.com/Products/SQLsafefree/Default.aspx
Maybe worth a look...
July 22, 2008 at 9:45 am
Cdyer (7/8/2008)
Hmm. Sorry, I'm not sure what 'MSDTC on the SAN' means. Maybe I need more coffee! Care to expound a bit? :doze:
Cdyer - MSTDC is the Microsoft Distributed...
July 8, 2008 at 10:47 am
Maybe you could just write the backup directly to the other server?
June 27, 2008 at 9:21 am
Viewing 15 posts - 16 through 30 (of 42 total)