Forum Replies Created

Viewing 15 posts - 691 through 705 (of 1,539 total)

  • RE: Blocking Query

    for a starter this query should help u.

    select * from sys.sysprocesses where blocked0



    Pradeep Singh

  • RE: query

    your case statement looks incorrect. can you post table structure, sample data and expected output pls.

    This URL will help you in posting these.

    http://www.sqlservercentral.com/articles/Best+Practices/61537



    Pradeep Singh

  • RE: RESTORE PROBLEM

    john_arshi (7/15/2009)


    yes i can restore database....

    i have database backup but that not restore please help me

    your two statements are contradicting each other. can u explain more on what you're doing?

    also...



    Pradeep Singh

  • RE: Fragmentation

    Full backups are sent directly to the tape and the tran log backups are taken on disk and then copied to tape with retention period of a week i guess.

    otherwise...



    Pradeep Singh

  • RE: Unable to Shrink Log file

    log_reuse_wait_descr column states what is preventing log truncation. In your case, its Replication which means there is a unfinished replication. This may happen if you've restored this database from a...



    Pradeep Singh

  • RE: SQL Server Instances

    mmartin (7/15/2009)


    One benefit of instances is that when you create a linked server connection to a database in another instance (of the same machine) then data does not have to...



    Pradeep Singh

  • RE: Fragmentation

    Ian Scarlett (7/15/2009)


    What's the point of keeping the history much beyond 2 weeks?

    ...

    ...

    You can still restore manually without the history in these tables.

    I think i should delete more of it....



    Pradeep Singh

  • RE: replication

    vinuvt (7/15/2009)


    Our requirement is

    1.Any database changes that happens in server 1 databases must be replicated to Server 2 and vice-versa.

    2.People from L1 connect to Server 1 only...



    Pradeep Singh

  • RE: Fragmentation

    yeah, i did delete data keeping only 3 months.. seems it's improved but still not accetable.. there are around 10 user databases and tran log backups happens every 10 mins.....



    Pradeep Singh

  • RE: moving of backup files

    ramyours2003 (7/15/2009)


    how to take backup of a database from one server to another ?

    use network share.

    or how to movethe backup files from one server to another

    copy/paste.



    Pradeep Singh

  • RE: Transaction ready to be applied to Subscribers

    Sourav Mukherjee (7/14/2009)


    Hello

    What is the table or command I need to type (and where) to check for the number of transactions and the transaction related details are waiting to be...



    Pradeep Singh

  • RE: How to separate one attribute (zip code from city) in 2 columns?

    Am glad it worked 🙂



    Pradeep Singh

  • RE: How to separate one attribute (zip code from city) in 2 columns?

    Jagger (7/14/2009)


    It doesn't work.

    What I did?

    Select left('zip and city',charindex(' ',''zip and city'')-1) as ZIP,

    right(''zip and city'',len(''zip and city'')-charindex(' ',''zip and city''))as City

    into NewCustomer

    from customer

    why?

    because you havent mentioned your...



    Pradeep Singh

  • RE: How to separate one attribute (zip code from city) in 2 columns?

    --1. create the table

    create table customer

    (

    [zip and city] varchar (50)

    )

    --2. insert sample data

    insert into customer

    select '60601 Chicago'

    union

    select '60602 Chicago'

    union

    select '10292 New York'

    --3. parse and insert data to new table

    select...



    Pradeep Singh

  • RE: Can transaction replication cause/effect MS SQL Server 2000’s logs to grow (tremendous)?

    Thanks for the feedback 🙂



    Pradeep Singh

Viewing 15 posts - 691 through 705 (of 1,539 total)