Forum Replies Created

Viewing 15 posts - 1,036 through 1,050 (of 1,539 total)

  • RE: Configure Distribution

    Frankly speaking i haven't come across the software u mentioned. So cant comment how it works.;-)

  • RE: quering data on two different servers and different database

    have u created linked server for asp2.pragmaproducts.com?

  • RE: SQl Backup

    i dont think sysdate() is a valid function (unless its a UDF).

    try replacing that with convert(varchar, getdate(),112) and it should be fine.

    btw, what is the question?

  • RE: backup in sql server2005

    The backup path u've specified should be present on the server (not on the client machine from where u're connecting)

    You also might want to download express edition with advance services...

  • RE: Configure Distribution

    Seems you have registered your server in SSMS using IP address of the server.

    Try re-registering with actual server name and then proceed to configure distribution..

  • RE: DML triggers in SQL Server 2005 Express

    here is how you create linked server on the source database

    sp_addlinkedserver 'Audit_server'

    Once that is done, you can setup a test environment by creating a test table in the audit database,...

  • RE: How to backup DB Online

    thang_ngo_2002 (6/18/2009)


    I use Enterprise edition

    2000 Enterprise edition supports log shipping through GUI.

    I suggest you go through these URL's to have an understanding of what is log shipping in SQL...

  • RE: replication

    shanila_minnu (6/18/2009)


    does 2000 standard edition supports replication.

    wat is tyhe difference between sql 2000 standard and enterprise edition in replication

    http://msdn.microsoft.com/en-us/library/aa175266.aspx answers all ur queries

  • RE: DML triggers in SQL Server 2005 Express

    1. create linked server on the production database pointing to Audit server.

    2. In your trigger you can write something like this

    insert into AuditServer.AuditDB.owner.AuditTable(list of columns.....)

    select col1, col2..... coln from inserted/deleted

  • RE: How to backup DB Online

    Log shipping seems the obvious choice here!! It's easier to implement than others.

    What edition of sql server 2000 are you running?

  • RE: insert data

    shanila_minnu (6/18/2009)


    how can we insert rows from a table XYZ of one database to another database table XYZ[/qote]

    insert into table1(col1,col2,col3)

    select col1, col2, col3 from server2.database2.owner2.table2

    You'll need to create linked server...

  • RE: Problem Restoring 2nd and Succeeding Differential Backup

    Lynn Pettis (6/18/2009)[hr

    Unfortuanately lohipping isn't an option in this case as the production databases are using the simple recovery model. Can't do t-log backups in this case.

    Thanks for correcting...

  • RE: How to backup DB Online

    Lynn Pettis (6/18/2009)


    Database mirroring is not a native option in SQL Server 2000.

    Ahh.. thanks for correcting me Lynn:w00t:. for a moment i thought this post was related to 2005.

  • RE: How to backup DB Online

    thang_ngo_2002 (6/18/2009)


    No, I mean "Backup Online" is that DB in backup site is the same in the main site time by time and if main site suddenly downs, we can...

Viewing 15 posts - 1,036 through 1,050 (of 1,539 total)