Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

To downgrade the human mind is bad theology. -- C. K. Chesterton


computers / comp.os.vms / Migrating from Rdb to Open Source Postgres

SubjectAuthor
* Migrating from Rdb to Open Source PostgresDenys Beauchemin
+* Re: Migrating from Rdb to Open Source PostgresSimon Clubley
|`* Re: Migrating from Rdb to Open Source PostgresJan-Erik Söderholm
| +* Re: Migrating from Rdb to Open Source PostgresArne Vajhøj
| |`- Re: Migrating from Rdb to Open Source PostgresJan-Erik Söderholm
| `* Re: Migrating from Rdb to Open Source PostgresSimon Clubley
|  `* Re: Migrating from Rdb to Open Source PostgresJan-Erik Söderholm
|   `* Re: Migrating from Rdb to Open Source PostgresPaul Gavin
|    `- Re: Migrating from Rdb to Open Source PostgresRobert A. Brooks
`* Re: Migrating from Rdb to Open Source PostgresArne Vajhøj
 `* Re: Migrating from Rdb to Open Source PostgresJan-Erik Söderholm
  `- Re: Migrating from Rdb to Open Source PostgresArne Vajhøj

1
Migrating from Rdb to Open Source Postgres

<64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26945&group=comp.os.vms#26945

  copy link   Newsgroups: comp.os.vms
X-Received: by 2002:ae9:ea07:0:b0:71f:b8ba:ff4a with SMTP id f7-20020ae9ea07000000b0071fb8baff4amr2183670qkg.8.1677267881670;
Fri, 24 Feb 2023 11:44:41 -0800 (PST)
X-Received: by 2002:a05:622a:4105:b0:3b7:fda4:b504 with SMTP id
cc5-20020a05622a410500b003b7fda4b504mr3307221qtb.13.1677267881508; Fri, 24
Feb 2023 11:44:41 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.os.vms
Date: Fri, 24 Feb 2023 11:44:41 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=2600:1702:50e8:5400:6132:36b6:4209:8fe8;
posting-account=QLFEMQoAAACEjokt5fr8mGlSOEtt02Sy
NNTP-Posting-Host: 2600:1702:50e8:5400:6132:36b6:4209:8fe8
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
Subject: Migrating from Rdb to Open Source Postgres
From: denys...@gmail.com (Denys Beauchemin)
Injection-Date: Fri, 24 Feb 2023 19:44:41 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Denys Beauchemin - Fri, 24 Feb 2023 19:44 UTC

Over the last several years, Postgres has acquired a solid reputation as a dependable, mission-critical RDBMS. One of its benefit is that it’s Open Source, ie, license free. You can install it on as many servers as you want, with any number of CPUs, for any number of users, no charge.

A few years back, VSI released the Postgres client on VMS, and we at Sector7 worked with them to expand a few limitations for handling large schemas. We used our automated tool to transform the SQLMODs into equivalent procedures that access Postgres instead of Rdb. The argument list for the procedures was the exact same as the SQLMODs, so the application programs did not need any modification. Just link the executables with Postgres library and the converted procedures and run the program as before.

The Postgres server runs on Linux, and the application access the Postgres database over the network. We used this technology to migrate IKEA’s store application that runs on OpenVMS on a server at every store around the world, to access a new Postgres server in every store. The application remained on OpenVMS and the Rdb service could be stopped, returning a bunch of cycles back to the application.

This was all using Open Source Postgres and the Open Source client, supported by VSI, on OpenVMS. The application got a performance improvement, and in certain cases, a sizable improvement and best of all, now that the application data is in Postgres, it can be accessed by a multitude of tools and apps on various platforms. The application running on OpenVMS is no longer an island in the enterprise.

Re: Migrating from Rdb to Open Source Postgres

<ttb990$2ad30$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26946&group=comp.os.vms#26946

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: club...@remove_me.eisner.decus.org-Earth.UFP (Simon Clubley)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Fri, 24 Feb 2023 21:13:04 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 20
Message-ID: <ttb990$2ad30$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
Injection-Date: Fri, 24 Feb 2023 21:13:04 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="b43a3a21a3d38778946ba7aa9ac4fbb1";
logging-data="2438240"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18SHxTGX1grzLUPisizeHFa2L2V5ouHzOs="
User-Agent: slrn/0.9.8.1 (VMS/Multinet)
Cancel-Lock: sha1:B9LNZP0sDsPe4iqP3dLgOxcsvq4=
 by: Simon Clubley - Fri, 24 Feb 2023 21:13 UTC

On 2023-02-24, Denys Beauchemin <denysftr@gmail.com> wrote:
> Over the last several years, Postgres has acquired a solid reputation as a
> dependable, mission-critical RDBMS. One of its benefit is that it?s Open
> Source, ie, license free. You can install it on as many servers as you want,
> with any number of CPUs, for any number of users, no charge.
>

Well, that's a load of bollocks.

Open Source software is not the same thing as licence-free software
and the vast majority of it _is_ released under a licence.

I hope you have more respect for Open Source software elsewhere than
that if you use any of it in your own software.

Simon.

--
Simon Clubley, clubley@remove_me.eisner.decus.org-Earth.UFP
Walking destinations on a map are further away than they appear.

Re: Migrating from Rdb to Open Source Postgres

<ttbdvr$2aqkj$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26947&group=comp.os.vms#26947

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: jan-erik...@telia.com (Jan-Erik Söderholm)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Fri, 24 Feb 2023 23:33:30 +0100
Organization: A noiseless patient Spider
Lines: 28
Message-ID: <ttbdvr$2aqkj$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttb990$2ad30$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 24 Feb 2023 22:33:31 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="bef6f74a3deb2ed195b43c6caf3419cd";
logging-data="2452115"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18RfeNLKjVzkgkSvoqp8HSV"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.7.0
Cancel-Lock: sha1:oaqmBXj+2YxPs59qGU1IbXxw0Xg=
In-Reply-To: <ttb990$2ad30$1@dont-email.me>
Content-Language: sv
 by: Jan-Erik Söderholm - Fri, 24 Feb 2023 22:33 UTC

Den 2023-02-24 kl. 22:13, skrev Simon Clubley:
> On 2023-02-24, Denys Beauchemin <denysftr@gmail.com> wrote:
>> Over the last several years, Postgres has acquired a solid reputation as a
>> dependable, mission-critical RDBMS. One of its benefit is that it?s Open
>> Source, ie, license free. You can install it on as many servers as you want,
>> with any number of CPUs, for any number of users, no charge.
>>
>
> Well, that's a load of bollocks.
>
> Open Source software is not the same thing as licence-free software
> and the vast majority of it _is_ released under a licence.
>
> I hope you have more respect for Open Source software elsewhere than
> that if you use any of it in your own software.
>
> Simon.
>

I would not say "loads of bollocks".
I'm sure anyone understand that it meant "a license with no cost"...
And we all know that OSS normaly comes with some kind of license.

Anyway...

Not all applications using Rdb are using SQLMOD.

Re: Migrating from Rdb to Open Source Postgres

<ttbh94$2b71a$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26948&group=comp.os.vms#26948

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Fri, 24 Feb 2023 18:29:39 -0500
Organization: A noiseless patient Spider
Lines: 43
Message-ID: <ttbh94$2b71a$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttb990$2ad30$1@dont-email.me> <ttbdvr$2aqkj$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Fri, 24 Feb 2023 23:29:40 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="19d6b3355d5e9564ee2810399b29b5f6";
logging-data="2464810"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19KnRpNbCwBQE9+SFQp8i+SZnR4SIr7cI8="
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:xHsJbOmYqLJ/W5iUNEOJe7q2cLY=
In-Reply-To: <ttbdvr$2aqkj$1@dont-email.me>
Content-Language: en-US
 by: Arne Vajhøj - Fri, 24 Feb 2023 23:29 UTC

On 2/24/2023 5:33 PM, Jan-Erik Söderholm wrote:
> Den 2023-02-24 kl. 22:13, skrev Simon Clubley:
>> On 2023-02-24, Denys Beauchemin <denysftr@gmail.com> wrote:
>>> Over the last several years, Postgres has acquired a solid reputation
>>> as a
>>> dependable, mission-critical RDBMS.  One of its benefit is that it?s
>>> Open
>>> Source, ie, license free.  You can install it on as many servers as
>>> you want,
>>> with any number of CPUs, for any number of users, no charge.
>>
>> Well, that's a load of bollocks.
>>
>> Open Source software is not the same thing as licence-free software
>> and the vast majority of it _is_ released under a licence.
>>
>> I hope you have more respect for Open Source software elsewhere than
>> that if you use any of it in your own software.
>
> I would not say "loads of bollocks".
> I'm sure anyone understand that it meant "a license with no cost"...

I did not even notice it.

I just read "license-fee-free" instead of "license-free".

> And we all know that OSS normaly comes with some kind of license.

And PostgreSQL comes under its own license - a permissive
license similar to BSD and MIT licenses.

> Not all applications using Rdb are using SQLMOD.

Some use embedded SQL.

Some use JDBC.

Maybe there are even some that are using the SQL Services
API.

Arne

Re: Migrating from Rdb to Open Source Postgres

<ttbhin$2b71a$2@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26949&group=comp.os.vms#26949

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Fri, 24 Feb 2023 18:34:46 -0500
Organization: A noiseless patient Spider
Lines: 48
Message-ID: <ttbhin$2b71a$2@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Fri, 24 Feb 2023 23:34:47 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="19d6b3355d5e9564ee2810399b29b5f6";
logging-data="2464810"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18n488s/evxN3HAghvo8OMo32/LYi3lYLk="
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:wmUtfQWhg0lOwlerZ2yEUh8QK7A=
In-Reply-To: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
Content-Language: en-US
 by: Arne Vajhøj - Fri, 24 Feb 2023 23:34 UTC

On 2/24/2023 2:44 PM, Denys Beauchemin wrote:
> Over the last several years, Postgres has acquired a solid reputation
> as a dependable, mission-critical RDBMS. One of its benefit is that
> it’s Open Source, ie, license free. You can install it on as many
> servers as you want, with any number of CPUs, for any number of
> users, no charge.

The cost is right.

:-)

And PostgreSQL has excellent support from cloud vendors as
managed service, which matters today.

> The Postgres server runs on Linux, and the application access the
> Postgres database over the network. We used this technology to
> migrate IKEA’s store application that runs on OpenVMS on a server at
> every store around the world, to access a new Postgres server in
> every store. The application remained on OpenVMS and the Rdb service
> could be stopped, returning a bunch of cycles back to the
> application.

If PostgreSQL has been available (production ready) for VMS,
then the database could have stayed on VMS.

> This was all using Open Source Postgres and the Open Source client,
> supported by VSI, on OpenVMS. The application got a performance
> improvement, and in certain cases, a sizable improvement and best of
> all, now that the application data is in Postgres, it can be accessed
> by a multitude of tools and apps on various platforms. The
> application running on OpenVMS is no longer an island in the
> enterprise.

Rdb on VMS is very much accessible from tools and apps
on various platforms.

Oracle provide:
* ODBC driver
* JDBC driver
* ADO.NET provider
* SQL Services C API

That covers most use cases.

Arne

Re: Migrating from Rdb to Open Source Postgres

<ttcu6i$2id7o$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26952&group=comp.os.vms#26952

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: jan-erik...@telia.com (Jan-Erik Söderholm)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Sat, 25 Feb 2023 13:16:17 +0100
Organization: A noiseless patient Spider
Lines: 52
Message-ID: <ttcu6i$2id7o$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttb990$2ad30$1@dont-email.me> <ttbdvr$2aqkj$1@dont-email.me>
<ttbh94$2b71a$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 25 Feb 2023 12:16:18 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="4265d4c26e1c5bf7c0d0c7f94ef4beab";
logging-data="2700536"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+3CkKViUw5dePyV/0t6HdG"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.7.0
Cancel-Lock: sha1:46u9WZGSxhgcsZAqbhQaltRBEZI=
Content-Language: sv
In-Reply-To: <ttbh94$2b71a$1@dont-email.me>
 by: Jan-Erik Söderholm - Sat, 25 Feb 2023 12:16 UTC

Den 2023-02-25 kl. 00:29, skrev Arne Vajhøj:
> On 2/24/2023 5:33 PM, Jan-Erik Söderholm wrote:
>> Den 2023-02-24 kl. 22:13, skrev Simon Clubley:
>>> On 2023-02-24, Denys Beauchemin <denysftr@gmail.com> wrote:
>>>> Over the last several years, Postgres has acquired a solid reputation as a
>>>> dependable, mission-critical RDBMS.  One of its benefit is that it?s Open
>>>> Source, ie, license free.  You can install it on as many servers as you
>>>> want,
>>>> with any number of CPUs, for any number of users, no charge.
>>>
>>> Well, that's a load of bollocks.
>>>
>>> Open Source software is not the same thing as licence-free software
>>> and the vast majority of it _is_ released under a licence.
>>>
>>> I hope you have more respect for Open Source software elsewhere than
>>> that if you use any of it in your own software.
>>
>> I would not say "loads of bollocks".
>> I'm sure anyone understand that it meant "a license with no cost"...
>
> I did not even notice it.
>
> I just read "license-fee-free" instead of "license-free".
>
>> And we all know that OSS normaly comes with some kind of license.
>
> And PostgreSQL comes under its own license - a permissive
> license similar to BSD and MIT licenses.
>
>> Not all applications using Rdb are using SQLMOD.
>
> Some use embedded SQL.
>
> Some use JDBC.
>
> Maybe there are even some that are using the SQL Services
> API.

Any Windows application using ODBC is normally using SQL/Services.

We have a couple of VB6/ODBC applicatiuons that are now evaluated
for replacement. Will probably be a web frontend and Python backend
connected through WASD.

>
> Arne
>
>

Re: Migrating from Rdb to Open Source Postgres

<ttcuau$2id7o$2@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26953&group=comp.os.vms#26953

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: jan-erik...@telia.com (Jan-Erik Söderholm)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Sat, 25 Feb 2023 13:18:37 +0100
Organization: A noiseless patient Spider
Lines: 55
Message-ID: <ttcuau$2id7o$2@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttbhin$2b71a$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 25 Feb 2023 12:18:38 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="4265d4c26e1c5bf7c0d0c7f94ef4beab";
logging-data="2700536"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18SKfp8I+D4x+UggBasiJso"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.7.0
Cancel-Lock: sha1:aMgahwd30DtwxdL0aX8zhOd9Wlw=
In-Reply-To: <ttbhin$2b71a$2@dont-email.me>
Content-Language: sv
 by: Jan-Erik Söderholm - Sat, 25 Feb 2023 12:18 UTC

Den 2023-02-25 kl. 00:34, skrev Arne Vajhøj:
> On 2/24/2023 2:44 PM, Denys Beauchemin wrote:
>> Over the last several years, Postgres has acquired a solid reputation
>> as a dependable, mission-critical RDBMS.  One of its benefit is that
>> it’s Open Source, ie, license free.  You can install it on as many
>> servers as you want, with any number of CPUs, for any number of
>> users, no charge.
>
> The cost is right.
>
> :-)
>
> And PostgreSQL has excellent support from cloud vendors as
> managed service, which matters today.
>
>> The Postgres server runs on Linux, and the application access the
>> Postgres database over the network.  We used this technology to
>> migrate IKEA’s store application that runs on OpenVMS on a server at
>> every store around the world, to access a new Postgres server in
>> every store. The application remained on OpenVMS and the Rdb service
>> could be stopped, returning a bunch of cycles back to the
>> application.
>
> If PostgreSQL has been available (production ready) for VMS,
> then the database could have stayed on VMS.
>
>> This was all using Open Source Postgres and the Open Source client,
>> supported by VSI, on OpenVMS.  The application got a performance
>> improvement, and in certain cases, a sizable improvement and best of
>> all, now that the application data is in Postgres, it can be accessed
>> by a multitude of tools and apps on various platforms.  The
>> application running on OpenVMS is no longer an island in the
>> enterprise.
>
> Rdb on VMS is very much accessible from tools and apps
> on various platforms.
>
> Oracle provide:
> * ODBC driver
> * JDBC driver
> * ADO.NET provider
> * SQL Services C API
>

And OCI, which makes an Rdb DB to look like a Oracle DBMS DB
to the application.

> That covers most use cases.
>
> Arne
>
>
>

Re: Migrating from Rdb to Open Source Postgres

<ttd4bk$2j12a$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26954&group=comp.os.vms#26954

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Sat, 25 Feb 2023 09:01:21 -0500
Organization: A noiseless patient Spider
Lines: 33
Message-ID: <ttd4bk$2j12a$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttbhin$2b71a$2@dont-email.me> <ttcuau$2id7o$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 25 Feb 2023 14:01:24 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="19d6b3355d5e9564ee2810399b29b5f6";
logging-data="2720842"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18DSsxwWMjCxnhsvQE+AkxFbIVY3RHOvHs="
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:5f6YKDv/PtnhzPTsipBHXxk6V0U=
In-Reply-To: <ttcuau$2id7o$2@dont-email.me>
Content-Language: en-US
 by: Arne Vajhøj - Sat, 25 Feb 2023 14:01 UTC

On 2/25/2023 7:18 AM, Jan-Erik Söderholm wrote:
> Den 2023-02-25 kl. 00:34, skrev Arne Vajhøj:
>> On 2/24/2023 2:44 PM, Denys Beauchemin wrote:
>>> This was all using Open Source Postgres and the Open Source client,
>>> supported by VSI, on OpenVMS.  The application got a performance
>>> improvement, and in certain cases, a sizable improvement and best of
>>> all, now that the application data is in Postgres, it can be accessed
>>> by a multitude of tools and apps on various platforms.  The
>>> application running on OpenVMS is no longer an island in the
>>> enterprise.
>>
>> Rdb on VMS is very much accessible from tools and apps
>> on various platforms.
>>
>> Oracle provide:
>> * ODBC driver
>> * JDBC driver
>> * ADO.NET provider
>> * SQL Services C API
>
> And OCI, which makes an Rdb DB to look like a Oracle DBMS DB
> to the application.

That is another C API. I am aware of it.

But I chose to mention SQL Services over OCI, because
I can get SQL Services to work on Windows and Linux,
but not OCI. Must likely that is due to my lack of
experience with OCI, but ...

Arne

Re: Migrating from Rdb to Open Source Postgres

<ttgteq$326ng$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26972&group=comp.os.vms#26972

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: club...@remove_me.eisner.decus.org-Earth.UFP (Simon Clubley)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Mon, 27 Feb 2023 00:28:10 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 40
Message-ID: <ttgteq$326ng$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com> <ttb990$2ad30$1@dont-email.me> <ttbdvr$2aqkj$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 27 Feb 2023 00:28:10 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="0de4453b6f762603b7e242c457b54759";
logging-data="3218160"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19BTaOZ0QPtdJyqmty3Kc8FDzW8dbX0cOI="
User-Agent: slrn/0.9.8.1 (VMS/Multinet)
Cancel-Lock: sha1:mHDGMtsAAm01svGmHQFpkQkn+5s=
 by: Simon Clubley - Mon, 27 Feb 2023 00:28 UTC

On 2023-02-24, Jan-Erik Söderholm <jan-erik.soderholm@telia.com> wrote:
> Den 2023-02-24 kl. 22:13, skrev Simon Clubley:
>> On 2023-02-24, Denys Beauchemin <denysftr@gmail.com> wrote:
>>> Over the last several years, Postgres has acquired a solid reputation as a
>>> dependable, mission-critical RDBMS. One of its benefit is that it?s Open
>>> Source, ie, license free. You can install it on as many servers as you want,
>>> with any number of CPUs, for any number of users, no charge.
>>>
>>
>> Well, that's a load of bollocks.
>>
>> Open Source software is not the same thing as licence-free software
>> and the vast majority of it _is_ released under a licence.
>>
>> I hope you have more respect for Open Source software elsewhere than
>> that if you use any of it in your own software.
>>
>> Simon.
>>
>
> I would not say "loads of bollocks".

I would, Jan-Erik.

> I'm sure anyone understand that it meant "a license with no cost"...
> And we all know that OSS normaly comes with some kind of license.
>

Unfortunately, there really are some people who seem to think that when
something is Open Source, then that means they can do whatever they want
with it.

I hope the OP isn't one of them, but that's how the above comes across,
especially when you have seen people express those opinions in the past.

Simon.

--
Simon Clubley, clubley@remove_me.eisner.decus.org-Earth.UFP
Walking destinations on a map are further away than they appear.

Re: Migrating from Rdb to Open Source Postgres

<ttiil7$3a2te$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=26981&group=comp.os.vms#26981

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: jan-erik...@telia.com (Jan-Erik Söderholm)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Mon, 27 Feb 2023 16:36:07 +0100
Organization: A noiseless patient Spider
Lines: 47
Message-ID: <ttiil7$3a2te$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttb990$2ad30$1@dont-email.me> <ttbdvr$2aqkj$1@dont-email.me>
<ttgteq$326ng$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 27 Feb 2023 15:36:07 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="60fc6da36465550c9a7ffa5efafad098";
logging-data="3476398"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18h5uIkhVQYQtYBQmWpDxMu"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.7.0
Cancel-Lock: sha1:jrebhq26Qe8+nn+dvitmrS0n1Bw=
Content-Language: sv
In-Reply-To: <ttgteq$326ng$1@dont-email.me>
 by: Jan-Erik Söderholm - Mon, 27 Feb 2023 15:36 UTC

Den 2023-02-27 kl. 01:28, skrev Simon Clubley:
> On 2023-02-24, Jan-Erik Söderholm <jan-erik.soderholm@telia.com> wrote:
>> Den 2023-02-24 kl. 22:13, skrev Simon Clubley:
>>> On 2023-02-24, Denys Beauchemin <denysftr@gmail.com> wrote:
>>>> Over the last several years, Postgres has acquired a solid reputation as a
>>>> dependable, mission-critical RDBMS. One of its benefit is that it?s Open
>>>> Source, ie, license free. You can install it on as many servers as you want,
>>>> with any number of CPUs, for any number of users, no charge.
>>>>
>>>
>>> Well, that's a load of bollocks.
>>>
>>> Open Source software is not the same thing as licence-free software
>>> and the vast majority of it _is_ released under a licence.
>>>
>>> I hope you have more respect for Open Source software elsewhere than
>>> that if you use any of it in your own software.
>>>
>>> Simon.
>>>
>>
>> I would not say "loads of bollocks".
>
> I would, Jan-Erik.
>
>> I'm sure anyone understand that it meant "a license with no cost"...
>> And we all know that OSS normaly comes with some kind of license.
>>
>
> Unfortunately, there really are some people who seem to think that when
> something is Open Source, then that means they can do whatever they want
> with it.
>
> I hope the OP isn't one of them, but that's how the above comes across,...

It was quite obvious that what was meant was "with no cost".
And I think that that was how most read it.
You just read too much into it. Cool down...

> especially when you have seen people express those opinions in the past.
>
> Simon.
>

Re: Migrating from Rdb to Open Source Postgres

<f0950bb8-503f-4d5e-9e28-6477ef94dfddn@googlegroups.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27059&group=comp.os.vms#27059

  copy link   Newsgroups: comp.os.vms
X-Received: by 2002:ac8:42d2:0:b0:3bd:1838:2596 with SMTP id g18-20020ac842d2000000b003bd18382596mr2721282qtm.8.1677784306495;
Thu, 02 Mar 2023 11:11:46 -0800 (PST)
X-Received: by 2002:a05:620a:15f5:b0:71f:b908:7b7e with SMTP id
p21-20020a05620a15f500b0071fb9087b7emr2587008qkm.10.1677784306238; Thu, 02
Mar 2023 11:11:46 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!2.eu.feeder.erje.net!feeder.erje.net!fdn.fr!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.os.vms
Date: Thu, 2 Mar 2023 11:11:45 -0800 (PST)
In-Reply-To: <ttiil7$3a2te$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=4.14.125.132; posting-account=3aFZugoAAACxGhyjj853El3Vq-4LFfVO
NNTP-Posting-Host: 4.14.125.132
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttb990$2ad30$1@dont-email.me> <ttbdvr$2aqkj$1@dont-email.me>
<ttgteq$326ng$1@dont-email.me> <ttiil7$3a2te$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f0950bb8-503f-4d5e-9e28-6477ef94dfddn@googlegroups.com>
Subject: Re: Migrating from Rdb to Open Source Postgres
From: paulgavi...@gmail.com (Paul Gavin)
Injection-Date: Thu, 02 Mar 2023 19:11:46 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Paul Gavin - Thu, 2 Mar 2023 19:11 UTC

I have used PostgreSQL for some intensive work. It performs well given a good platform to run on. Cannot say anything bad about it.

However, I would be curious to know if Oracle Rdb and related products will get ported to VMS on X86.

Contract I am currently working uses Rdb and CDD. Workspaces all defined in CDD and used in the database definitions, C, DECforms and ACMS. Moving to anything is a political mess.

P

Re: Migrating from Rdb to Open Source Postgres

<ttqu0j$ac3v$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27060&group=comp.os.vms#27060

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: FIRST.L...@vmssoftware.com (Robert A. Brooks)
Newsgroups: comp.os.vms
Subject: Re: Migrating from Rdb to Open Source Postgres
Date: Thu, 2 Mar 2023 14:38:59 -0500
Organization: A noiseless patient Spider
Lines: 12
Message-ID: <ttqu0j$ac3v$1@dont-email.me>
References: <64c7b3e4-fbbc-48d5-af09-81a8473ab5fan@googlegroups.com>
<ttb990$2ad30$1@dont-email.me> <ttbdvr$2aqkj$1@dont-email.me>
<ttgteq$326ng$1@dont-email.me> <ttiil7$3a2te$1@dont-email.me>
<f0950bb8-503f-4d5e-9e28-6477ef94dfddn@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 2 Mar 2023 19:39:00 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="ab91df9b29a16c7e3109b36753f0eaf8";
logging-data="340095"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19xGfZWqJG9i9+B3vzKqBSiaSt/PU20HkXloEB2UzAwlQ=="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:Y2A/K2poIPkYtNn86ll1fl8D/PE=
X-Antivirus-Status: Clean
X-Antivirus: Avast (VPS 230227-4, 2/27/2023), Outbound message
Content-Language: en-US
In-Reply-To: <f0950bb8-503f-4d5e-9e28-6477ef94dfddn@googlegroups.com>
 by: Robert A. Brooks - Thu, 2 Mar 2023 19:38 UTC

On 3/2/2023 2:11 PM, Paul Gavin wrote:
> I have used PostgreSQL for some intensive work. It performs well
> given a good platform to run on. Cannot say anything bad about it.
>
> However, I would be curious to know if Oracle Rdb and related
> products will get ported to VMS on X86.

Ask Oracle; I work for VSI and cannot speak for Oracle.

--
-- Rob

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor