Viewing 15 posts - 61 through 75 (of 345 total)
You can't backup a database while it's restoring.
August 11, 2008 at 10:05 pm
Watch out for apps backing up their own databases. They may be useful for places that don't have a DBA to look after things properly but otherwise get in...
August 11, 2008 at 9:21 pm
Alan (8/5/2008)
I have mostly given up on the maintenance plans as they do not seems as stable as...
August 11, 2008 at 9:16 pm
You will need to do this on the mirror server:
[font="Courier New"]ALTER DATABASE DBName SET PARTNER FAILOVER WITH FORCE_SERVICE_ALLOW_DATA_LOSS[/font]
Since the mirror server can no longer see the primary server and negotiate...
August 11, 2008 at 9:11 pm
Some good answers coming out here, stuff I'd never have thought of.
My response would have been: "I need to do my own audit of the systems they have, find...
July 31, 2008 at 2:43 pm
Having read through the comments, it can be all summed up in the usual two words that apply when someone asks if something can/is best done in a particular way:...
July 30, 2008 at 5:54 pm
Where are you copying the data to/from? Does the SQL Server Agent account have rights to those folders?
July 21, 2008 at 4:39 pm
Raghavender (7/17/2008)
I am using SQL Server 2000 not 2005
Then you have posted in the wrong forum. You should have posted here:
http://www.sqlservercentral.com/Forums/Forum5-1.aspx
I would look at the SPN,...
July 17, 2008 at 9:30 pm
What OS is on the client? Is there a firewall enabled?
Can you ping the SQL server by name and IP address?
Can you use SQLPing to see the SQL server...
July 17, 2008 at 5:00 pm
Have you successfully setup other machines in the past?
Are you trying to use Windows Authentication or SQL Authentication?
July 16, 2008 at 2:38 pm
This was one of the reasons I gave up on using SSIS for maintenance plans and rolled my own using basic T-SQL. I found SSIS just added an unnecessary...
July 16, 2008 at 2:12 pm
Assuming you are running this query on the SQL Server itself, try this (substitute dbname.schema with whatever database & schema the table is in):
[font="Courier New"]SELECT @output ='bcp "select * from...
July 1, 2008 at 8:08 pm
That error indicates that an attempt was made to mount a log file as a data file (which is never going to work). Seems to be some sort of...
June 26, 2008 at 10:02 pm
I haven't done Active/Active clusters but I have done 2 node Active/Passive with no problems. Reboot passive node, failover when done, reboot other node.
At what point does the node...
June 26, 2008 at 9:53 pm
Viewing 15 posts - 61 through 75 (of 345 total)