Viewing 15 posts - 16 through 30 (of 38 total)
UPDATE on SSISDB issue:
This was the error I'm getting:
TITLE: SQL Server Integration Services
------------------------------
The required components for the 64-bit edition of Integration Services cannot be found. Run SQL Server Setup to...
July 9, 2020 at 1:12 am
UPDATE:
With VS 2017 SSDT, uninstalling SSDT and reinstalling it (latest version standalone) adds SQL 2019.
SQL Server 2019 is supported starting from SSDT version 15.8.1. Doing an SSDT update...
July 8, 2020 at 4:08 pm
UPDATE:
July 8, 2020 at 4:07 am
We did the cut-over yesterday and so far so good. Currently monitoring.
https://www.sqlservercentral.com/blogs/rename-or-change-sql-server-standalone-default-instance
After renaming the HOST and the SQL SERVER with default instance (used link above), I found that:
June 18, 2020 at 2:43 pm
Thanks for the input and info on SP as well.
As it is right now, I took a SNAPSHOT of the 2019 server. Then I started migrating the 2014 - 2...
June 12, 2020 at 2:22 pm
Yes, it would have made my life easier if there will no renaming. I wish that was a case. 🙁
Unfortunately, the SQL Server is referenced by applications running on an...
June 11, 2020 at 7:40 pm
OK So I watched 2 youtube videos and below helped me setup what I need.
https://www.youtube.com/watch?v=pmTK5Um_9bw
In a nutshell, I did not follow my proposed steps 1&2. As with the...
April 30, 2020 at 2:32 am
SVR_A - Distributor/Publisher
SVR_B - Subscriber + SSRS
Yes I plan to do a lot of testing prior to.
March 2, 2020 at 8:18 pm
I added the last 2 lines on my STEP 3 below.
[3] ON SVR_A - DROP PUBLICATION
USE Published_DB;
EXEC sp_droppublication @publication = N'Published_DB_Publication';
USE master;
EXEC sp_replicationdboption @dbname = 'Published_DB', @optname...
February 28, 2020 at 3:34 pm
It was a learning experience but over all, my project to rebuild our transactional replication from backup due to a system upgrade went very well. Other than the sp_dropsubscription part,...
February 27, 2020 at 5:01 pm
PUSH (transactional), Distributor + Publisher = same server.
On the second subscription, I added last line below. Don't know if it would have a big impact though.
USE Published_DB;EXEC...
February 26, 2020 at 2:31 pm
I just used sp_who2 and watched as it progressed. I didn't see any other SPID blocking the SPID I'm running. I did see 1 or 2 other SPIDS being blocked...
February 26, 2020 at 2:06 pm
So I decided to just wait until it finished. Took over 2.6 hours to drop 2 subscriptions. I simulated this on test environment with less powerful machines and it took...
February 26, 2020 at 1:50 pm
get rid of the sql agent jobs
Yes, the scripts removes all SQL agent replication jobs. I found out that you can remove the replication with the SQL AGENT SERVICE...
February 24, 2020 at 5:40 pm
How is non-static data handled if you initialize via Snapshot?
For example, TABLE_A (10 records) gets a snapshot and is now on the snapshot folder. TABLE_A gets updated, now has 12 records....
February 19, 2020 at 7:36 pm
Viewing 15 posts - 16 through 30 (of 38 total)