Group
Extension

ETL-Yertl/lib/ETL/Yertl/Help/Cookbook.pod

# PODNAME: ETL::Yertl::Help::Cookbook
# ABSTRACT: Some recipies for common ETL tasks

__END__

=pod

=head1 NAME

ETL::Yertl::Help::Cookbook - Some recipies for common ETL tasks

=head1 VERSION

version 0.044

=head1 DESCRIPTION

This document describes how to do some common ETL tasks

=head1 EMBEDDED DOCUMENTS

When you've got serialized JSON in a database field, you can use C<jq> to deserialize
it:

    ysql TESTDB 'SELECT json_field FROM table'              # Query the database
        | yto json                                          # Convert to JSON for jq
        | js '.json_field | fromjson'                       # Inflate the JSON
        | yfrom json                                        # Convert back to Yertl

=head1 AUTHOR

Doug Bell <preaction@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2018 by Doug Bell.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.