I've installed log shipping, it was working very fine but since last 2 days
it is givving this type error as given below. Anyone plz help me it's urgent
and in this scenario what should I do
[Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 4305: [Microsoft]
91;ODBC SQL Server Driver][SQL Server]The log in this backup set begins
at LSN 589000000013600001, which is too late to apply to the database. An ea
rlier log backup that includes LSN 58900000
0011700001 can be restored.
[Microsoft][ODBC SQL Server Driver][SQL Server]RESTORE LOG is te
rminating abnormally.
Thanks in advance and Regards,
SunilSunil
How do you implement the log shipping?
Do you perform BACKUP LOG withinit OPTION and then RESTORE it.
It seems you have lost a consistency (brocken a chain) of the database.
drop database test
go
create database test
GO
Alter database set recovery full
create table test..test(id int identity)
insert test..test default values
backup database test to disk = 'd:\db.bak' WITH INIT
insert test..test default values
backup log test to disk = 'd:\log.bak'WITH INIT
insert test..test default values
backup log test to disk = 'd:\log.bak' WITH INIT
GO
RESTORE DATABASE test FROM disk = 'd:\db.bak' WITH FILE = 1, norecovery
RESTORE LOG test FROM disk = 'd:\log.bak' WITH recovery
GO
After running tthis script you supposed to get the same error.
"Sunil" <anonymous@.discussions.microsoft.com> wrote in message
news:61F86E7E-5F98-4582-8740-AF5DE5F31000@.microsoft.com...
> I've installed log shipping, it was working very fine but since last 2
days it is givving this type error as given below. Anyone plz help me it's
urgent and in this scenario what should I do
>
>
> [Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 4305: [Microsoft][ODB
C
SQL Server Driver][SQL Server]The log in this backup set begins at LSN
589000000013600001, which is too late to apply to the database. An earlier
log backup that includes LSN 589000000011700001 can be restored.
> [Microsoft][ODBC SQL Server Driver][SQL Server]RESTORE LOG is terminat
ing
abnormally.
>
> Thanks in advance and Regards,
>
> Sunil
Showing posts with label installed. Show all posts
Showing posts with label installed. Show all posts
Friday, March 23, 2012
Wednesday, March 21, 2012
Log Shipping on two different networks.
Hi,
I have two servers with MS SQL Server 2000 Enterprise Edition
installed on it. These two servers are on different networks, means you
can say that these two servers are having two different network
segments.
Now, i want to configure Log Shipping on these two servers. Here
my doubt is can we setup Log Shipping on these servers.
Thanks & Regards,
MS SQL DBA.I believe so, as it's all based on tcp/ip and filesharing.
We log ship over a wan to a 3rd party data centre. We are using custom
scripts are we are using SqlLiteSpeed to compress the logs.
We have a BDC at the remote site to handle authentication.
Paul
<csajid@.gmail.com> wrote in message
news:1162464539.029111.215840@.h54g2000cwb.googlegroups.com...
> Hi,
> I have two servers with MS SQL Server 2000 Enterprise Edition
> installed on it. These two servers are on different networks, means you
> can say that these two servers are having two different network
> segments.
> Now, i want to configure Log Shipping on these two servers. Here
> my doubt is can we setup Log Shipping on these servers.
>
> Thanks & Regards,
> MS SQL DBA.
>|||csajid@.gmail.com wrote:
> Hi,
> I have two servers with MS SQL Server 2000 Enterprise Edition
> installed on it. These two servers are on different networks, means you
> can say that these two servers are having two different network
> segments.
> Now, i want to configure Log Shipping on these two servers. Here
> my doubt is can we setup Log Shipping on these servers.
>
> Thanks & Regards,
> MS SQL DBA.
>
If you can copy files between the two servers, you can log ship between
them. Log shipping is nothing more than doing a backup on Server A,
copying that backup to Server B, then restoring it on Server B.
Tracy McKibben
MCDBA
http://www.realsqlguy.com|||Hi All,
Thanks for your reply.
One of my concern is that, there is any need to open specific
port to do the Log Shipping.
Thanks & Regards,
Sajid C.
Tracy McKibben wrote:
> csajid@.gmail.com wrote:
> > Hi,
> >
> > I have two servers with MS SQL Server 2000 Enterprise Edition
> > installed on it. These two servers are on different networks, means you
> > can say that these two servers are having two different network
> > segments.
> >
> > Now, i want to configure Log Shipping on these two servers. Here
> > my doubt is can we setup Log Shipping on these servers.
> >
> >
> >
> > Thanks & Regards,
> > MS SQL DBA.
> >
> If you can copy files between the two servers, you can log ship between
> them. Log shipping is nothing more than doing a backup on Server A,
> copying that backup to Server B, then restoring it on Server B.
>
> --
> Tracy McKibben
> MCDBA
> http://www.realsqlguy.com|||Hi All,
Thanks for your reply.
One of my concern is that, there is any need to open specific
port to do the Log Shipping.
Thanks & Regards,
Sajid C.
Tracy McKibben wrote:
> csajid@.gmail.com wrote:
> > Hi,
> >
> > I have two servers with MS SQL Server 2000 Enterprise Edition
> > installed on it. These two servers are on different networks, means you
> > can say that these two servers are having two different network
> > segments.
> >
> > Now, i want to configure Log Shipping on these two servers. Here
> > my doubt is can we setup Log Shipping on these servers.
> >
> >
> >
> > Thanks & Regards,
> > MS SQL DBA.
> >
> If you can copy files between the two servers, you can log ship between
> them. Log shipping is nothing more than doing a backup on Server A,
> copying that backup to Server B, then restoring it on Server B.
>
> --
> Tracy McKibben
> MCDBA
> http://www.realsqlguy.com|||I believe file sharing in over
TCP 139
TCP 445
UDP 137
UDP 138
Make sure you can see the shared folders.
As our log shipping is based on exec'ing remote stored procs I need port
1433 for Sql Server.
Paul
<csajid@.gmail.com> wrote in message
news:1162549383.086499.183990@.h48g2000cwc.googlegroups.com...
> Hi All,
> Thanks for your reply.
> One of my concern is that, there is any need to open specific
> port to do the Log Shipping.
>
> Thanks & Regards,
> Sajid C.
> Tracy McKibben wrote:
>> csajid@.gmail.com wrote:
>> > Hi,
>> >
>> > I have two servers with MS SQL Server 2000 Enterprise Edition
>> > installed on it. These two servers are on different networks, means you
>> > can say that these two servers are having two different network
>> > segments.
>> >
>> > Now, i want to configure Log Shipping on these two servers. Here
>> > my doubt is can we setup Log Shipping on these servers.
>> >
>> >
>> >
>> > Thanks & Regards,
>> > MS SQL DBA.
>> >
>> If you can copy files between the two servers, you can log ship between
>> them. Log shipping is nothing more than doing a backup on Server A,
>> copying that backup to Server B, then restoring it on Server B.
>>
>> --
>> Tracy McKibben
>> MCDBA
>> http://www.realsqlguy.com
>|||Hi Paul,
Thanks for your reply.
Thanks & Regards,
Sajid C.
Paul Cahill wrote:
> I believe file sharing in over
> TCP 139
> TCP 445
> UDP 137
> UDP 138
> Make sure you can see the shared folders.
> As our log shipping is based on exec'ing remote stored procs I need port
> 1433 for Sql Server.
> Paul
>
> <csajid@.gmail.com> wrote in message
> news:1162549383.086499.183990@.h48g2000cwc.googlegroups.com...
> > Hi All,
> >
> > Thanks for your reply.
> >
> > One of my concern is that, there is any need to open specific
> > port to do the Log Shipping.
> >
> >
> > Thanks & Regards,
> > Sajid C.
> >
> > Tracy McKibben wrote:
> >> csajid@.gmail.com wrote:
> >> > Hi,
> >> >
> >> > I have two servers with MS SQL Server 2000 Enterprise Edition
> >> > installed on it. These two servers are on different networks, means you
> >> > can say that these two servers are having two different network
> >> > segments.
> >> >
> >> > Now, i want to configure Log Shipping on these two servers. Here
> >> > my doubt is can we setup Log Shipping on these servers.
> >> >
> >> >
> >> >
> >> > Thanks & Regards,
> >> > MS SQL DBA.
> >> >
> >>
> >> If you can copy files between the two servers, you can log ship between
> >> them. Log shipping is nothing more than doing a backup on Server A,
> >> copying that backup to Server B, then restoring it on Server B.
> >>
> >>
> >> --
> >> Tracy McKibben
> >> MCDBA
> >> http://www.realsqlguy.com
> >|||Hi Paul,
Thanks for your reply.
Thanks & Regards,
Sajid C.
Paul Cahill wrote:
> I believe file sharing in over
> TCP 139
> TCP 445
> UDP 137
> UDP 138
> Make sure you can see the shared folders.
> As our log shipping is based on exec'ing remote stored procs I need port
> 1433 for Sql Server.
> Paul
>
> <csajid@.gmail.com> wrote in message
> news:1162549383.086499.183990@.h48g2000cwc.googlegroups.com...
> > Hi All,
> >
> > Thanks for your reply.
> >
> > One of my concern is that, there is any need to open specific
> > port to do the Log Shipping.
> >
> >
> > Thanks & Regards,
> > Sajid C.
> >
> > Tracy McKibben wrote:
> >> csajid@.gmail.com wrote:
> >> > Hi,
> >> >
> >> > I have two servers with MS SQL Server 2000 Enterprise Edition
> >> > installed on it. These two servers are on different networks, means you
> >> > can say that these two servers are having two different network
> >> > segments.
> >> >
> >> > Now, i want to configure Log Shipping on these two servers. Here
> >> > my doubt is can we setup Log Shipping on these servers.
> >> >
> >> >
> >> >
> >> > Thanks & Regards,
> >> > MS SQL DBA.
> >> >
> >>
> >> If you can copy files between the two servers, you can log ship between
> >> them. Log shipping is nothing more than doing a backup on Server A,
> >> copying that backup to Server B, then restoring it on Server B.
> >>
> >>
> >> --
> >> Tracy McKibben
> >> MCDBA
> >> http://www.realsqlguy.com
> >sql
I have two servers with MS SQL Server 2000 Enterprise Edition
installed on it. These two servers are on different networks, means you
can say that these two servers are having two different network
segments.
Now, i want to configure Log Shipping on these two servers. Here
my doubt is can we setup Log Shipping on these servers.
Thanks & Regards,
MS SQL DBA.I believe so, as it's all based on tcp/ip and filesharing.
We log ship over a wan to a 3rd party data centre. We are using custom
scripts are we are using SqlLiteSpeed to compress the logs.
We have a BDC at the remote site to handle authentication.
Paul
<csajid@.gmail.com> wrote in message
news:1162464539.029111.215840@.h54g2000cwb.googlegroups.com...
> Hi,
> I have two servers with MS SQL Server 2000 Enterprise Edition
> installed on it. These two servers are on different networks, means you
> can say that these two servers are having two different network
> segments.
> Now, i want to configure Log Shipping on these two servers. Here
> my doubt is can we setup Log Shipping on these servers.
>
> Thanks & Regards,
> MS SQL DBA.
>|||csajid@.gmail.com wrote:
> Hi,
> I have two servers with MS SQL Server 2000 Enterprise Edition
> installed on it. These two servers are on different networks, means you
> can say that these two servers are having two different network
> segments.
> Now, i want to configure Log Shipping on these two servers. Here
> my doubt is can we setup Log Shipping on these servers.
>
> Thanks & Regards,
> MS SQL DBA.
>
If you can copy files between the two servers, you can log ship between
them. Log shipping is nothing more than doing a backup on Server A,
copying that backup to Server B, then restoring it on Server B.
Tracy McKibben
MCDBA
http://www.realsqlguy.com|||Hi All,
Thanks for your reply.
One of my concern is that, there is any need to open specific
port to do the Log Shipping.
Thanks & Regards,
Sajid C.
Tracy McKibben wrote:
> csajid@.gmail.com wrote:
> > Hi,
> >
> > I have two servers with MS SQL Server 2000 Enterprise Edition
> > installed on it. These two servers are on different networks, means you
> > can say that these two servers are having two different network
> > segments.
> >
> > Now, i want to configure Log Shipping on these two servers. Here
> > my doubt is can we setup Log Shipping on these servers.
> >
> >
> >
> > Thanks & Regards,
> > MS SQL DBA.
> >
> If you can copy files between the two servers, you can log ship between
> them. Log shipping is nothing more than doing a backup on Server A,
> copying that backup to Server B, then restoring it on Server B.
>
> --
> Tracy McKibben
> MCDBA
> http://www.realsqlguy.com|||Hi All,
Thanks for your reply.
One of my concern is that, there is any need to open specific
port to do the Log Shipping.
Thanks & Regards,
Sajid C.
Tracy McKibben wrote:
> csajid@.gmail.com wrote:
> > Hi,
> >
> > I have two servers with MS SQL Server 2000 Enterprise Edition
> > installed on it. These two servers are on different networks, means you
> > can say that these two servers are having two different network
> > segments.
> >
> > Now, i want to configure Log Shipping on these two servers. Here
> > my doubt is can we setup Log Shipping on these servers.
> >
> >
> >
> > Thanks & Regards,
> > MS SQL DBA.
> >
> If you can copy files between the two servers, you can log ship between
> them. Log shipping is nothing more than doing a backup on Server A,
> copying that backup to Server B, then restoring it on Server B.
>
> --
> Tracy McKibben
> MCDBA
> http://www.realsqlguy.com|||I believe file sharing in over
TCP 139
TCP 445
UDP 137
UDP 138
Make sure you can see the shared folders.
As our log shipping is based on exec'ing remote stored procs I need port
1433 for Sql Server.
Paul
<csajid@.gmail.com> wrote in message
news:1162549383.086499.183990@.h48g2000cwc.googlegroups.com...
> Hi All,
> Thanks for your reply.
> One of my concern is that, there is any need to open specific
> port to do the Log Shipping.
>
> Thanks & Regards,
> Sajid C.
> Tracy McKibben wrote:
>> csajid@.gmail.com wrote:
>> > Hi,
>> >
>> > I have two servers with MS SQL Server 2000 Enterprise Edition
>> > installed on it. These two servers are on different networks, means you
>> > can say that these two servers are having two different network
>> > segments.
>> >
>> > Now, i want to configure Log Shipping on these two servers. Here
>> > my doubt is can we setup Log Shipping on these servers.
>> >
>> >
>> >
>> > Thanks & Regards,
>> > MS SQL DBA.
>> >
>> If you can copy files between the two servers, you can log ship between
>> them. Log shipping is nothing more than doing a backup on Server A,
>> copying that backup to Server B, then restoring it on Server B.
>>
>> --
>> Tracy McKibben
>> MCDBA
>> http://www.realsqlguy.com
>|||Hi Paul,
Thanks for your reply.
Thanks & Regards,
Sajid C.
Paul Cahill wrote:
> I believe file sharing in over
> TCP 139
> TCP 445
> UDP 137
> UDP 138
> Make sure you can see the shared folders.
> As our log shipping is based on exec'ing remote stored procs I need port
> 1433 for Sql Server.
> Paul
>
> <csajid@.gmail.com> wrote in message
> news:1162549383.086499.183990@.h48g2000cwc.googlegroups.com...
> > Hi All,
> >
> > Thanks for your reply.
> >
> > One of my concern is that, there is any need to open specific
> > port to do the Log Shipping.
> >
> >
> > Thanks & Regards,
> > Sajid C.
> >
> > Tracy McKibben wrote:
> >> csajid@.gmail.com wrote:
> >> > Hi,
> >> >
> >> > I have two servers with MS SQL Server 2000 Enterprise Edition
> >> > installed on it. These two servers are on different networks, means you
> >> > can say that these two servers are having two different network
> >> > segments.
> >> >
> >> > Now, i want to configure Log Shipping on these two servers. Here
> >> > my doubt is can we setup Log Shipping on these servers.
> >> >
> >> >
> >> >
> >> > Thanks & Regards,
> >> > MS SQL DBA.
> >> >
> >>
> >> If you can copy files between the two servers, you can log ship between
> >> them. Log shipping is nothing more than doing a backup on Server A,
> >> copying that backup to Server B, then restoring it on Server B.
> >>
> >>
> >> --
> >> Tracy McKibben
> >> MCDBA
> >> http://www.realsqlguy.com
> >|||Hi Paul,
Thanks for your reply.
Thanks & Regards,
Sajid C.
Paul Cahill wrote:
> I believe file sharing in over
> TCP 139
> TCP 445
> UDP 137
> UDP 138
> Make sure you can see the shared folders.
> As our log shipping is based on exec'ing remote stored procs I need port
> 1433 for Sql Server.
> Paul
>
> <csajid@.gmail.com> wrote in message
> news:1162549383.086499.183990@.h48g2000cwc.googlegroups.com...
> > Hi All,
> >
> > Thanks for your reply.
> >
> > One of my concern is that, there is any need to open specific
> > port to do the Log Shipping.
> >
> >
> > Thanks & Regards,
> > Sajid C.
> >
> > Tracy McKibben wrote:
> >> csajid@.gmail.com wrote:
> >> > Hi,
> >> >
> >> > I have two servers with MS SQL Server 2000 Enterprise Edition
> >> > installed on it. These two servers are on different networks, means you
> >> > can say that these two servers are having two different network
> >> > segments.
> >> >
> >> > Now, i want to configure Log Shipping on these two servers. Here
> >> > my doubt is can we setup Log Shipping on these servers.
> >> >
> >> >
> >> >
> >> > Thanks & Regards,
> >> > MS SQL DBA.
> >> >
> >>
> >> If you can copy files between the two servers, you can log ship between
> >> them. Log shipping is nothing more than doing a backup on Server A,
> >> copying that backup to Server B, then restoring it on Server B.
> >>
> >>
> >> --
> >> Tracy McKibben
> >> MCDBA
> >> http://www.realsqlguy.com
> >sql
Monday, March 19, 2012
Log Shipping Monitor - 2005
Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
Enterprise Manager still available with SQL Server 2005. I installed Log
Shipping on a 2005 server and selected the monitor option but I can not find
the nice Log Shipping monitor that give you status on log shipping. I also
searched through the Books Online documentation and several online resources
and I have not found a definitive answer.
Please help.
Thanks!
ChrisHi Chris
"Cgal" wrote:
> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
> Enterprise Manager still available with SQL Server 2005. I installed Log
> Shipping on a 2005 server and selected the monitor option but I can not find
> the nice Log Shipping monitor that give you status on log shipping. I also
> searched through the Books Online documentation and several online resources
> and I have not found a definitive answer.
> Please help.
> Thanks!
> Chris
In SQLServer 2005 there is a standard report called "Transaction Log
Shipping Status" that gives you the current status.
http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4) currently
gives information on how to show the report prior to SP2. You will need to
show the Object Explorer tab (view menu and select Object Explorer detals) to
get the reports button (on the tab's toolbar). The list of reports are
sensitive to the context which you have selected in the object explorer (F8)
so if you don't see this report you are probably not on the node for the
instance.
After SP2 you can right click the node for the instance and select
Reports/Standard Reports/Transaction Log Shipping Status
HTH
john|||John,
Thanks for the quick response.
I knew about the report that you referenced but I was hoping that there was
more. The report has no where near the functionality and usability of the
"Log Shipping Monitor" that came with SQL Server 2000.
Please let me know if there are any other tools for monitoring Log Shipping
beyond the report.
Thanks!
Chris
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:9C6B2961-67CB-4B3A-A822-C73899577EBD@.microsoft.com...
> Hi Chris
> "Cgal" wrote:
>> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
>> Enterprise Manager still available with SQL Server 2005. I installed Log
>> Shipping on a 2005 server and selected the monitor option but I can not
>> find
>> the nice Log Shipping monitor that give you status on log shipping. I
>> also
>> searched through the Books Online documentation and several online
>> resources
>> and I have not found a definitive answer.
>> Please help.
>> Thanks!
>> Chris
> In SQLServer 2005 there is a standard report called "Transaction Log
> Shipping Status" that gives you the current status.
> http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4)
> currently
> gives information on how to show the report prior to SP2. You will need to
> show the Object Explorer tab (view menu and select Object Explorer detals)
> to
> get the reports button (on the tab's toolbar). The list of reports are
> sensitive to the context which you have selected in the object explorer
> (F8)
> so if you don't see this report you are probably not on the node for the
> instance.
> After SP2 you can right click the node for the instance and select
> Reports/Standard Reports/Transaction Log Shipping Status
> HTH
> john|||Hi, Chris,
I guess that you would like to add a monitor server in your log shipping
environment.
If I have misunderstood, please let me know.
In SQL Server 2005, to monitor log shipping configuration, adding the
monitor server is required. If you do not have a monitor server, you may
need to manually run the system procedures such as
sp_help_log_shipping_primary_database,
sp_help_log_shipping_primary_secondary,
sp_help_log_shipping_secondary_database, and
sp_help_log_shipping_secondary_primary etc to query the status of your log
shipping.
For more detailed information, you can refer to this article:
How to: Enable Log Shipping (SQL Server Management Studio)
http://msdn2.microsoft.com/en-us/library/ms190640.aspx
Understanding Log Shipping
http://msdn2.microsoft.com/en-us/library/ms187103.aspx
Monitoring Log Shipping
http://msdn2.microsoft.com/en-us/library/ms190224.aspx
Hope this helps. If you have any other questions or concerns, please feel
free to let me know. It is my pleasure to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
=====================================================Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================|||Hi, Chris
Just check with you to see if the suggestions were helpful. Please let us
know if you would like further assistance.
Have a great day!
Charles Wang
Microsoft Online Partner Support
PLEASE NOTE: The partner managed newsgroups are provided
to assist with break/fix issues and simple how to questions.
We also love to hear your product feedback!
Let us know what you think by posting
- from the web interface: Partner Feedback
- from your newsreader:
microsoft.private.directaccess.partnerfeedback.
We look forward to hearing from you!
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================
Enterprise Manager still available with SQL Server 2005. I installed Log
Shipping on a 2005 server and selected the monitor option but I can not find
the nice Log Shipping monitor that give you status on log shipping. I also
searched through the Books Online documentation and several online resources
and I have not found a definitive answer.
Please help.
Thanks!
ChrisHi Chris
"Cgal" wrote:
> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
> Enterprise Manager still available with SQL Server 2005. I installed Log
> Shipping on a 2005 server and selected the monitor option but I can not find
> the nice Log Shipping monitor that give you status on log shipping. I also
> searched through the Books Online documentation and several online resources
> and I have not found a definitive answer.
> Please help.
> Thanks!
> Chris
In SQLServer 2005 there is a standard report called "Transaction Log
Shipping Status" that gives you the current status.
http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4) currently
gives information on how to show the report prior to SP2. You will need to
show the Object Explorer tab (view menu and select Object Explorer detals) to
get the reports button (on the tab's toolbar). The list of reports are
sensitive to the context which you have selected in the object explorer (F8)
so if you don't see this report you are probably not on the node for the
instance.
After SP2 you can right click the node for the instance and select
Reports/Standard Reports/Transaction Log Shipping Status
HTH
john|||John,
Thanks for the quick response.
I knew about the report that you referenced but I was hoping that there was
more. The report has no where near the functionality and usability of the
"Log Shipping Monitor" that came with SQL Server 2000.
Please let me know if there are any other tools for monitoring Log Shipping
beyond the report.
Thanks!
Chris
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:9C6B2961-67CB-4B3A-A822-C73899577EBD@.microsoft.com...
> Hi Chris
> "Cgal" wrote:
>> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
>> Enterprise Manager still available with SQL Server 2005. I installed Log
>> Shipping on a 2005 server and selected the monitor option but I can not
>> find
>> the nice Log Shipping monitor that give you status on log shipping. I
>> also
>> searched through the Books Online documentation and several online
>> resources
>> and I have not found a definitive answer.
>> Please help.
>> Thanks!
>> Chris
> In SQLServer 2005 there is a standard report called "Transaction Log
> Shipping Status" that gives you the current status.
> http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4)
> currently
> gives information on how to show the report prior to SP2. You will need to
> show the Object Explorer tab (view menu and select Object Explorer detals)
> to
> get the reports button (on the tab's toolbar). The list of reports are
> sensitive to the context which you have selected in the object explorer
> (F8)
> so if you don't see this report you are probably not on the node for the
> instance.
> After SP2 you can right click the node for the instance and select
> Reports/Standard Reports/Transaction Log Shipping Status
> HTH
> john|||Hi, Chris,
I guess that you would like to add a monitor server in your log shipping
environment.
If I have misunderstood, please let me know.
In SQL Server 2005, to monitor log shipping configuration, adding the
monitor server is required. If you do not have a monitor server, you may
need to manually run the system procedures such as
sp_help_log_shipping_primary_database,
sp_help_log_shipping_primary_secondary,
sp_help_log_shipping_secondary_database, and
sp_help_log_shipping_secondary_primary etc to query the status of your log
shipping.
For more detailed information, you can refer to this article:
How to: Enable Log Shipping (SQL Server Management Studio)
http://msdn2.microsoft.com/en-us/library/ms190640.aspx
Understanding Log Shipping
http://msdn2.microsoft.com/en-us/library/ms187103.aspx
Monitoring Log Shipping
http://msdn2.microsoft.com/en-us/library/ms190224.aspx
Hope this helps. If you have any other questions or concerns, please feel
free to let me know. It is my pleasure to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
=====================================================Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================|||Hi, Chris
Just check with you to see if the suggestions were helpful. Please let us
know if you would like further assistance.
Have a great day!
Charles Wang
Microsoft Online Partner Support
PLEASE NOTE: The partner managed newsgroups are provided
to assist with break/fix issues and simple how to questions.
We also love to hear your product feedback!
Let us know what you think by posting
- from the web interface: Partner Feedback
- from your newsreader:
microsoft.private.directaccess.partnerfeedback.
We look forward to hearing from you!
======================================================When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
======================================================This posting is provided "AS IS" with no warranties, and confers no rights.
======================================================
Log Shipping Monitor - 2005
Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
Enterprise Manager still available with SQL Server 2005. I installed Log
Shipping on a 2005 server and selected the monitor option but I can not find
the nice Log Shipping monitor that give you status on log shipping. I also
searched through the Books Online documentation and several online resources
and I have not found a definitive answer.
Please help.
Thanks!
Chris
Hi Chris
"Cgal" wrote:
> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
> Enterprise Manager still available with SQL Server 2005. I installed Log
> Shipping on a 2005 server and selected the monitor option but I can not find
> the nice Log Shipping monitor that give you status on log shipping. I also
> searched through the Books Online documentation and several online resources
> and I have not found a definitive answer.
> Please help.
> Thanks!
> Chris
In SQLServer 2005 there is a standard report called "Transaction Log
Shipping Status" that gives you the current status.
http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4) currently
gives information on how to show the report prior to SP2. You will need to
show the Object Explorer tab (view menu and select Object Explorer detals) to
get the reports button (on the tab's toolbar). The list of reports are
sensitive to the context which you have selected in the object explorer (F8)
so if you don't see this report you are probably not on the node for the
instance.
After SP2 you can right click the node for the instance and select
Reports/Standard Reports/Transaction Log Shipping Status
HTH
john
|||John,
Thanks for the quick response.
I knew about the report that you referenced but I was hoping that there was
more. The report has no where near the functionality and usability of the
"Log Shipping Monitor" that came with SQL Server 2000.
Please let me know if there are any other tools for monitoring Log Shipping
beyond the report.
Thanks!
Chris
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:9C6B2961-67CB-4B3A-A822-C73899577EBD@.microsoft.com...
> Hi Chris
> "Cgal" wrote:
>
> In SQLServer 2005 there is a standard report called "Transaction Log
> Shipping Status" that gives you the current status.
> http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4)
> currently
> gives information on how to show the report prior to SP2. You will need to
> show the Object Explorer tab (view menu and select Object Explorer detals)
> to
> get the reports button (on the tab's toolbar). The list of reports are
> sensitive to the context which you have selected in the object explorer
> (F8)
> so if you don't see this report you are probably not on the node for the
> instance.
> After SP2 you can right click the node for the instance and select
> Reports/Standard Reports/Transaction Log Shipping Status
> HTH
> john
|||Hi, Chris,
I guess that you would like to add a monitor server in your log shipping
environment.
If I have misunderstood, please let me know.
In SQL Server 2005, to monitor log shipping configuration, adding the
monitor server is required. If you do not have a monitor server, you may
need to manually run the system procedures such as
sp_help_log_shipping_primary_database,
sp_help_log_shipping_primary_secondary,
sp_help_log_shipping_secondary_database, and
sp_help_log_shipping_secondary_primary etc to query the status of your log
shipping.
For more detailed information, you can refer to this article:
How to: Enable Log Shipping (SQL Server Management Studio)
http://msdn2.microsoft.com/en-us/library/ms190640.aspx
Understanding Log Shipping
http://msdn2.microsoft.com/en-us/library/ms187103.aspx
Monitoring Log Shipping
http://msdn2.microsoft.com/en-us/library/ms190224.aspx
Hope this helps. If you have any other questions or concerns, please feel
free to let me know. It is my pleasure to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
================================================== ===
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
================================================== ====
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
================================================== ====
This posting is provided "AS IS" with no warranties, and confers no rights.
================================================== ====
|||Hi, Chris
Just check with you to see if the suggestions were helpful. Please let us
know if you would like further assistance.
Have a great day!
Charles Wang
Microsoft Online Partner Support
PLEASE NOTE: The partner managed newsgroups are provided
to assist with break/fix issues and simple how to questions.
We also love to hear your product feedback!
Let us know what you think by posting
- from the web interface: Partner Feedback
- from your newsreader:
microsoft.private.directaccess.partnerfeedback.
We look forward to hearing from you!
================================================== ====
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
================================================== ====
This posting is provided "AS IS" with no warranties, and confers no rights.
================================================== ====
Enterprise Manager still available with SQL Server 2005. I installed Log
Shipping on a 2005 server and selected the monitor option but I can not find
the nice Log Shipping monitor that give you status on log shipping. I also
searched through the Books Online documentation and several online resources
and I have not found a definitive answer.
Please help.
Thanks!
Chris
Hi Chris
"Cgal" wrote:
> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
> Enterprise Manager still available with SQL Server 2005. I installed Log
> Shipping on a 2005 server and selected the monitor option but I can not find
> the nice Log Shipping monitor that give you status on log shipping. I also
> searched through the Books Online documentation and several online resources
> and I have not found a definitive answer.
> Please help.
> Thanks!
> Chris
In SQLServer 2005 there is a standard report called "Transaction Log
Shipping Status" that gives you the current status.
http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4) currently
gives information on how to show the report prior to SP2. You will need to
show the Object Explorer tab (view menu and select Object Explorer detals) to
get the reports button (on the tab's toolbar). The list of reports are
sensitive to the context which you have selected in the object explorer (F8)
so if you don't see this report you are probably not on the node for the
instance.
After SP2 you can right click the node for the instance and select
Reports/Standard Reports/Transaction Log Shipping Status
HTH
john
|||John,
Thanks for the quick response.
I knew about the report that you referenced but I was hoping that there was
more. The report has no where near the functionality and usability of the
"Log Shipping Monitor" that came with SQL Server 2000.
Please let me know if there are any other tools for monitoring Log Shipping
beyond the report.
Thanks!
Chris
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:9C6B2961-67CB-4B3A-A822-C73899577EBD@.microsoft.com...
> Hi Chris
> "Cgal" wrote:
>
> In SQLServer 2005 there is a standard report called "Transaction Log
> Shipping Status" that gives you the current status.
> http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4)
> currently
> gives information on how to show the report prior to SP2. You will need to
> show the Object Explorer tab (view menu and select Object Explorer detals)
> to
> get the reports button (on the tab's toolbar). The list of reports are
> sensitive to the context which you have selected in the object explorer
> (F8)
> so if you don't see this report you are probably not on the node for the
> instance.
> After SP2 you can right click the node for the instance and select
> Reports/Standard Reports/Transaction Log Shipping Status
> HTH
> john
|||Hi, Chris,
I guess that you would like to add a monitor server in your log shipping
environment.
If I have misunderstood, please let me know.
In SQL Server 2005, to monitor log shipping configuration, adding the
monitor server is required. If you do not have a monitor server, you may
need to manually run the system procedures such as
sp_help_log_shipping_primary_database,
sp_help_log_shipping_primary_secondary,
sp_help_log_shipping_secondary_database, and
sp_help_log_shipping_secondary_primary etc to query the status of your log
shipping.
For more detailed information, you can refer to this article:
How to: Enable Log Shipping (SQL Server Management Studio)
http://msdn2.microsoft.com/en-us/library/ms190640.aspx
Understanding Log Shipping
http://msdn2.microsoft.com/en-us/library/ms187103.aspx
Monitoring Log Shipping
http://msdn2.microsoft.com/en-us/library/ms190224.aspx
Hope this helps. If you have any other questions or concerns, please feel
free to let me know. It is my pleasure to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
================================================== ===
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
================================================== ====
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
================================================== ====
This posting is provided "AS IS" with no warranties, and confers no rights.
================================================== ====
|||Hi, Chris
Just check with you to see if the suggestions were helpful. Please let us
know if you would like further assistance.
Have a great day!
Charles Wang
Microsoft Online Partner Support
PLEASE NOTE: The partner managed newsgroups are provided
to assist with break/fix issues and simple how to questions.
We also love to hear your product feedback!
Let us know what you think by posting
- from the web interface: Partner Feedback
- from your newsreader:
microsoft.private.directaccess.partnerfeedback.
We look forward to hearing from you!
================================================== ====
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
================================================== ====
This posting is provided "AS IS" with no warranties, and confers no rights.
================================================== ====
Labels:
2000enterprise,
avaialable,
available,
database,
installed,
log,
logshipping,
manager,
microsoft,
monitor,
mysql,
oracle,
server,
shipping,
sql
Log Shipping Monitor - 2005
Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
Enterprise Manager still available with SQL Server 2005. I installed Log
Shipping on a 2005 server and selected the monitor option but I can not find
the nice Log Shipping monitor that give you status on log shipping. I also
searched through the Books Online documentation and several online resources
and I have not found a definitive answer.
Please help.
Thanks!
ChrisHi Chris
"Cgal" wrote:
> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
> Enterprise Manager still available with SQL Server 2005. I installed Log
> Shipping on a 2005 server and selected the monitor option but I can not fi
nd
> the nice Log Shipping monitor that give you status on log shipping. I als
o
> searched through the Books Online documentation and several online resourc
es
> and I have not found a definitive answer.
> Please help.
> Thanks!
> Chris
In SQLServer 2005 there is a standard report called "Transaction Log
Shipping Status" that gives you the current status.
http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4) currently
gives information on how to show the report prior to SP2. You will need to
show the Object Explorer tab (view menu and select Object Explorer detals) t
o
get the reports button (on the tab's toolbar). The list of reports are
sensitive to the context which you have selected in the object explorer (F8)
so if you don't see this report you are probably not on the node for the
instance.
After SP2 you can right click the node for the instance and select
Reports/Standard Reports/Transaction Log Shipping Status
HTH
john|||John,
Thanks for the quick response.
I knew about the report that you referenced but I was hoping that there was
more. The report has no where near the functionality and usability of the
"Log Shipping Monitor" that came with SQL Server 2000.
Please let me know if there are any other tools for monitoring Log Shipping
beyond the report.
Thanks!
Chris
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:9C6B2961-67CB-4B3A-A822-C73899577EBD@.microsoft.com...
> Hi Chris
> "Cgal" wrote:
>
> In SQLServer 2005 there is a standard report called "Transaction Log
> Shipping Status" that gives you the current status.
> http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4)
> currently
> gives information on how to show the report prior to SP2. You will need to
> show the Object Explorer tab (view menu and select Object Explorer detals)
> to
> get the reports button (on the tab's toolbar). The list of reports are
> sensitive to the context which you have selected in the object explorer
> (F8)
> so if you don't see this report you are probably not on the node for the
> instance.
> After SP2 you can right click the node for the instance and select
> Reports/Standard Reports/Transaction Log Shipping Status
> HTH
> john|||Hi, Chris,
I guess that you would like to add a monitor server in your log shipping
environment.
If I have misunderstood, please let me know.
In SQL Server 2005, to monitor log shipping configuration, adding the
monitor server is required. If you do not have a monitor server, you may
need to manually run the system procedures such as
sp_help_log_shipping_primary_database,
sp_help_log_shipping_primary_secondary,
sp_help_log_shipping_secondary_database,
and
sp_help_log_shipping_secondary_primary etc to query the status of your log
shipping.
For more detailed information, you can refer to this article:
How to: Enable Log Shipping (SQL Server Management Studio)
http://msdn2.microsoft.com/en-us/library/ms190640.aspx
Understanding Log Shipping
http://msdn2.microsoft.com/en-us/library/ms187103.aspx
Monitoring Log Shipping
http://msdn2.microsoft.com/en-us/library/ms190224.aspx
Hope this helps. If you have any other questions or concerns, please feel
free to let me know. It is my pleasure to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
=============
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscript...ault.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscript...t/default.aspx.
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============|||Hi, Chris
Just check with you to see if the suggestions were helpful. Please let us
know if you would like further assistance.
Have a great day!
Charles Wang
Microsoft Online Partner Support
PLEASE NOTE: The partner managed newsgroups are provided
to assist with break/fix issues and simple how to questions.
We also love to hear your product feedback!
Let us know what you think by posting
- from the web interface: Partner Feedback
- from your newsreader:
microsoft.private.directaccess.partnerfeedback.
We look forward to hearing from you!
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============
Enterprise Manager still available with SQL Server 2005. I installed Log
Shipping on a 2005 server and selected the monitor option but I can not find
the nice Log Shipping monitor that give you status on log shipping. I also
searched through the Books Online documentation and several online resources
and I have not found a definitive answer.
Please help.
Thanks!
ChrisHi Chris
"Cgal" wrote:
> Is the "Log Shipping Monitor" that was avaialable in SQL Server 2000
> Enterprise Manager still available with SQL Server 2005. I installed Log
> Shipping on a 2005 server and selected the monitor option but I can not fi
nd
> the nice Log Shipping monitor that give you status on log shipping. I als
o
> searched through the Books Online documentation and several online resourc
es
> and I have not found a definitive answer.
> Please help.
> Thanks!
> Chris
In SQLServer 2005 there is a standard report called "Transaction Log
Shipping Status" that gives you the current status.
http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4) currently
gives information on how to show the report prior to SP2. You will need to
show the Object Explorer tab (view menu and select Object Explorer detals) t
o
get the reports button (on the tab's toolbar). The list of reports are
sensitive to the context which you have selected in the object explorer (F8)
so if you don't see this report you are probably not on the node for the
instance.
After SP2 you can right click the node for the instance and select
Reports/Standard Reports/Transaction Log Shipping Status
HTH
john|||John,
Thanks for the quick response.
I knew about the report that you referenced but I was hoping that there was
more. The report has no where near the functionality and usability of the
"Log Shipping Monitor" that came with SQL Server 2000.
Please let me know if there are any other tools for monitoring Log Shipping
beyond the report.
Thanks!
Chris
"John Bell" <jbellnewsposts@.hotmail.com> wrote in message
news:9C6B2961-67CB-4B3A-A822-C73899577EBD@.microsoft.com...
> Hi Chris
> "Cgal" wrote:
>
> In SQLServer 2005 there is a standard report called "Transaction Log
> Shipping Status" that gives you the current status.
> http://msdn2.microsoft.com/en-us/library/ms181149.aspx (steps 1-4)
> currently
> gives information on how to show the report prior to SP2. You will need to
> show the Object Explorer tab (view menu and select Object Explorer detals)
> to
> get the reports button (on the tab's toolbar). The list of reports are
> sensitive to the context which you have selected in the object explorer
> (F8)
> so if you don't see this report you are probably not on the node for the
> instance.
> After SP2 you can right click the node for the instance and select
> Reports/Standard Reports/Transaction Log Shipping Status
> HTH
> john|||Hi, Chris,
I guess that you would like to add a monitor server in your log shipping
environment.
If I have misunderstood, please let me know.
In SQL Server 2005, to monitor log shipping configuration, adding the
monitor server is required. If you do not have a monitor server, you may
need to manually run the system procedures such as
sp_help_log_shipping_primary_database,
sp_help_log_shipping_primary_secondary,
sp_help_log_shipping_secondary_database,
and
sp_help_log_shipping_secondary_primary etc to query the status of your log
shipping.
For more detailed information, you can refer to this article:
How to: Enable Log Shipping (SQL Server Management Studio)
http://msdn2.microsoft.com/en-us/library/ms190640.aspx
Understanding Log Shipping
http://msdn2.microsoft.com/en-us/library/ms187103.aspx
Monitoring Log Shipping
http://msdn2.microsoft.com/en-us/library/ms190224.aspx
Hope this helps. If you have any other questions or concerns, please feel
free to let me know. It is my pleasure to be of assistance.
Best regards,
Charles Wang
Microsoft Online Community Support
========================================
=============
Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscript...ault.aspx#notif
ications
If you are using Outlook Express, please make sure you clear the check box
"Tools/Options/Read: Get 300 headers at a time" to see your reply promptly.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscript...t/default.aspx.
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============|||Hi, Chris
Just check with you to see if the suggestions were helpful. Please let us
know if you would like further assistance.
Have a great day!
Charles Wang
Microsoft Online Partner Support
PLEASE NOTE: The partner managed newsgroups are provided
to assist with break/fix issues and simple how to questions.
We also love to hear your product feedback!
Let us know what you think by posting
- from the web interface: Partner Feedback
- from your newsreader:
microsoft.private.directaccess.partnerfeedback.
We look forward to hearing from you!
========================================
==============
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from this issue.
========================================
==============
This posting is provided "AS IS" with no warranties, and confers no rights.
========================================
==============
Labels:
2000enterprise,
avaialable,
available,
database,
installed,
log,
logshipping,
manager,
microsoft,
monitor,
mysql,
oracle,
server,
shipping,
sql
Subscribe to:
Comments (Atom)