For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
I think it would be nice to be able to create a external that points to a .csv that I can then query like a regular table.
Each csv columns will represent a table column.
Solaris 11.4 has resumable send stream enabled by default. If you pass '-s nocheck' to the 11.4 'zfs send' then it will remove the feature flag and metadata for resumable send and 11.3 should be able to see it.
From the zfs(8) man page on 11.4:
$ zfs send SomePool1/SomeThing@123 | zstreamdump -v | grep 'features ='
features = a4
Note that a4 is the flags that were in the send stream:
$ zfs send -s nocheck SomePool1/SomeThing@123 | zstreamdump -v | grep 'features ='
features = 24
--
Darren J Moffat
Senior Software Architect - Oracle Solaris Engineering
That was it.
Thanks