Viewing 15 posts - 3,256 through 3,270 (of 4,745 total)
Don't listen to anyone who is not a DBA about database backups. They won't be responsible for recovery, you will. I would agree the tools you should be wary of...
October 28, 2009 at 5:40 pm
personally I would not leave applying service packs up to wsus. What about closing down apps before the install and backing up the system databases so you have a backout?
As...
October 28, 2009 at 5:06 pm
cheers for posting that.
October 28, 2009 at 2:41 pm
post the actual error from the SQL error log when login fails, we need the state value. This could be something like incorrect default database if userid is not orphaned.
October 28, 2009 at 8:31 am
see
http://msdn.microsoft.com/en-us/library/ms151799.aspx
would not surprise me if replication latency is higher on a mirrored database.
October 28, 2009 at 7:56 am
remember if you do this any updates done in DR will be carried back to the live site, so be sure that is what you want to happen.
October 28, 2009 at 7:38 am
there is a configuration option in SQL for network packet size, this has a maximum of 32K.
change this at your peril. I did once and it broke part of an...
October 28, 2009 at 7:23 am
User is most likely orphaned from its login
run this command in the database
sp_change_users_login 'report'
if the appsa user is listed in the results set run this
sp_change_users_login 'update_one','appsa','appsa'
October 28, 2009 at 7:15 am
I don't know of any flag but the system databases always have the same name so you could use that to identify them (master,model,msdb,tempdb,distribution). anything else is a user database.
October 27, 2009 at 4:32 pm
You can change it if it is not already in mixed mode. just select mixed mode in SSMS property window, OK out of it, and restart SQL (don't forget to...
October 26, 2009 at 2:25 pm
sounds like a good case for the 'queryout' option in the command line utility BCP. If it is a lot of data it will be faster than SSIS.
October 24, 2009 at 4:28 pm
cjgilson (10/22/2009)
October 22, 2009 at 2:54 pm
This query will tell you when stats were last updated for a table:
select 'index name' = i.name,
'stats date' = stats_date(i.id,i.indid)
from sysobjects o, sysindexes i
where o.name = 'g_batch_audit' and o.id =...
October 22, 2009 at 12:42 pm
are the stats up to date? indexes fragmented.?do the queries return the same amount of data?
check to see if the query plans are the same on the two databases.
October 22, 2009 at 12:31 pm
If you can get the differential backup taken, copied and restored in a time that gives an acceptable outage, stick with it. If you want to reduce outage even more,...
October 22, 2009 at 12:26 pm
Viewing 15 posts - 3,256 through 3,270 (of 4,745 total)