Forum Replies Created

Viewing 15 posts - 1,441 through 1,455 (of 2,897 total)

  • RE: Are the posted questions getting worse?

    GabyYYZ (4/27/2010)


    1. Security: working on it...

    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...

  • RE: Backup schedules

    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...

  • RE: transaction log full

    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...

  • RE: SQL 2000 sp_spaceused, high unused space

    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...

  • RE: Drop and recreate vs alter stored procedure

    Brandie Tarvin (4/27/2010)


    For the purposes of SDLC, Drop and Create gives you a date to which you can trace back changes that broke the proc, if something gets broken. The...

  • RE: production database log full

    There are probably no backups, so it may not matter how the t-log is shrunk.

  • RE: production database log full

    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...

  • RE: production database log full

    Did you take a full backup after switching back to full recovery ?

  • RE: production database log full

    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...

  • RE: Redgate's SQL backup vs Idera's SQL Safe

    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...

  • RE: How To Get Last Inserted Record Value In SQL Server

    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...

  • RE: Performance issue due to index fragmentation.

    striker-baba (4/23/2010)


    Thanks to all for the replies.

    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...

  • RE: transaction log full

    striker-baba (4/25/2010)


    Actually , I first tried to shrink the log and data file using dbcc shrinkfile command.

    But after using the command both the data and log file sizes got increased.

    I...

  • RE: transaction log full

    striker-baba (4/25/2010)


    I had a suggestion to put the database in simple recovery mode and then shrink the transaction log file

    I dont know what impact does it has on the...

  • RE: transaction log full

    Assuming it's a production database, do you understand the disaster recover risks of switching to simple ?

Viewing 15 posts - 1,441 through 1,455 (of 2,897 total)