Viewing 15 posts - 31 through 45 (of 298 total)
I can't answer this directly because I haven't used SQL Server 2022 however a question which might help other people answer:
You've said that both databases are getting the same data....
February 10, 2023 at 6:31 pm
I haven't worked with WSFC/AG for a while and I don't have access to a test system but, if I remember correctly, the WSFC cluster provides a reason why it's...
June 4, 2022 at 3:10 pm
All,
Thank you for all your advice it is very useful. I have attached the execution plans as txt files
April 7, 2021 at 9:42 am
In addition to the advice above. One thing that might be worth checking, if you haven't done already, is pinging the DNS name and see whether it returns the IP...
April 6, 2021 at 11:00 am
Apologises I was thinking that the rows you need to check might all be new or have been updated. As you said it won't pick up existing, unchanged, rows.
March 9, 2021 at 12:27 pm
Taking a significantly different angle on this and apologises if it's too far outside of the scope of your question but could you use Change Data Capture to identify changed...
March 8, 2021 at 4:54 pm
Sorry for my mistake. I am having another look at your question and I noticed something:
You said that you need to keep the items marked yellow in your attachment. On...
March 5, 2021 at 7:22 pm
I think the following might give you the data rows you need?:
declare @sampledata1 table
(
[Date] date ,TC1 varchar(100),Amount_New decimal(10,2)
)
INSERT INTO @sampledata1
([Date]
,[TC1]
,[Amount_New])
VALUES ('2020-11-01','Houses:N-Home',70),
('2020-11-01','Houses:N-KL',80),
('2020-11-01','Default Category: Default Option',90),
('2020-11-01','Houses:NS-Home',22.5),
('2020-11-01','Houses:N-KL',45),
('2020-11-01','Houses:N-GR',22.5),
('2020-12-01','Houses:N-Home',100),
('2020-12-01','Default Category: Default Option',250),
('2020-12-01','Houses:N-Kl',110),
('2020-12-01','Houses:N-Home',24),
('2020-12-01','Houses:N-KL',12),
('2020-12-01','Houses:N-GR',60),
('2020-10-01','Houses:N-BR',24),
('2020-10-01','Houses:N-KL',12),
('2020-10-01','Houses:N-GR',60),
('2020-10-01','Houses:N-BR',24),
('2020-10-01','Default...
March 1, 2021 at 4:16 pm
People tend to be wary of opening attachments, especially from new users. Can you put the expected result into a post?
It might also help if you can provide test data...
February 9, 2021 at 9:27 pm
@AlphaTangoWhisley - No problem
All:
The 'failed to lock' runtime error on the file operation was my error. I had the expression for the filenames specified in the source and destination properties...
February 9, 2021 at 11:32 am
All,
Thanks for your help. I think I solved the issue by repairing Visual Studio. I thought it was my error rather than an issue with the software but perhaps not.
Since...
February 8, 2021 at 1:30 pm
AlphaTangoWhiskey:
Thanks for your help. I don't think the account being used for any proxy or the SQL Server agent will be used when I'm running the package from Visual Studio?...
February 6, 2021 at 5:18 pm
All,
Thank you for your help. The file is on the SSIS server.
As it looks like I need to rebuild the package I will try that. I won't get time for...
February 5, 2021 at 2:32 pm
Can you advise which system is generating your alerts? Also is it installed on the same part of the network as the SQL servers?
Do the alerts happen at the same...
February 5, 2021 at 2:25 pm
I think the information here https://docs.microsoft.com/en-us/windows-server/storage/storage-spaces/understand-quorum#dynamic-quorum-behavior (scroll down to 'two nodes without a witness) will help with your question?
I know that when I ran a cluster on Windows...
January 12, 2021 at 6:09 pm
Viewing 15 posts - 31 through 45 (of 298 total)