Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
GrahamRobbo
Active Contributor
Another day another flood of articles, blogs, PR pieces and opinions about Blockchain.

I am no blockchain expert - but I do have a bit of an idea what it is all about and why people are so excited about it. Having said that blockchain is clearly still in the realms of a solution looking for a problem - if you exclude crypto-currency as the problem.

My BS detector goes off big time when this "peer-to-peer network" of "independently controlled nodes" where "every participant is equal to all others" and "there is no central authority" is being flogged by the very same central authorities it was designed to bypass.

However one attribute of blockchain is very interesting. Immutability.

Immutability means that once a block is created and inserted into the blockchain it cannot be modified without the consensus of the blockchain participants.

This is a very useful characteristic. Take, for example, a bank account as shown in this sample statement. (Source)



Business
Cheque Statement





































Customer Number Account
Summary
Opening Balance $6,713.87
Total credits + $1,510.28
Total debits - $5,070.38
Account enquiries ( 132 032
Call MyBank Telephone Banking Closing Balance + $3,153.77











Details of
your account
For the period
from

31 Jul 1997 to
31 Aug 1997









































































































































































Date Description of transaction Debit Credit Balance
1997 STATEMENT OPENING BALANCE 6,713.87
1-Aug DEPOSIT CAPALABA OLD 235.15 6,949.02
1-Aug STATE GOVT TAX ON WITHDRAWALS 38.90 6,910.12
1-Aug WITHDRAWAL/CHEQUE 301095 45.00 6,865.12
1-Aug WITHDRAWAL/CHEQUE 301096 883.30 5,981.82
5-Aug WITHDRAWAL/CHEQUE 301086 36.00 5,945.82
7-Aug WITHDRAWAL/CHEQUE 301099 855.10 5,090.72
8-Aug WITHDRAWAL/CHEQUE 301100 566.60 4,524.12
10-Aug WITHDRAWAL/CHEQUE 301097 141.80 4,382.32
12-Aug WITHDRAWAL/CHEQUE 301098 253.80 4,128.52
13-Aug DEPOSIT CAPALABA QLD 656.20 4,784.72
15-Aug WITHDRAWAL/CHEQUE 300903 362.50 4,422.22
18-Aug WITHDRAWAL/CHEQUE 300902 90.40 4,331.82
18-Aug WITHDRAWAL/CHEQUE 301050 10.00 4,321.82
18-Aug WITHDRAWAL/CHEQUE 300906 883.30 3,438.52
20-Aug DEPOSIT CAPALABA QLD 9.68 3,448.20
21-Aug DEPOSIT CAPALABA QLD 369.25 3,817.45
22-Aug WITHDRAWAL/CHEQUE 300905 266.98 3,550.47
24-Aug DEPOSIT CAPALABA QLD 240.00 3,790.47
25-Aug WITHDRAWAL/CHEQUE 300910 38.30 3,752.17
29-Aug WITHDRAWAL/CHEQUE 300911 598.40 3,153.77
31-Aug CLOSING BALANCE 3,153.77














Proceeds of cheques will not be available until cleared. Please check all entries
promptly and notify the bank immediately of any errors.
Statement No. 133                    Page 1 of 1
MyBank Banking Corporation
ABN 007 457 141


 

Immutability means we can't go back and modify a transaction, nor can we insert a new transaction into the sequence of transactions.

Double entry book keeping principles mean that for each transaction posted to this account there has to be at least one other countering transaction to balance it. For example each "DEPOSIT" appears in this account as a Credit - so there would be a corresponding Debit transaction in another account called something like "Money Bank Owes Customers". And for each "WITHDRAWAL" that appears here as a Debit there will be a corresponding Credit - possibly also to the "Money Bank Owes Customers" account.

A single business transaction means there are at least two transactions created and posted to two different accounts which must never be changed. Reversals and adjustments require reversal and adjustment transactions - not changing the original transactions. This provides a clear and verifiable audit trail of everything.

Before computers came along white collar crime could take the form of a creative accountant with some liquid paper and an array of coloured pens. These days financial systems have strict controls around data security but technically you could bypass these controls - if you knew how - and adjust the data to present "alternative facts".

So immutability is important.

Guess what other technology provides immutability? SAP HANA.

That's right the column store in SAP HANA is "insert-only". You cannot modify any data once it is inserted. You have to insert new data that supersedes the old data. Essentially each record as a "start-of-life" and "end-of-life" timestamp that defines it's relevance. Similarly you can't delete data either.

Of course this characteristic is hidden from everyone by Structured Query Language (SQL) - the lingua franca of the database management system. When a developer says ...
UPDATE Customers
SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'
WHERE CustomerID = 1;

... HANA inserts new records for Alfred Schmidt and Frankfurt and starts their lives while ending the lives of their predecessors.

But those predecessors are still in the HANA database and to my mind could be used to fully reconstruct an audit trail of the customer records for CustomerID 1 at any time. As it stands good old SQL abstracts this "expired" data from the database consumer - but I don't see why it couldn't be used to provide an immutable audit trail of all changes to a record or a complete dataset.

It could even be represented as a linked chain of blocks showing each update to the dataset. Sort of a block chain. 😉 #seewhatIdidthere

You could even time travel back and forth through your dataset. Fascinating!



 
9 Comments
Labels in this area