473,405 Members | 2,349 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

postgreSQL licenseing

Hi,

We are planning to use the Postgre SQL in one of our commercial products.
I am aware that PostgreSQL is distributed under BSD licence. Can someone
please answer the following questions.

1) If we just ship the PostgreSQL binaries in our product(without source
code), do we need to include the BSD licence text anywhere?

2) Does PostgreSQL software makes use of any other libraries/softwares?
If yes, what are they?

3) Are there any patents applied/granted for PostgreSQL software? If yes,
what are the patent numbers?

Thanks in advance,
Sathish

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html

Nov 22 '05 #1
8 1352
Tiptur, Sathish (MED) wrote:
1) If we just ship the PostgreSQL binaries in our product(without
source code), do we need to include the BSD licence text anywhere?
Yes. The license says "... provided that the above copyright notice and
this paragraph and the following two paragraphs appear in all copies."
Note that it doesn't say "provided that the notice is displayed in
annoying ways", but it needs to be accessible in reasonable ways.
2) Does PostgreSQL software makes use of any other
libraries/softwares? If yes, what are they?
That depends on your platform and compilation options. See the
installation instructions for what software is required and optional.
3) Are there any patents applied/granted for PostgreSQL software? If
yes, what are the patent numbers?


I don't think anyone knows the final answer to that.
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to ma*******@postgresql.org

Nov 22 '05 #2
Hello

How do I display the field(s) used to create an index,
as in
"CREATE INDEX <index name> ON <table name> (<field1>
[, <field2>...])" ?

I tried with psql with -E option and if I execute the
query independently then it is showing the index names
and a index definition like

CREATE INDEX ON..... from which I believe psql is
getting column names?

On what what criteria it is fetching the column
information...the only thing i can believe is that the
column names are within ()...Am I true?

Karam
__________________________________
Do you Yahoo!?
Get better spam protection with Yahoo! Mail.
http://antispam.yahoo.com/tools

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to ma*******@postgresql.org so that your
message can get through to the mailing list cleanly

Nov 22 '05 #3
Karam Chand <ka***********@yahoo.com> writes:
How do I display the field(s) used to create an index,


The pg_get_index_def function is the easiest way.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to ma*******@postgresql.org)

Nov 22 '05 #4
Peter Eisentraut wrote:
1) If we just ship the PostgreSQL binaries in our product(without
source code), do we need to include the BSD licence text anywhere?


Yes. The license says "... provided that the above copyright notice and
this paragraph and the following two paragraphs appear in all copies."
Note that it doesn't say "provided that the notice is displayed in
annoying ways", but it needs to be accessible in reasonable ways.


Which of the following count as "accessible in a reasonable way"?

1. in a separate text file, by itself (ala GPL's COPYING), but quite
deep within several levels of subdirectories (e.g. under bin/ or
etc/misc/license/).

2. in a binary (e.g. postgres.exe), that is, we modified the source code
slightly so that the copyright text is embedded in the final executable.
The executable is not compressed, so a "strings postgres" command could
view the copyright text.

3. in a separate program file (which is included along with postgres in
the distribution), in the Help > About menu or the splash screen, e.g.
"Portions of this program are licensed under the BSD License:
PostgreSQL, ..."

4. Only the URL to the license text is displayed, e.g.
http://www.mydomain.com/etc/license/BSD.txt.

--
dave
---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to ma*******@postgresql.org)

Nov 22 '05 #5
David Garamond wrote:
Which of the following count as "accessible in a reasonable way"?


The usual means that I have seen of making copyright licences accessible are to:
1) List all copyright clauses in the manual, under a single chapter. This is effectively an inventory of the licenced works used in the product.

2) List all copyright clauses in a file such as "licences.txt", which is also an inventory of licenced works used in the product.

3) Display all copyright clauses in the log file of a daemon.

4) Display the copyright clauses in the scrolling portion of a splash screen (ick!) or in the Help->About screen of a GUI
Having the licence hidden somewhere - eg as unused strings in a binary - doesn't seem to me to be "accessible in a reasonable way". Would you feel it was reasonable for a vendor to publish the instruction manual in this way?

Just by two bits worth
Alex Satrapa
---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html

Nov 22 '05 #6
Hello

I googled on "pg_get_index_def" and it returned 0
pages.

Where can I get more information on the function...and
in general docs on similar functions.

Karam

--- Tom Lane <tg*@sss.pgh.pa.us> wrote:
Karam Chand <ka***********@yahoo.com> writes:
How do I display the field(s) used to create an

index,

The pg_get_index_def function is the easiest way.

regards, tom lane

