Forum Replies Created

Viewing 15 posts - 38,101 through 38,115 (of 49,571 total)

  • RE: Transaction Log is reseted

    Either you have a maintenance plan option that's doing a shrink or you have autoshrink on or there's a manual shrink job somewhere.

  • RE: Data Consistency Error

    You will not be able to see the corrupted pages even with DBCC Page. They're damaged, SQL won't read them. Besides, from looking at the errors, it looks like a...

  • RE: index rebuild and recovery plan.

    Switch it to bulk-logged. If you switch to simple you'll be breaking the log chain and will need to do a full backup after switching back to full.

  • RE: Disaster Recovery - An Afterthought?

    Disaster recovery? What's that?

    I'm almost ready to stop asking if people have backups when they post corruption questions. It's a waste of time.

  • RE: Data Consistency Error

    hi_abhay78 (6/29/2009)


    First take the database into emergency mode and then try to rebuild the index .

    Emergency mode is for recovering a database that's suspect.

  • RE: Error while creating covering-index (Msg: 170)

    Compatibility mode 80?

    Edit: Never mind. Ignore this. I misread the forum this was in.

  • RE: Irregular Size of Differential Backup File

    venu_ksheerasagaram (6/29/2009)


    2)Is the differential backup depends on the full backup file?

    No, but you need both to restore a database

    3)Suppose the full backup of the DB is not existed (or) moved...

  • RE: Data Consistency Error

    Rebuild's not going to help. There's damage to the clustered index (ie the table itself). That's not redundant data hence there's nowhere for an index rebuild to read the damaged...

  • RE: MDF Size Shrunk

    Why do you want to shrink? Databases tend to grow as more data gets put in them. It's in their nature.

    Shrinking causes massive fragmentation and will just result in the...

  • RE: Custom Script Needed

    Ramji (6/29/2009)


    Hi All,

    I need a script which should take a integer as input parameter(time in minutes), and should query sysjobs, sysjobhistory to check whether there is a mintanence window possible...

  • RE: Indexes with Include

    Grant Fritchey (6/29/2009)


    You're right about the DROPCLEANBUFFERS and FREEPROCCACHE.

    Personally I prefer to run all test queries twice and ignore the times of the first result. That way, what I'm seeing...

  • RE: FIRST Clause in MS Access not supported in MS SQL how to rewrite query

    keil.asta (6/28/2009)


    hmmm your making me rethink why I want to include certain columns at all when only showing first of looses the relavance of the data. Maybe I dont...

  • RE: FIRST Clause in MS Access not supported in MS SQL how to rewrite query

    Well, first you need to tell us what you consider to be the 'first' value. Tables have no order, so any row is equally valid as the 'first'

    Why would row...

  • RE: server side [?] query execution time

    Then you should use the execution time from statistics IO or the duration from profiler as it includes all the times that SQL had to wait while executing that query....

  • RE: server side [?] query execution time

    Are things like IO latency (when fetching data off disk), lock wait times and the like relevant, or are you just looking for the amount of timethe queries spent executing...

Viewing 15 posts - 38,101 through 38,115 (of 49,571 total)