![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
hi is there any dbms (relational) which is available for free & for windows/linux. my other constraints is that the dbms should support sql-99 & it should fit on 1 cd. i know about oracle 9i windows personal edition but it takes 3 cds. how about mysqlplus, db2 & sql server (these are the names i know). are they available for free download ? if yes, tell me their url. do you know of any relational dbms from other good companies like oracle, ibm, microsoft. how's sybase ? thx |
#3
| |||
| |||
|
|
hi is there any dbms (relational) which is available for free & for windows/linux. my other constraints is that the dbms should support sql-99 & it should fit on 1 cd. i know about oracle 9i windows personal edition but it takes 3 cds. how about mysqlplus, db2 & sql server (these are the names i know). are they available for free download ? if yes, tell me their url. do you know of any relational dbms from other good companies like oracle, ibm, microsoft. how's sybase ? thx I have a list at <http://database.profectus.com.au/> but I don't know |
#4
| |||
| |||
|
|
hi is there any dbms (relational) which is available for free & for windows/linux. my other constraints is that the dbms should support sql-99 & it should fit on 1 cd. i know about oracle 9i windows personal edition but it takes 3 cds. how about mysqlplus, db2 & sql server (these are the names i know). are they available for free download ? if yes, tell me their url. do you know of any relational dbms from other good companies like oracle, ibm, microsoft. how's sybase ? thx |
#5
| |||
| |||
|
|
On 27.05.2007 13:33 punit arya wrote: hi is there any dbms (relational) which is available for free & for windows/linux. my other constraints is that the dbms should support sql-99 & it should fit on 1 cd. i know about oracle 9i windows personal edition but it takes 3 cds. how about mysqlplus, db2 & sql server (these are the names i know). are they available for free download ? if yes, tell me their url. do you know of any relational dbms from other good companies like oracle, ibm, microsoft. how's sybase ? thx PostgreSQL,http://www.postgresql.orgfits easily on a CD (16MB download) and can very well compete with Oracle and all the others. I don't know though, how complete the SQL-99 implementation is. But between the open source DBMS my experience was, that Postgres was always closest to the standard. Thomas |
#6
| |||
| |||
|
|
punit arya <arya.pu... (AT) gmail (DOT) com> wrote: hi is there any dbms (relational) which is available for free & for windows/linux. my other constraints is that the dbms should support sql-99 & it should fit on 1 cd. i know about oracle 9i windows personal edition but it takes 3 cds. how about mysqlplus, db2 & sql server (these are the names i know). are they available for free download ? if yes, tell me their url. do you know of any relational dbms from other good companies like oracle, ibm, microsoft. how's sybase ? thx I have a list at <http://database.profectus.com.au/> but I don't know the download sizes. The list is of free and freely distributable databases (plus some open source Java DBs which are probably not relevant here). If the database is for personal use then you can count yourself as a developer and use the enterprise versions of DB2 or Oracle at no charge. |
#7
| ||||
| ||||
|
|
I downloaded postgresql. the zipped installer was small enough & I installed that on my windows xp partition. It's working fine. some of my grudges: the window in which we type & execute sql queries runs from dos. I expected an independent window. |
|
I expected an independent window What do you mean with that? All DBMS have a basic commandline (console) |
|
not enough documentation on installation & post installation configuration. that was a lot of bother & tough too (it took me two nights in a row to configure it satisfactorily). |
|
PS: I'm hooked to firebird v2. Its really nice & comes with adequate documentation. The documentation for Postgres is far superior to Firebird's. For |
#8
| |||
| |||
|
|
not enough documentation on installation & post installation configuration. that was a lot of bother & tough too (it took me two nights in a row to configure it satisfactorily). |
#9
| |||
| |||
|
|
On 29.05.2007 10:11 punit arya wrote: I downloaded postgresql. the zipped installer was small enough & I installed that on my windows xp partition. It's working fine. some of my grudges: the window in which we type & execute sql queries runs from dos. I expected an independent window. First: it does *not* run from "DOS". DOS is an ancient operating system and is no longer supported nor will any of the Postgres tools run "from dos". Those are full blown win32 (console) applications) I expected an independent window What do you mean with that? All DBMS have a basic commandline (console) SQL tool which can be used for batch processing and other tasks). In Firebird it is called isql.exe and in Postgres it is called psql.exe If you are looking for a graphical administration tool try PGAdmin III (seehttp://www.postgresql.org/download/) not enough documentation on installation & post installation configuration. that was a lot of bother & tough too (it took me two nights in a row to configure it satisfactorily). Did you check outhttp://www.postgresql.org/docs/8.2/static/index.htmlhttp://www.postgresql.org/docs/faqs.FAQ_windows.htmlhttp://pgfoundry.org/projects/pginstaller And then there is additional information here:http://www.postgresql.org/docs/techdocs PS: I'm hooked to firebird v2. Its really nice & comes with adequate documentation. The documentation for Postgres is far superior to Firebird's. For Firebird you need to collect PDFs from various sources and there is no single document describing the current SQL syntax completely. If you try to find the syntax for something that you don't know when it was added, you first need to read the old Interbase docs, then the release notes for 1.0, then for 1.0.2, then for 1.0.3 then for 1.5, then for 1.5.1, then for 1.5.2, then for 1.5.3, thenfor 1.5.4 and the the release notes for 2.0. Not something I'd call "adequate". With postgres you have the complete description in one document for each release. But I agree Firebird is a nice DBMS (if it wasn't for the documentation). I do find it strange though that you can only change user passwords with a commandline tool running on the server, you cannot change a user password from a client machine and only the first 8 character of a password are checked. Thomas |
#10
| |||
| |||
|
|
On 29.05.2007 10:11 punit arya wrote: not enough documentation on installation & post installation configuration. that was a lot of bother & tough too (it took me two nights in a row to configure it satisfactorily). Btw: Postgres has an excellent mailing list which is mirrored on a newsgroup server, so you can read it with your favorite newsreader Check outhttp://www.postgresql.org/community/lists/ I wouldn't want to go that deep, Thomas. Though I'll check it out |
|
In adddition to the news server mentioned there, the lists are also available on news.gmane.org with a kind of "automatic" registration. The first time you post to a list on gmane.org you will receive a confirmation message, once you reply to that message you can post to that list without further ado. Seems like _you_ are really hooked to postgresql. do you work on |
|
Thomas |
![]() |
| Thread Tools | |
| Display Modes | |
| |