__________________________________
Do you Yahoo!?
Get better spam protection with Yahoo! Mail.
http://antispam.yahoo.com/tools

---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

Nov 22 '05 #7
Sorry...

the function is pg_get_indexdef and i found the docs
for it.

Thanks .

Karam

--- Tom Lane <tg*@sss.pgh.pa.us> wrote:
Karam Chand <ka***********@yahoo.com> writes:
How do I display the field(s) used to create an

index,

The pg_get_index_def function is the easiest way.

regards, tom lane

__________________________________
Do you Yahoo!?
Get better spam protection with Yahoo! Mail.
http://antispam.yahoo.com/tools

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Nov 22 '05 #8
David Garamond wrote:
Peter Eisentraut wrote:
1) If we just ship the PostgreSQL binaries in our product(without
source code), do we need to include the BSD licence text anywhere?
Yes. The license says "... provided that the above copyright notice
and this paragraph and the following two paragraphs appear in all
copies." Note that it doesn't say "provided that the notice is
displayed in annoying ways", but it needs to be accessible in
reasonable ways.


Which of the following count as "accessible in a reasonable way"?


I am NOT a lawyer.

However, I'm a big fan of BSD-style licenses, so here's my opinion on
what's good and what's not:
1. in a separate text file, by itself (ala GPL's COPYING), but quite
deep within several levels of subdirectories (e.g. under bin/ or
etc/misc/license/).
This (legally) is acceptable, I would think. But it defeats the _spirit_
of the license, which is to give credit back to the original developers.
I would consider doing this a cop-out to avoid legal problems without
_really_ following the intent of the license.
2. in a binary (e.g. postgres.exe), that is, we modified the source code
slightly so that the copyright text is embedded in the final executable.
The executable is not compressed, so a "strings postgres" command could
view the copyright text.
Same opinion as #1.
3. in a separate program file (which is included along with postgres in
the distribution), in the Help > About menu or the splash screen, e.g.
"Portions of this program are licensed under the BSD License:
PostgreSQL, ..."
I think this is more along the lines of what the license was intended for.
In the case of a non-graphical program, you could have a switch
(program --license) which produces the text.
4. Only the URL to the license text is displayed, e.g.
http://www.mydomain.com/etc/license/BSD.txt.


This isn't bad either.

I think the point is that people get to know where the software came from
without having to become Sherlock Holmes. 3 & 4 handle this pretty well.
I don't think the license was ever intended to overburdon you by forcing your
splash screen or home page to display credit. Legally, it would seem to
me that all 4 are OK.

But, of course, all of these are my opinion. If you're worried about legal
issues, you should consult a REAL lawyer.

--
Bill Moran
Potential Technologies
http://www.potentialtech.com
---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to ma*******@postgresql.org so that your
message can get through to the mailing list cleanly

Nov 22 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Otis Green | last post by:
Vote for or against a new newsgroup proposal. To summarize what you need to do, just send an empty e-mail to postgresql-ballot@netagw.com You will receive a ballot by e-mail. Follow the...
1
by: Mateusz [PEYN] Adamus | last post by:
Hi I'm a developer currently wondering which DB choose for my next project. I looked on the net found ofcourse Oracle but also came up with PostgreSQL. I heard quite few things about it, all...
0
by: Bill J. | last post by:
I have to update a PostgreSQL linked server through MSSQL2K. I first configured the connection with ODBC as follows and I can do queries with no problem: EXEC sp_droplinkedsrvlogin @rmtsrvname...
0
by: Bill J. | last post by:
I have to update a PostgreSQL linked server through MSSQL2K. I first configured the connection with ODBC as follows and I can do queries with no problem: EXEC sp_droplinkedsrvlogin @rmtsrvname...
33
by: Joshua D. Drake | last post by:
Hello, I think the below just about says it all: http://www.commandprompt.com/images/mammoth_versus_dolphin_500.jpg Sincerely, Joshua Drake
0
by: ruhunu Gamarala | last post by:
Hi, I get the following exception periodically. does anybody what is the reason for it to throw this exception? I really appriciate if anyone can help me on this. thanks, Chinthaka at...
0
by: greg | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This is a PGP-signed copy of the checksums for PostgreSQL version 7.4. The latest copy of the checksums for this and other versions, as well...
1
by: phil campaigne | last post by:
On Mon, 1 Mar 2004, phil campaigne wrote: >> Nigel J. Andrews wrote: >> > > >>> >On Mon, 1 Mar 2004, Phil Campaigne wrote: >>> > >>> >
0
by: Greg Sabino Mullane | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This is a PGP-signed copy of the checksums for following PostgreSQL versions: 7.4.5 7.4.4 7.3.7
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.