Viewing 15 posts - 4,456 through 4,470 (of 4,745 total)
please tell me this isn't true, for every database restore, the whole of proc cache is flushed?
I have a log shipping pair set up as active\active, i.e. some databases are...
April 24, 2008 at 9:48 am
I have always run it locally no problem and prefer that, but you can run remotely I believe.
It is very light on the server, no performance hit
HTH
April 23, 2008 at 3:11 pm
when restoring a SQL database the files do not need to already exist, the restore process creates them. delete any dummy files you created and run restore again.
Look up restore...
April 23, 2008 at 1:21 pm
HAns,
I can think of no way to reallocate which is the primary filegroup.
possibly....
BACKUP DATABASE
add another file to the primary filegroup on your other drive
use dbcc shrinkfile(current primaryfile,emptyfile)
alter database remove file...
April 22, 2008 at 9:43 am
or this
exec sp_help tablename
......next
April 22, 2008 at 5:37 am
tseymour (4/21/2008)
Ibackup log ILLData with no_log
dbcc shrinkdatabase (ILLData, 10)
Can this error cause any problems if I have to restore this dbase?
the with no_log option means you are merely emptying out...
April 21, 2008 at 12:35 pm
if all you want to do is move the files to another drive, use detach\attach or restore database with the 'with move ' clause.
thats presuming these are user databases and...
April 21, 2008 at 12:20 pm
April 21, 2008 at 8:08 am
best to add user to database and add them to db_owner group. there would then be no need to give then any other rights because db_owner would cover it.
be sure...
April 21, 2008 at 3:37 am
whether dbo or just in db_owner group they will have same permissions within database, BUT see below (cut and pasted from BOL to save me typing)
The dbo is a user...
April 19, 2008 at 2:14 pm
Rob Goddard (4/18/2008)
In...
April 18, 2008 at 5:32 pm
Operating system error 53 means 'the network path was not found' so looks like your path specified to backup device is wrong.
April 18, 2008 at 4:28 am
Sean,
after this particular type of shrink option the files will still be physically the same size on disk, however they will contain no data. You will know they are empty...
April 18, 2008 at 3:29 am
you cannot shrink a whole database to smaller than its original size but you can an individual file using dbcc shrinkfile rather than dbcc shrinkdatabase, so basicaly, use dbcc shrinkfile.......
see...
April 17, 2008 at 9:49 am
Vivien Xing (4/17/2008)
John’s point is right....
April 17, 2008 at 9:11 am
Viewing 15 posts - 4,456 through 4,470 (of 4,745 total)