Forum Replies Created

Viewing 15 posts - 31 through 45 (of 1,539 total)

  • RE: Application freezes during Multiple File Backup

    Long running Queries? Find their SPids and see what are they waiting on..



    Pradeep Singh

  • RE: Application freezes during Multiple File Backup

    Backups do not interfare with other operations. Have you tried finding if there is any blocking during that period? You said the backups are on some shared drive (assuming...



    Pradeep Singh

  • RE: RAM in SLQ Server 2000

    This is normal. When SQL Server reaches a particular level of memory uses, It doesn't release it back to operating system unless there is memory pressure. Check your max memory...



    Pradeep Singh

  • RE: Trace flag for monitoring the deadlock in sql server 2000

    Dev (11/28/2011)


    1204 & 1222.

    Trace Flags (Transact-SQL)

    http://msdn.microsoft.com/en-us/library/ms188396.aspx

    1222 is for 2005 and above.

    1204 will work in 2000.



    Pradeep Singh

  • RE: Tempdb log not freeing up space in SQL 2000 SP4

    GilaMonster (9/21/2011)


    ps. (9/16/2011)


    also, once any data/log file reaches a particular size, it wont free up space on it's own.

    Errr, what???

    Doesn't matter how large a log gets, assuming nothing is preventing...



    Pradeep Singh

  • RE: Tempdb log not freeing up space in SQL 2000 SP4

    Once a file reaches to a particular size, say 10 GB; even though the used space in the file is few MBs, the physical file size will remain at 10...



    Pradeep Singh

  • RE: convert string data to int

    I imported the access db in a staging database. From there all conversions were smooth. database didnt have huge number of records so used normal select into statement with conditions...



    Pradeep Singh

  • RE: Almost real time data for reporting database.

    Transactional Replication is the closest you can think of implementing at this stage.

    You can also wait for some time before new version of sql server is released where in you...



    Pradeep Singh

  • RE: How to solve this error

    shatrughna (9/17/2011)


    Hi,

    Perhaps some of your queries making lock on table.

    Run SP_LOCK and check lock status of your database.

    Cant be sure that entire table is locked. It can even be a...



    Pradeep Singh

  • RE: How to run commands on a changing set of databases

    Tom.Thomson (9/17/2011)


    use master

    go

    begin

    declare @crlf varchar(2)=char(13)+char(10)

    declare @sql varchar(max) = ''

    select @sql = @sql+'use '+name+@crlf+@command+@crlf+'go'+@crlf

    from master.sys.databases

    where source_database_id is null and is_in_standby=0 and is_read_only=0

    and name not...



    Pradeep Singh

  • RE: Tempdb log not freeing up space in SQL 2000 SP4

    do you have nightly maintainence jobs? index defrag/dbcc checkdb? are they scheduled to run in parallel? they can consume good amount of tempdb. also, once any data/log file reaches a...



    Pradeep Singh

  • RE: Advice on Reducing Database size

    Also, as you mentioned, rebuild all indexes after the activity to remove index fragmentation. This also updates statistics.



    Pradeep Singh

  • RE: Advice on Reducing Database size

    Daniel Smith-480684 (9/16/2011)


    The database is in SIMPLE recovery mode (or should be). If I understand your reply correctly, deleting unwanted rows won't reduce my Data file, but will free up...



    Pradeep Singh

  • RE: Advice on Reducing Database size

    Daniel Smith-480684 (9/16/2011)


    I am looking for advice on how to reduce the amount of space that my databases at work are using.

    The situation at my current workplace is we have...



    Pradeep Singh

  • RE: Replication

    you will need to install 2 instances on the cluster with one of the databases on each instance and run both instances on seperate nodes (active/active).

    Get help of experts in...



    Pradeep Singh

Viewing 15 posts - 31 through 45 (of 1,539 total)