Viewing 15 posts - 3,091 through 3,105 (of 4,745 total)
is the way this OP is addressing what sounds like a similar problem an option for you?
http://www.sqlservercentral.com/Forums/Topic843729-361-1.aspx
January 7, 2010 at 1:58 pm
you say you did a system restore? does this mean you restored a backup of the server but SQL server will not start? This will be because database files are...
January 7, 2010 at 1:42 pm
yes of course the op would have been using the gui, thanks steve.
January 7, 2010 at 10:13 am
why are you trying to move its files, that should be done via the startup parameters.
restore the master database with the replace option so it restores the files to their...
January 7, 2010 at 9:59 am
presuming you do want to overwrite the target database backup and restore is best method but you will need the replace and move clauses
i.e,
restore database targetname from disk = 'path'...
January 7, 2010 at 9:52 am
I don't think so because as you pointed out to change chaining settings requires sysadmin.
I can only suggest you get in touch with the vendor and tell them what you...
January 7, 2010 at 8:43 am
Dave, make sure you are following the processes as described in this url
http://support.microsoft.com/kb/842425
you will have to make some changes (db restore not required as you are mirroring instead) but make...
January 7, 2010 at 7:34 am
not if it is added as a file in a new filegroup
January 6, 2010 at 2:35 pm
this is the default value for this option, so can you just comment out that line of code?
January 6, 2010 at 1:52 pm
just to finish this off I did purchase licenses for 3 servers in the end and all is working well.
I don't see the consistent improvement in elapsed times that...
January 6, 2010 at 3:47 am
quick and dirty way using dynamic SQL
select 'exec sp_helptext ', name from sys.objects where type = 'P'
run the results of that in another window, output to a file and then...
January 5, 2010 at 4:33 pm
c00ler01 (1/5/2010)
thats why we have DR processes in place. Separate Issue.
thats another reason not to write all your backups to one...
January 5, 2010 at 2:59 pm
use an execute SQL task to run a backup command pointing to the UNC path of the share on the backup server.
else use the maintenance plan backup task in the...
January 5, 2010 at 2:41 pm
this query returns the values you require
SELECT
A.NAME as 'Database',
b.name as 'logical_name',
b.type_desc as 'datatype',
b.physical_name as 'path',
SIZE *8/1024 AS 'FILE SIZE IN MB'
from master.sys.databases a
INNER JOIN MASTER.sys.master_files...
January 5, 2010 at 7:33 am
Viewing 15 posts - 3,091 through 3,105 (of 4,745 total)