Forum Replies Created

Viewing 11 posts - 61 through 71 (of 71 total)

  • RE: T-Log Backups - Before or After Switching

    If the recovery model is in bulk mode then the size of the tran log backups will be smaller compare to full especially when log is being dumped during some...

  • RE: Error on Scheduled Jobs Unable to determine if the owner .....

    Enterprise manager->Management->SQL Server Agent-> jobs->Right click on the job->properties->general tab->Owner drop down....

    thx,

    krishnan kaniappan

  • RE: DBCC SHOWCONTIG drives DBREINDEX

     

    You can look at DBCC INDEXDEFRAG.It is an online operation and it does not hold locks long term and thus will not block running queries.

     

    And then u can rebuild...

  • RE: ldf purpose

    the log files are used for disaster recovery ,recovery of individual transaction or for recovery for all all incomplete transactions when sql server is started.

    Point in time failure recovery... Log shipping to...

  • RE: Error 14421 Log shipping

    check the SQL Agent is running and verify the restore jobs on destination and if it missed to ship the log  then try to manually restore the log files.

    thx,

    krishnan kaniappan

  • RE: Index Fragmentation

    Can you post the dbcc showcontig info for the table..

     

    And also the structure of the table and indexes in it..

    Thx,

    krishnan kaniappan

  • RE: SHOWGONTIG drives DBREINDEX

    You can look at DBCC INDEXDEFRAG.It is an online operation and it does not hold locks long term and thus will not block running queries.

     

    And then u can rebuild the...

  • RE: dbcc shrinkfile

    Since the db is in simple mode that should keep transaction log files size in check..

    If u see lot of free space in the data files and uneed to release...

  • RE: memory usage

    the object might have been dropped...

     

    Thx,

    Krishnan Kaniapapn

  • RE: maintenance plan job hanging

    start the job and query the sysprocesses table and see whether it has been blocked by another process and also can you post the output file details for the job...that...

  • RE: Rebuild SQL index fails in SQL 6.5

    move the rows into temp table where ticketid=301068226

    delete from the ticket table where ticketid=301068226

    Insert the row which u want in the table...

     

    -krishnan

Viewing 11 posts - 61 through 71 (of 71 total)