Viewing 15 posts - 136 through 150 (of 518 total)
Just to double check...in your production database after it gets restored, did you manually check to see if it's still set to Simple?
Can you try running dbcc sqlperf(logspace) and see...
October 22, 2010 at 1:13 pm
SeanLange (10/22/2010)
Derrick Smith (10/22/2010)
Actually you can use varchar(max), nvarchar(max), varbinary(max) with inserted/deleted tables. It's just the deprecated ones that don't work.
o rly? I didn't know that. I thought it would...
October 22, 2010 at 1:06 pm
SeanLange (10/22/2010)
October 22, 2010 at 12:58 pm
It is logged, but is nowhere near the amount of logging that say a reindex does (even with fullscan).
October 22, 2010 at 12:56 pm
Was this a failed install, or an install/uninstall? Did the SQL Uninstaller remove the group, or did you do it manually, and was this before or after you ran the...
October 22, 2010 at 9:50 am
If I'm restoring a database for the first time, or one that I don't do regularly enough to already have a script for, I will always go through the GUI,...
October 22, 2010 at 9:48 am
If you can access the database while it's growing, you can check the sys.databases table and look at the log_reuse_wait_desc column to see why log space can't be reused (and...
October 22, 2010 at 9:32 am
Typically it's because of a clustered index and having to reorder pages when you insert new non-sequential data.
If there are no indexes at all (table is a heap), then possibly...
October 22, 2010 at 9:27 am
You can't put tasks into the parent maintenance plan..everything gets put into a subplan, and then that's what you can schedule (and rename from subplan1). Even if you only have...
October 14, 2010 at 10:46 am
I thought it used the windows regional settings for that?
Or maybe that was just excel..
October 14, 2010 at 10:41 am
MostInterestingMan (10/12/2010)
GilaMonster (10/12/2010)
MostInterestingMan (10/12/2010)
October 12, 2010 at 3:40 pm
Doing a transaction log backup does not release space back to the OS. The file stays allocated at that size (for good reason).
If you run DBCC SQLPERF(logspace), it should show...
October 12, 2010 at 3:30 pm
Agreed - check your MAXDOP.
If all cores are pegged, then maxdop is set to 0 (or as many cores as you have)..this will either speed up the query, or lock...
October 12, 2010 at 2:44 pm
In the step of the job on the Advanced tab, specify an output file (.txt). It will log all errors to that.
You should also see more detail in the step...
October 12, 2010 at 2:42 pm
drew.allen (10/12/2010)
Derrick Smith (10/12/2010)
AND (NOT email IN (SELECT email FROM failures))
AND (NOT email IN (SELECT email FROM removes))
AND (NOT email IN (SELECT email FROM contacts));
I'd be...
October 12, 2010 at 2:40 pm
Viewing 15 posts - 136 through 150 (of 518 total)