Viewing 15 posts - 1,441 through 1,455 (of 2,897 total)
GabyYYZ (4/27/2010)
2. Processes: what's a process? 😀 (yeah I know, this is forcing us to think)
3. Roles: probably the easiest piece so far we're dealing...
April 28, 2010 at 8:33 am
If these are important databases with frequent activity, then it's strange you are only taking transaction log backups once a day at 3:30 am. If you have a failure...
April 28, 2010 at 8:19 am
bernard black (4/27/2010)
I can't imagine your DBA won't help. Its amazing how some people interact with each other (or don't)
OP's DBA was "helping", but not sure that it was...
April 27, 2010 at 9:23 am
Ideally, you would leave the free space there so it's available as your database grows. Then it does not need to re-allocate the space. If you absolutely need the space...
April 27, 2010 at 8:40 am
Brandie Tarvin (4/27/2010)
April 27, 2010 at 6:21 am
There are probably no backups, so it may not matter how the t-log is shrunk.
April 26, 2010 at 1:37 pm
Lynn Pettis (4/26/2010)
Also, I hope you duly noted that I RECOMMENDED AGAINST changing the recovery model to SIMPLE and back to FULL.
So ... you would advise against creating a nightly...
April 26, 2010 at 1:08 pm
Did you take a full backup after switching back to full recovery ?
April 26, 2010 at 12:33 pm
We posted 2 pages the other day trying to help you with this problem. Instead of starting a new thread, you could read the replies, answer the questions, and read...
April 26, 2010 at 12:28 pm
Idera also has a more straight forward Object Level Recovery. We use Redgate here because it was in place before I started, otherwise I'd lean towards Idera that I...
April 26, 2010 at 11:12 am
You could create an insert trigger that puts the value NAME into another table. It would overwrite whatever the previous value was with the new value. Or add a...
April 26, 2010 at 4:21 am
striker-baba (4/23/2010)
I ran the query
SELECT
a.index_id,
name,
avg_fragmentation_in_percent
FROM sys.dm_db_index_physical_stats (DB_ID(' dbname '),OBJECT_ID(' table a '),NULL, NULL, 'limited') AS a
JOIN sys.indexes AS b ON
a.object_id...
April 25, 2010 at 8:21 pm
striker-baba (4/25/2010)
But after using the command both the data and log file sizes got increased.
I...
April 25, 2010 at 6:17 pm
striker-baba (4/25/2010)
I dont know what impact does it has on the...
April 25, 2010 at 3:10 pm
Assuming it's a production database, do you understand the disaster recover risks of switching to simple ?
April 25, 2010 at 7:39 am
Viewing 15 posts - 1,441 through 1,455 (of 2,897 total)