Showing posts with label steps. Show all posts
Showing posts with label steps. Show all posts

Wednesday, March 21, 2012

Reinstall SQL Server 2005

Hi all,

I want to remove SQL Server 2005 sp2, so I need to reinstall SQL Server 2005. What steps I need to take before remove the SQL Server 2005. Because I don't want to loss any data on the Database Server, Analysis Servers, and Reporting Server.

Thanks,

Why do you want to uninstall SP2? It might be easier to solve the issue you are having with SP2 than completely reinstalling SQL Server 2005.

WesleyB

Visit my SQL Server weblog @. http://dis4ea.blogspot.com

|||

Hi WesleyB

My problem is the inscope funtion in Reporting Service, and it is the know issue in SP2. And I don't like there workaround solution, so I need to roll back to SP1.

Thanks,

|||

You can uninstall service pack 2 after which you best install the previous fixes that were applied.

Take a backup of your databases before you try this however.

WesleyB

Visit my SQL Server weblog @. http://dis4ea.blogspot.com

Reinstall SQL Server 2005

Hi all,

I want to remove SQL Server 2005 sp2, so I need to reinstall SQL Server 2005. What steps I need to take before remove the SQL Server 2005. Because I don't want to loss any data on the Database Server, Analysis Servers, and Reporting Server.

Thanks,

Why do you want to uninstall SP2? It might be easier to solve the issue you are having with SP2 than completely reinstalling SQL Server 2005.

WesleyB

Visit my SQL Server weblog @. http://dis4ea.blogspot.com

|||

Hi WesleyB

My problem is the inscope funtion in Reporting Service, and it is the know issue in SP2. And I don't like there workaround solution, so I need to roll back to SP1.

Thanks,

|||

You can uninstall service pack 2 after which you best install the previous fixes that were applied.

Take a backup of your databases before you try this however.

WesleyB

Visit my SQL Server weblog @. http://dis4ea.blogspot.com

Tuesday, March 20, 2012

reinitialization of subscriptions

If I have a subscription to a publication (transactional)
and the Distribution Agent tells me I need to
reinitialize.
What are the steps to do this?
Do I need to delete all the data on the subscriber? If
so, is there a way around this? If not, what is the best
practice of accomplishing this?
What if there are changes made at the subscriber do I
loose them if the subscription is reinitializatized?
Thanks...
Jimmy,
reinitialize means apply a new snapshot, so, you'll need to run the snapshot
agent first then run the distribution agent. When you say will it delete all
the data on the subscriber, I'm not sure why this is a concern. For
transactional replication, the subscriber data is treated as RO data. If
however someone has edited the data, then you could use binary checksums to
see what has changed and then do the same changes on the publisher. If the
subscriber is using updatable transactional replication then the changes are
already on the publisher. If you're using a queue, then be sure to run the
queue reader to send up the changes.
HTH,
Paul Ibison
|||expand your publishing database, right click on your publication, select
properties, click on your subscriber tab, highlight your subscriber, and
click the reinitialize button.
It will delete all the data of the replication objects and their schemas and
then replace them.
"Jimmy" <anonymous@.discussions.microsoft.com> wrote in message
news:9dc801c43447$43f3a5a0$a601280a@.phx.gbl...
> If I have a subscription to a publication (transactional)
> and the Distribution Agent tells me I need to
> reinitialize.
> What are the steps to do this?
> Do I need to delete all the data on the subscriber? If
> so, is there a way around this? If not, what is the best
> practice of accomplishing this?
> What if there are changes made at the subscriber do I
> loose them if the subscription is reinitializatized?
> Thanks...
|||Paul,
You said...
then you could use binary checksums to see what has
changed and then do the same changes on the publisher
How?
Larry...

>--Original Message--
>Jimmy,
>reinitialize means apply a new snapshot, so, you'll need
to run the snapshot
>agent first then run the distribution agent. When you
say will it delete all
>the data on the subscriber, I'm not sure why this is a
concern. For
>transactional replication, the subscriber data is
treated as RO data. If
>however someone has edited the data, then you could use
binary checksums to
>see what has changed and then do the same changes on the
publisher. If the
>subscriber is using updatable transactional replication
then the changes are
>already on the publisher. If you're using a queue, then
be sure to run the
>queue reader to send up the changes.
>HTH,
>Paul Ibison
>
>.
>
|||Larry,
there's a good explanation of BINARY_CHECKSUM in books online (BOL). If you
have any problems with the explanation, please post back.
Regards,
Paul Ibison