Forum Replies Created

Viewing 15 posts - 106 through 120 (of 1,539 total)

  • RE: How to find out what is truncating a database transaction log

    Just a thought. Does your application has some sort of db maintainence code written in it which truncates log if it is getting full?

    btw, i ran profiler and captured...

  • RE: Cannot delete db on sqlserver

    tried to simulate your situation.

    create database testdd on primary(name='testdd', filename='c:\testdd.mdf')

    log on (name ='testddlog', filename='c:\testddlog.ldf')

    -- setting database to offline mode

    alter database testdd set offline

    -- now deleting mdf file

    xp_cmdshell 'del "c:\testdd.mdf"'

    -- trying...

  • RE: How to find out what is truncating a database transaction log

    Patricia Johnson (11/22/2010)


    I am using SQL 2000. Sorry about that. We are planning to upgrade to 2008 but until then I'm here.

    I have looked at all...

  • RE: Copydatabase

    You can take a backup of the database, copy the backup to target server and restore over there.

  • RE: Poor Restore Times

    csoloway (11/21/2010)


    Memory 4G on Server, but SQL is limited to it's annoying 2G

    Slow network

    You can increase SQL Server memory usage to upto 3 GB by using /3gb switch.

    You mentioned slow...

  • RE: SQL 2008 Profiler

    Thanks Gail. I cross verified this one.

  • RE: SQL 2008 Profiler

    Gail, just checked and its showing NTUsername for my user. i am connected using a local userid/pwd.

    Login name it's showing as machinename\username

  • RE: SQL Server Scheduler Performance

    What is scheduler?

    Do you mean the scheduler which is mapped to logical CPU? or something else?

  • RE: SQL 2008 Profiler

    mpsathiskumar (11/19/2010)


    I want separate SQL 2008 profiler individual user trace with different machine with any of the filter option.

    What do you want to trace? What do you mean...

  • RE: DB mirroring

    zeeyenyes4u (11/18/2010)


    From principal server i have sent the data to an individual server which is not in DB MIRRORING..... what will be the result?

    can u clarify more.

  • RE: Why does Select fails with Transaction Deadlock Error?

    DataDog (11/18/2010)


    connection 1 - get lock on index A

    connection 2 - get lock on index B

    connection 1 - waits for lock in index B

    connection 2 - deadlocks on lock for...

  • RE: My restore job failed ...In logshipping

    yes. It would be better if you zip the backup and then copy. this would reduce copy time.

  • RE: Locks

    ravisamigo (11/18/2010)


    What might be the issue if I can see more locks when I ran a below query.

    SELECT request_session_id, COUNT (*) num_locks FROM sys.dm_tran_locks GROUP BY request_session_id

    ORDER BY count...

  • RE: Use of temp table

    GilaMonster (11/18/2010)


    ps. (11/18/2010)


    Only difference is it will be destroyed when u disconnect (Prefixed with #)

    There are other differences internally around logging, caching when dropped and the like.

    Thanks Gail. Need...

  • RE: My restore job failed ...In logshipping

    You need to find out which particular log backup file didn't get restored. If you cannot dig into what caused the failure, simply take a backup of production and restore...

Viewing 15 posts - 106 through 120 (of 1,539 total)