Viewing 15 posts - 1,396 through 1,410 (of 4,745 total)
the syntax you want is
backup database dbname to disk = '\\servername\sharename'
or
backup database dbname to disk = '\\servername\drive$\full path to file'
+ whatever other clauses you are using
November 18, 2011 at 6:18 am
did this error occur when trying to restore a log backup? It just means someone or something is connected to the database and a restore needs exclusive use.
Make sure there...
November 18, 2011 at 6:11 am
might not be the answer you want to hear but with that many databases and more being created (by an app perhaps?) you should if possible be looking at a...
November 17, 2011 at 6:40 am
run dbcc updateusage
set compatibility level
set default schema for each user to DBO (if all objects were previously owned by dbo which is the usual case
drop the schemas created by the...
November 14, 2011 at 10:21 am
Marios Philippopoulos (11/11/2011)
george sibbald (11/11/2011)
I'd compare query plans. Maybe the proc needs a recompile in prod.
But the odd thing is that after I run DBCC FREEPROCCACHE in dev and restore...
November 11, 2011 at 11:36 am
I'd compare query plans. Maybe the proc needs a recompile in prod.
November 11, 2011 at 9:55 am
if you write the log backups to a directory on the primary server you should then share that directory out and make sure the SQLagent service account for the secondary...
November 11, 2011 at 7:05 am
with 2008R2 you get compression anyway with the native backup so stick with that.
For earlier versions of SQL I like Hyperbac (now a redgate tool) as you dont have to...
November 9, 2011 at 8:36 am
Possibly memory pressure on the OS.
check out total memory usage of SQL (+ SSIS + SSRS) via perfmon counters. check out out paging and available memory as well.
Do you have...
November 7, 2011 at 3:41 pm
Except for tempdb 'initial' size is meaningless once the database has been created.
What size is the data file, 50MB sounds quite small for the log, you don't want it needing...
November 7, 2011 at 3:07 pm
there is no reset of the initial size, Just use the dbcc shrinkfile to set the log to the size you want it. It will stay that size unless it...
November 7, 2011 at 1:54 pm
I trained as a dentist for a while but I couldn't live hand to mouth like that.
I worked as a geologist but wasn't down to earth enough.
I spent one spring...
November 7, 2011 at 7:07 am
initial set up of replication is manual, you would never be able to keep up with 50 databases a day.
You would also soon flood your network and have severe latency...
November 4, 2011 at 11:40 am
Viewing 15 posts - 1,396 through 1,410 (of 4,745 total)