<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.alf.digital/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.alf.digital/feed.php">
        <title>Tohuwabohu excorcism - database</title>
        <description></description>
        <link>https://wiki.alf.digital/</link>
        <image rdf:resource="https://wiki.alf.digital/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-04-24T01:54:01+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.alf.digital/doku.php?id=database:liquibase&amp;rev=1698822790&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.alf.digital/doku.php?id=database:mysql&amp;rev=1698923041&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.alf.digital/doku.php?id=database:nosql&amp;rev=1698822790&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.alf.digital/doku.php?id=database:oracle&amp;rev=1698822790&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.alf.digital/doku.php?id=database:postgres&amp;rev=1698822790&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.alf.digital/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>Tohuwabohu excorcism</title>
        <link>https://wiki.alf.digital/</link>
        <url>https://wiki.alf.digital/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://wiki.alf.digital/doku.php?id=database:liquibase&amp;rev=1698822790&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-11-01T07:13:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>liquibase</title>
        <link>https://wiki.alf.digital/doku.php?id=database:liquibase&amp;rev=1698822790&amp;do=diff</link>
        <description>Liquibase

Tool to track B changes

TO clean up the checksum after the change do


update databasechangelog set md5sum = null where filename = &#039;2014_10_27.xml&#039;;


how it works

Liquibase stores all metadata in 2 tables:


CREATE TABLE PUBLIC.DATABASECHANGELOGLOCK ...
CREATE TABLE PUBLIC.DATABASECHANGELOG ...</description>
    </item>
    <item rdf:about="https://wiki.alf.digital/doku.php?id=database:mysql&amp;rev=1698923041&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-11-02T11:04:01+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>mysql</title>
        <link>https://wiki.alf.digital/doku.php?id=database:mysql&amp;rev=1698923041&amp;do=diff</link>
        <description>Mysql basic commands

Fallpits

	*  Quotes “  don&#039;t use it, it is disabled in some databases&#039;  wrap Strings`  wrap table names or columns
	*  

Details

The Details about MySQL are [ here].

Sample Database

The tool, which generated the picture is called</description>
    </item>
    <item rdf:about="https://wiki.alf.digital/doku.php?id=database:nosql&amp;rev=1698822790&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-11-01T07:13:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>nosql</title>
        <link>https://wiki.alf.digital/doku.php?id=database:nosql&amp;rev=1698822790&amp;do=diff</link>
        <description>NOSQL

NOT ONLY SQL

Adds scalability, distribution to the databases. 

Makes DB Document-oriented. Allowing storage of data as “documents” with different structure in the same DB. E.g. following docs may be stored in the same DB:
Details: &lt;http://en.wikipedia.org/wiki/Document-oriented_database&gt;


  {
    FirstName: &quot;Jonathan&quot;,
    Address: &quot;15 Wanamassa Point Road&quot;,
    Children: [
         {Name: &quot;Michael&quot;, Age: 10},
         {Name: &quot;Jennifer&quot;, Age: 8},
         {Name: &quot;Samantha&quot;, Age: 5},
  …</description>
    </item>
    <item rdf:about="https://wiki.alf.digital/doku.php?id=database:oracle&amp;rev=1698822790&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-11-01T07:13:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>oracle</title>
        <link>https://wiki.alf.digital/doku.php?id=database:oracle&amp;rev=1698822790&amp;do=diff</link>
        <description>Oracle

Installation

The Installation for Windows is described  here in detail.

Syntax

The syntax is listed here

Commands

Requirenments:

	*  The environment variable should point to a tnsnames.ora: 
TNS_ADMIN = \\folder\of\tnsnamesora\location 


Ping the DB</description>
    </item>
    <item rdf:about="https://wiki.alf.digital/doku.php?id=database:postgres&amp;rev=1698822790&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-11-01T07:13:10+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>postgres</title>
        <link>https://wiki.alf.digital/doku.php?id=database:postgres&amp;rev=1698822790&amp;do=diff</link>
        <description>Postgres

Docker

The container in the hub: &lt;https://hub.docker.com/_/postgres/&gt;

To query the postgres container connect to it using psql


docker exec -it postgres psql -h postgres -U postgres


Enter the password.

To list all databases enter do


postgres-#  \l</description>
    </item>
</rdf:RDF>
