Viewing 15 posts - 1,036 through 1,050 (of 1,539 total)
Frankly speaking i haven't come across the software u mentioned. So cant comment how it works.;-)
June 18, 2009 at 8:07 am
have u created linked server for asp2.pragmaproducts.com?
June 18, 2009 at 7:40 am
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?
June 18, 2009 at 7:37 am
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...
June 18, 2009 at 7:34 am
I'm not sure but see if this can help u.
http://blogs.msdn.com/sql_protocols/archive/2006/08/10/694657.aspx
June 18, 2009 at 6:37 am
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..
June 18, 2009 at 6:12 am
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,...
June 18, 2009 at 6:08 am
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...
June 18, 2009 at 5:29 am
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
June 18, 2009 at 4:37 am
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
June 18, 2009 at 4:34 am
Log shipping seems the obvious choice here!! It's easier to implement than others.
What edition of sql server 2000 are you running?
June 18, 2009 at 4:22 am
shanila_minnu (6/18/2009)
insert into table1(col1,col2,col3)
select col1, col2, col3 from server2.database2.owner2.table2
You'll need to create linked server...
June 18, 2009 at 4:21 am
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...
June 18, 2009 at 4:11 am
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.
June 18, 2009 at 3:44 am
thang_ngo_2002 (6/18/2009)
June 18, 2009 at 3:37 am
Viewing 15 posts - 1,036 through 1,050 (of 1,539 total)