Search notes:

SQL Server: Virtual System Columns %%ROWDUMP%%

create table tq84_tab (
   id     uniqueidentifier,
   val_1  numeric,
   val_2  varchar(20)
);
insert into tq84_tab (val_1, val_2) values (42, 'forty-two'  );
insert into tq84_tab (val_1, val_2) values (99, 'ninety-nine');
select
   tab.id,
   tab.val_1,
   tab.val_2,
   tab.%%rowDump%%,
   crk.*
from
  tq84_tab                               tab cross apply
  sys.fn_rowDumpCracker(tab.%%rowDump%%) crk
drop table tq84_tab;

See also

Other virtual system columns.

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759414190, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/SQL-Server/objects/table/column/virtual-system/rowDump/index(57): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78