Viewing 15 posts - 1 through 15 (of 81 total)
Thank you very much for your feedback. Let me work on implementing your suggestions
February 13, 2024 at 8:45 pm
SELECT TOP(50) [c].[Barcode], [c].[BottomDepth], [c].[BoxCount], [c].[BoxNumber],
[c].[CertifiedDate], [c].[CheckedDate], [c].[Comment], [c].[Condition], [c].[ContainerName],
[c].[ContainerOwnerId], [c].[Core], [c].[CoreShift], [c].[CreatedBy], [c].[CreatedDate],
[c].[DepthMaxText], [c].[DepthMinText], [c].[FormationId], [c].[ImmediateContainer],
[c].[InUse], [c].[Interval], [c].[LogDepth], [c].[ModifiedBy], [c].[ModifiedDate], [c].[Movement],
[c].[NextCertificationDate], [c].[Notes], [c].[Permeablity], [c].[Porosity], [c].[PossiblePlugs],
[c].[Quality], [c].[RecordItemStatusId], [c].[SampleCount], [c].[SampleNumber], [c].[SerialNumber],
[c].[SetCount],...
February 13, 2024 at 4:39 pm
SELECT TOP(50) [c].[Barcode], [c].[BottomDepth], [c].[BoxCount], [c].[BoxNumber],
[c].[CertifiedDate], [c].[CheckedDate], [c].[Comment], [c].[Condition], [c].[ContainerName],
[c].[ContainerOwnerId], [c].[Core], [c].[CoreShift], [c].[CreatedBy], [c].[CreatedDate],
[c].[DepthMaxText], [c].[DepthMinText], [c].[FormationId], [c].[ImmediateContainer],
[c].[InUse], [c].[Interval], [c].[LogDepth], [c].[ModifiedBy], [c].[ModifiedDate], [c].[Movement],
[c].[NextCertificationDate], [c].[Notes], [c].[Permeablity], [c].[Porosity], [c].[PossiblePlugs],
[c].[Quality], [c].[RecordItemStatusId], [c].[SampleCount], [c].[SampleNumber], [c].[SerialNumber],
[c].[SetCount],...
February 13, 2024 at 4:39 pm
Thank you very much for taking time to look into my question. I will look into the link you provided.
November 13, 2021 at 8:41 pm
Thank you. That did not work either.
I went for a different approach. Started using change tracking instead of checksum.
THanks
March 14, 2019 at 6:31 pm
I completely agree with you. My business scenario demands it. The destination gets updated/inserted every night to keep historical data. I have to update the destination if the checksum values...
March 14, 2019 at 9:28 am
Yeah. That column with 4000 bytes is the issue. If I take that out, the checksum value matches between the instances. I even tried the following, but still no luck.
March 13, 2019 at 1:27 pm
Thanks for the response.
Please find the query. I copied and pasted the same query in both the instances.
SELECT
CONVERT(VARBINARY(32),HASHBYTES('SHA2_256',CONCAT([AGENCY_NUM],LTRIM(RTRIM([CARRIER_CODE])),[TS_D1],[EXT_FLAG],[FM_USERID],[TS_D2],[TOTAL_NUM_TXNS],[NUM_TXN],LTRIM(RTRIM([TXNS]))
))) AS...
March 13, 2019 at 1:05 pm
Thank you Tom. Let me try that.
February 2, 2019 at 8:34 am
I am trying to connect to an old SQL Server 6.5 server. SSMS wouldn't help me. Could you please have me connect to your FTP site so that I can...
January 31, 2019 at 11:36 am
Thank you so much Handy D.
I will post more updates as I make progress on this project.
Thanks
January 22, 2019 at 12:58 pm
Here is a link that helps you how to implement it.
October 12, 2018 at 9:39 am
Thank you so much Srikanth for giving me the right direction...! I learnt something new today.
Thank you SQL Server central for providing the platform...!
October 10, 2018 at 10:15 am
I have solved the issue. Here is a good article that helped me.
October 10, 2018 at 10:09 am
Yes. It is version store.
Unfortunately, I am just exposed to VersionStore in tempdb.
The following query helped me.
select getdate() AS runtime, SUM (user_object_reserved_page_count)*8 as usr_obj_kb,
October 10, 2018 at 9:58 am
Viewing 15 posts - 1 through 15 (of 81 total)