Viewing 15 posts - 4,201 through 4,215 (of 4,745 total)
are your distmdl files in the same location as your master database files? If they are not this can cause patches to fail.
there have been posts on this on this...
September 22, 2008 at 2:19 pm
am i totally missing something here, but if running queries in QA surely:
ctrl T, ctrl E - results in text
ctrl D,ctrl E -...
September 22, 2008 at 5:16 am
do you do an index rebuild or a reorg. If a reorg this does not update your stats, rebuild does.
Either way, as this is a busy database it sounds like...
September 22, 2008 at 3:08 am
it retains the settings from those you set via the alter database command
September 19, 2008 at 4:52 pm
then they are probably not backing up the logs.
even if they are using backup exec to back the databases up to tape I would still have backups on disk, space...
September 19, 2008 at 1:45 pm
you say you switched auto update statistics ON then OFF? Is that on just before the process and off again afterward?
If so suggests you have auto update stats off by...
September 19, 2008 at 1:25 pm
only way out of this is to run the restore again through to completion.
September 19, 2008 at 1:03 pm
lowell, you're a star. many thanks.
george
September 17, 2008 at 2:22 pm
thanks chris, that did it. The actual difference was I did not have quotes around the output file either, adding those makes it work.
I'll post the script to this site,...
September 16, 2008 at 4:15 am
I have tried double quotes, square brackets and curly barackets, all to no effect.
I would really like to get this working for DR purposes and because I have seen anumber...
September 16, 2008 at 3:42 am
have I flummoxed the SQL world again or is the question not clear?
September 15, 2008 at 3:41 pm
you don't need to copy packages to the file system to amend them, but if you want to copy packages use utility DTUTIL
September 15, 2008 at 3:36 pm
the following reverse engineers the code to re-apply all server roles granted to logins:
set quoted_identifier off
set nocount on
select 'exec sp_addsrvrolemember ' +"'" +loginname +"',"
+"'sysadmin'"
from syslogins where sysadmin =...
September 15, 2008 at 7:39 am
check to see if autoshrink option ticked on the database. (In EM, right click database, properties, options).If it is and this is a production database, un-tick it
September 12, 2008 at 2:47 pm
if you leave an install to 'default' (don't go into advanced option) system dbs end up in c:\program fies.
for an upgrade, the default will be wherever the registry says your...
September 12, 2008 at 10:14 am
Viewing 15 posts - 4,201 through 4,215 (of 4,745 total)